diff --git a/Taskfile.yaml b/Taskfile.yaml index 6ae12c51821128e991997e9ae69533d5c226d501..7bc3537fb8d71de8fe7d3cbe6f7d0136c7b2b516 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -24,7 +24,7 @@ tasks: test: desc: Run tests for all packages cmds: - - go test ./... -count=1 {{.CLI_ARGS}} + - go test ./... -count=1 -timeout=30m {{.CLI_ARGS}} release: desc: Create and push a new tag following semver vars: diff --git a/providers/bedrock/README.md b/providers/bedrock/README.md index a24cf245dde54392757a61d4014b413cc90c8c8f..69e1fdc897fe3b641c76aed58c59348264674355 100644 --- a/providers/bedrock/README.md +++ b/providers/bedrock/README.md @@ -1,7 +1,7 @@ # Bedrock - Install the AWS CLI -- Log in in `aws configure` +- Log in with `aws login` To see available models, run: diff --git a/providertests/.env.sample b/providertests/.env.sample index af90c7f05041b38a373f3139c3ea75a6b16dec30..a8587fb7161fc81bc5aff66fc14c96e2a01c13bd 100644 --- a/providertests/.env.sample +++ b/providertests/.env.sample @@ -7,6 +7,7 @@ FANTASY_GROQ_API_KEY= FANTASY_HUGGINGFACE_API_KEY= FANTASY_OPENAI_API_KEY= FANTASY_OPENROUTER_API_KEY= +FANTASY_VERCEL_API_KEY= FANTASY_VERTEX_LOCATION=us-east5 FANTASY_VERTEX_PROJECT=fantasy-playground-472418 FANTASY_XAI_API_KEY= diff --git a/providertests/bedrock_test.go b/providertests/bedrock_test.go index da591ade1a9b9e17317d261490b5bb0e108a04d5..382201ea0d06eed9e7dcc76a05c94c120b9081fe 100644 --- a/providertests/bedrock_test.go +++ b/providertests/bedrock_test.go @@ -12,9 +12,9 @@ import ( func TestBedrockCommon(t *testing.T) { testCommon(t, []builderPair{ - {"bedrock-anthropic-claude-3-sonnet", builderBedrockClaude3Sonnet, nil, nil}, - {"bedrock-anthropic-claude-3-opus", builderBedrockClaude3Opus, nil, nil}, - {"bedrock-anthropic-claude-3-haiku", builderBedrockClaude3Haiku, nil, nil}, + {"bedrock-anthropic-claude-sonnet-4-5", builderBedrockClaudeSonnet, nil, nil}, + {"bedrock-anthropic-claude-opus-4-6", builderBedrockClaudeOpus, nil, nil}, + {"bedrock-anthropic-claude-haiku-4-5", builderBedrockClaudeHaiku, nil, nil}, }) } @@ -22,7 +22,7 @@ func TestBedrockBasicAuth(t *testing.T) { testSimple(t, builderPair{"bedrock-anthropic-claude-3-sonnet", buildersBedrockBasicAuth, nil, nil}) } -func builderBedrockClaude3Sonnet(t *testing.T, r *vcr.Recorder) (fantasy.LanguageModel, error) { +func builderBedrockClaudeSonnet(t *testing.T, r *vcr.Recorder) (fantasy.LanguageModel, error) { provider, err := bedrock.New( bedrock.WithHTTPClient(&http.Client{Transport: r}), bedrock.WithSkipAuth(!r.IsRecording()), @@ -30,10 +30,10 @@ func builderBedrockClaude3Sonnet(t *testing.T, r *vcr.Recorder) (fantasy.Languag if err != nil { return nil, err } - return provider.LanguageModel(t.Context(), "anthropic.claude-3-sonnet-20240229-v1:0") + return provider.LanguageModel(t.Context(), "anthropic.claude-sonnet-4-5-20250929-v1:0") } -func builderBedrockClaude3Opus(t *testing.T, r *vcr.Recorder) (fantasy.LanguageModel, error) { +func builderBedrockClaudeOpus(t *testing.T, r *vcr.Recorder) (fantasy.LanguageModel, error) { provider, err := bedrock.New( bedrock.WithHTTPClient(&http.Client{Transport: r}), bedrock.WithSkipAuth(!r.IsRecording()), @@ -41,10 +41,10 @@ func builderBedrockClaude3Opus(t *testing.T, r *vcr.Recorder) (fantasy.LanguageM if err != nil { return nil, err } - return provider.LanguageModel(t.Context(), "anthropic.claude-3-opus-20240229-v1:0") + return provider.LanguageModel(t.Context(), "anthropic.claude-opus-4-6-v1") } -func builderBedrockClaude3Haiku(t *testing.T, r *vcr.Recorder) (fantasy.LanguageModel, error) { +func builderBedrockClaudeHaiku(t *testing.T, r *vcr.Recorder) (fantasy.LanguageModel, error) { provider, err := bedrock.New( bedrock.WithHTTPClient(&http.Client{Transport: r}), bedrock.WithSkipAuth(!r.IsRecording()), @@ -52,7 +52,7 @@ func builderBedrockClaude3Haiku(t *testing.T, r *vcr.Recorder) (fantasy.Language if err != nil { return nil, err } - return provider.LanguageModel(t.Context(), "anthropic.claude-3-haiku-20240307-v1:0") + return provider.LanguageModel(t.Context(), "anthropic.claude-haiku-4-5-20251001-v1:0") } func buildersBedrockBasicAuth(t *testing.T, r *vcr.Recorder) (fantasy.LanguageModel, error) { @@ -64,5 +64,5 @@ func buildersBedrockBasicAuth(t *testing.T, r *vcr.Recorder) (fantasy.LanguageMo if err != nil { return nil, err } - return provider.LanguageModel(t.Context(), "anthropic.claude-3-sonnet-20240229-v1:0") + return provider.LanguageModel(t.Context(), "anthropic.claude-haiku-4-5-20251001-v1:0") } diff --git a/providertests/openaicompat_test.go b/providertests/openaicompat_test.go index c19891345cb26b8d7ec7b762d41e151b41aefa29..d955fc9f7d6f16ddff0fab6e0ffee17565e452e2 100644 --- a/providertests/openaicompat_test.go +++ b/providertests/openaicompat_test.go @@ -17,8 +17,8 @@ func TestOpenAICompatibleCommon(t *testing.T) { {"xai-grok-4-fast", builderXAIGrok4Fast, nil, nil}, {"xai-grok-code-fast", builderXAIGrokCodeFast, nil, nil}, {"groq-kimi-k2", builderGroq, nil, nil}, - {"zai-glm-4.5", builderZAIGLM45, nil, nil}, - {"huggingface-qwen3-coder", builderHuggingFace, nil, nil}, + {"zai-glm-4-7-flash", builderZAIGLM47Flash, nil, nil}, + {"huggingface-kimi-k2", builderHuggingFace, nil, nil}, {"llama-cpp-gpt-oss", builderLlamaCppGptOss, nil, nil}, }) } @@ -27,7 +27,7 @@ func TestOpenAICompatObjectGeneration(t *testing.T) { testObjectGeneration(t, []builderPair{ {"xai-grok-4-fast", builderXAIGrok4Fast, nil, nil}, {"xai-grok-code-fast", builderXAIGrokCodeFast, nil, nil}, - {"zai-glm-4.5", builderZAIGLM45, nil, nil}, + {"zai-glm-4-7-flash", builderZAIGLM47Flash, nil, nil}, }) } @@ -39,7 +39,7 @@ func TestOpenAICompatibleThinking(t *testing.T) { } testThinking(t, []builderPair{ {"xai-grok-3-mini", builderXAIGrok3Mini, opts, nil}, - {"zai-glm-4.5", builderZAIGLM45, opts, nil}, + {"zai-glm-4-7-flash", builderZAIGLM47Flash, opts, nil}, {"llama-cpp-gpt-oss", builderLlamaCppGptOss, opts, nil}, }, testOpenAICompatThinking) } @@ -94,7 +94,7 @@ func builderXAIGrok3Mini(t *testing.T, r *vcr.Recorder) (fantasy.LanguageModel, return provider.LanguageModel(t.Context(), "grok-3-mini") } -func builderZAIGLM45(t *testing.T, r *vcr.Recorder) (fantasy.LanguageModel, error) { +func builderZAIGLM47Flash(t *testing.T, r *vcr.Recorder) (fantasy.LanguageModel, error) { provider, err := openaicompat.New( openaicompat.WithBaseURL("https://api.z.ai/api/coding/paas/v4"), openaicompat.WithAPIKey(os.Getenv("FANTASY_ZAI_API_KEY")), @@ -103,7 +103,7 @@ func builderZAIGLM45(t *testing.T, r *vcr.Recorder) (fantasy.LanguageModel, erro if err != nil { return nil, err } - return provider.LanguageModel(t.Context(), "glm-4.5") + return provider.LanguageModel(t.Context(), "glm-4.7-flash") } func builderGroq(t *testing.T, r *vcr.Recorder) (fantasy.LanguageModel, error) { @@ -127,7 +127,7 @@ func builderHuggingFace(t *testing.T, r *vcr.Recorder) (fantasy.LanguageModel, e if err != nil { return nil, err } - return provider.LanguageModel(t.Context(), "zai-org/GLM-4.6:cerebras") + return provider.LanguageModel(t.Context(), "moonshotai/Kimi-K2-Instruct-0905:groq") } func builderLlamaCppGptOss(t *testing.T, r *vcr.Recorder) (fantasy.LanguageModel, error) { diff --git a/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/multi_tool.yaml b/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/multi_tool.yaml index d940adab23dcd13f98565d8d96b5264cdf2c25e9..70ab479cbaf76b6fbf6fa584cc8ad29a353ae4d9 100644 --- a/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/multi_tool.yaml +++ b/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/multi_tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.10.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -24,13 +24,13 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"msg_012C9wnj2t5QUQ9h5kZsQYbY","type":"message","role":"assistant","model":"claude-sonnet-4-20250514","content":[{"type":"text","text":"I''ll add and multiply the numbers 2 and 3 for you."},{"type":"tool_use","id":"toolu_01RZ48N8E3iuoHP5TqX57bHP","name":"add","input":{"a":2,"b":3}},{"type":"tool_use","id":"toolu_01FLTgP8FxddWfSCSNsD3cpM","name":"multiply","input":{"a":2,"b":3}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":507,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":137,"service_tier":"standard"}}' + body: '{"model":"claude-sonnet-4-20250514","id":"msg_01SKkVkB84yWcweNDwx31xBd","type":"message","role":"assistant","content":[{"type":"text","text":"I''ll add and multiply the numbers 2 and 3 for you."},{"type":"tool_use","id":"toolu_01StBeRxDEwsqcc3arbDgpS9","name":"add","input":{"a":2,"b":3},"caller":{"type":"direct"}},{"type":"tool_use","id":"toolu_01AC6WQhj2iRkdYHgTAGMpVQ","name":"multiply","input":{"a":2,"b":3},"caller":{"type":"direct"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":507,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":137,"service_tier":"standard","inference_geo":"not_available"}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.215481584s + duration: 2.397934s - id: 1 request: proto: HTTP/1.1 @@ -38,14 +38,14 @@ interactions: proto_minor: 1 content_length: 1361 host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Add and multiply the number 2 and 3","type":"text"}],"role":"user"},{"content":[{"text":"I''ll add and multiply the numbers 2 and 3 for you.","type":"text"},{"id":"toolu_01RZ48N8E3iuoHP5TqX57bHP","input":{"a":2,"b":3},"name":"add","type":"tool_use"},{"id":"toolu_01FLTgP8FxddWfSCSNsD3cpM","input":{"a":2,"b":3},"name":"multiply","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01RZ48N8E3iuoHP5TqX57bHP","content":[{"text":"5","type":"text"}],"type":"tool_result"},{"tool_use_id":"toolu_01FLTgP8FxddWfSCSNsD3cpM","content":[{"text":"6","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS.","type":"text"}],"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers"},{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers"}]}' + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Add and multiply the number 2 and 3","type":"text"}],"role":"user"},{"content":[{"text":"I''ll add and multiply the numbers 2 and 3 for you.","type":"text"},{"id":"toolu_01StBeRxDEwsqcc3arbDgpS9","input":{"a":2,"b":3},"name":"add","type":"tool_use"},{"id":"toolu_01AC6WQhj2iRkdYHgTAGMpVQ","input":{"a":2,"b":3},"name":"multiply","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01StBeRxDEwsqcc3arbDgpS9","content":[{"text":"5","type":"text"}],"type":"tool_result"},{"tool_use_id":"toolu_01AC6WQhj2iRkdYHgTAGMpVQ","content":[{"text":"6","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS.","type":"text"}],"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers"},{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - Anthropic/Go 1.10.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"msg_01GXK2MWdJ8vNAhV63dyxdSV","type":"message","role":"assistant","model":"claude-sonnet-4-20250514","content":[{"type":"text","text":"The results are:\n- 2 + 3 = 5\n- 2 × 3 = 6"}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":705,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":31,"service_tier":"standard"}}' + body: '{"model":"claude-sonnet-4-20250514","id":"msg_01M4yocU9cfPhGbLv7iwpG2g","type":"message","role":"assistant","content":[{"type":"text","text":"The results are:\n- 2 + 3 = 5\n- 2 × 3 = 6"}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":705,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":31,"service_tier":"standard","inference_geo":"not_available"}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.172643959s + duration: 1.611896291s diff --git a/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/multi_tool_streaming.yaml b/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/multi_tool_streaming.yaml index 20dd844338e0713958fefc63e84aba9a56aba24c..a3728bb2821f53bd2bcd2efac034e92ebc0f53ad 100644 --- a/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/multi_tool_streaming.yaml +++ b/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/multi_tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.10.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -23,76 +23,80 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 + uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"id":"msg_01Sp6xSRhhVGg9eCXwHHDK4H","type":"message","role":"assistant","model":"claude-sonnet-4-20250514","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":502,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":4,"service_tier":"standard"}} } + data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01PSvJdjd5keNSD63VHjYzex","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":502,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":4,"service_tier":"standard","inference_geo":"not_available"}}} event: content_block_start - data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + + event: ping + data: {"type": "ping"} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"I'll add an"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"I'll add and"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"d multiply the numbers 2 and 3 for"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" multiply the numbers"} } - event: ping - data: {"type": "ping"} + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" 2 and 3 for"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" you."} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" you."} } event: content_block_stop - data: {"type":"content_block_stop","index":0 } + 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_01GrN36ErVgy85ECZ6pbzBL4","name":"add","input":{}} } + data: {"type":"content_block_start","index":1,"content_block":{"type":"tool_use","id":"toolu_01UYxUYC2zRPY8wiutnF48eP","name":"add","input":{},"caller":{"type":"direct"}} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":""} } + 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":"{\"a\": "} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"{\"a\": 2"}} event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"2"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":", \"b\""} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":", \"b\": 3}"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":": 3}"}} event: content_block_stop - data: {"type":"content_block_stop","index":1 } + data: {"type":"content_block_stop","index":1} event: content_block_start - data: {"type":"content_block_start","index":2,"content_block":{"type":"tool_use","id":"toolu_0113xQa4VtccyoXcHaukkzom","name":"multiply","input":{}}} + data: {"type":"content_block_start","index":2,"content_block":{"type":"tool_use","id":"toolu_01VaRx1jpWCvPhi7L4kywAcd","name":"multiply","input":{},"caller":{"type":"direct"}} } event: content_block_delta data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":""} } event: content_block_delta - data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":"{\"a\": 2"} } + data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":"{\"a\": 2"} } event: content_block_delta - data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":", \"b\":"} } + data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":", \"b\":"}} event: content_block_delta - data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":" 3}"} } + data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":" 3}"} } event: content_block_stop - data: {"type":"content_block_stop","index":2 } + data: {"type":"content_block_stop","index":2 } event: message_delta - data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"input_tokens":502,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":137} } + data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"input_tokens":502,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":137} } event: message_stop - data: {"type":"message_stop" } + data: {"type":"message_stop" } headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 1.85757275s + duration: 1.1473735s - id: 1 request: proto: HTTP/1.1 @@ -100,14 +104,14 @@ interactions: proto_minor: 1 content_length: 1358 host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Add and multiply the number 2 and 3","type":"text"}],"role":"user"},{"content":[{"text":"I''ll add and multiply the numbers 2 and 3 for you.","type":"text"},{"id":"toolu_01GrN36ErVgy85ECZ6pbzBL4","input":{"a":2,"b":3},"name":"add","type":"tool_use"},{"id":"toolu_0113xQa4VtccyoXcHaukkzom","input":{"a":2,"b":3},"name":"multiply","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01GrN36ErVgy85ECZ6pbzBL4","content":[{"text":"5","type":"text"}],"type":"tool_result"},{"tool_use_id":"toolu_0113xQa4VtccyoXcHaukkzom","content":[{"text":"6","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant. Always use both add and multiply at the same time.","type":"text"}],"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers"},{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers"}],"stream":true}' + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Add and multiply the number 2 and 3","type":"text"}],"role":"user"},{"content":[{"text":"I''ll add and multiply the numbers 2 and 3 for you.","type":"text"},{"id":"toolu_01UYxUYC2zRPY8wiutnF48eP","input":{"a":2,"b":3},"name":"add","type":"tool_use"},{"id":"toolu_01VaRx1jpWCvPhi7L4kywAcd","input":{"a":2,"b":3},"name":"multiply","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01UYxUYC2zRPY8wiutnF48eP","content":[{"text":"5","type":"text"}],"type":"tool_result"},{"tool_use_id":"toolu_01VaRx1jpWCvPhi7L4kywAcd","content":[{"text":"6","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant. Always use both add and multiply at the same time.","type":"text"}],"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers"},{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - Anthropic/Go 1.10.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -115,37 +119,47 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 + uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"id":"msg_015VFFpA2pw4T7BRXd2sXMNL","type":"message","role":"assistant","model":"claude-sonnet-4-20250514","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":700,"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"}} } + data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_015WPQbJC4ysDAi7LuCD43Fp","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":700,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":1,"service_tier":"standard","inference_geo":"not_available"}} } event: content_block_start - data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""}} + data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + + event: ping + data: {"type": "ping"} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"The results"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"The"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" are:\n- 2 + 3 = "} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" results"} } - event: ping - data: {"type": "ping"} + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" are:\n- "} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"2 + 3 = "} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"5\n- 2 × "} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"5\n- 2 × 3 = 6"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"3 = 6"} } 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":700,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":31} } + data: {"type":"message_delta","delta":{"stop_reason":"end_turn","stop_sequence":null},"usage":{"input_tokens":700,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":31} } event: message_stop - data: {"type":"message_stop" } + data: {"type":"message_stop" } headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 1.874751333s + duration: 1.157220125s diff --git a/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/simple.yaml b/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/simple.yaml index 8ae67fab7faf7e3e57e303bad8070c837790a673..02bab8ef7c3712769a5cda4efb789902e57329a6 100644 --- a/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/simple.yaml +++ b/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.10.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"msg_01P9AGfyVhqwFEY82kTBEeip","type":"message","role":"assistant","model":"claude-sonnet-4-20250514","content":[{"type":"text","text":"Olá! (Oh-LAH)\n\nThis is the most common way to say \"hi\" in Portuguese. You could also use \"Oi!\" (OY) which is a bit more casual and friendly."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":50,"service_tier":"standard"}}' + body: '{"model":"claude-sonnet-4-20250514","id":"msg_01KrnBffuzxt8ttHq7iiZe7n","type":"message","role":"assistant","content":[{"type":"text","text":"Olá! \n\n(That''s \"hello\" in Portuguese. You could also say \"Oi!\" for a more casual \"hi!\")"}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":34,"service_tier":"standard","inference_geo":"not_available"}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 3.286588541s + duration: 1.968063083s diff --git a/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/simple_streaming.yaml b/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/simple_streaming.yaml index c22a1785d593c41c8ba05b1cec90915c55d4ef74..3c8b8f291c2913219dc72508cd8792c5bdd46b70 100644 --- a/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/simple_streaming.yaml +++ b/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.10.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -23,46 +23,65 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 + uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"id":"msg_01LA3hHsa4pzM8hT7PTXtJGz","type":"message","role":"assistant","model":"claude-sonnet-4-20250514","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":4,"service_tier":"standard"}} } + data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01R8GdyyLQUhUfyjqSCMbnWg","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":5,"service_tier":"standard","inference_geo":"not_available"}} } event: content_block_start - data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + + event: ping + data: {"type": "ping"} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"Olá!"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"Olá! ("} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"\n\n(This is the most common way to say \"hi"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"That"} } - event: ping - data: {"type": "ping"} + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"'s \"hi"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"\" in Portuguese)"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"\n\nYou"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" could"}} + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" also"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" say \""} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"\" in Portuguese. You"}} + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"Oi!\" which"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" could also say \"Oi!\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" is a"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" for a more casual"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" more"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" greeting.)"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" casual way to say hi in Portuguese."} } event: content_block_stop - data: {"type":"content_block_stop","index":0 } + 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":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":38} } + data: {"type":"message_delta","delta":{"stop_reason":"end_turn","stop_sequence":null},"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":38} } event: message_stop - data: {"type":"message_stop" } + data: {"type":"message_stop" } headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 1.544292291s + duration: 2.095870458s diff --git a/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/tool.yaml b/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/tool.yaml index a66e33ee3298a5edeb3a7ecbafcabdbd59f75411..2e52f9299d64176b42b010a427612ac3eb4b5717 100644 --- a/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/tool.yaml +++ b/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.10.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -24,28 +24,28 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"msg_015hRye3hWyU1hyU9Vsbzept","type":"message","role":"assistant","model":"claude-sonnet-4-20250514","content":[{"type":"text","text":"I''ll check the weather in Florence, Italy for you."},{"type":"tool_use","id":"toolu_01Dx5rwFL7pCC3c11qUZiSFH","name":"weather","input":{"location":"Florence, Italy"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":66,"service_tier":"standard"}}' + body: '{"model":"claude-sonnet-4-20250514","id":"msg_01Pgx1ep9weiiD4acPmkJCeK","type":"message","role":"assistant","content":[{"type":"text","text":"I''ll check the weather in Florence, Italy for you."},{"type":"tool_use","id":"toolu_01XLb9pzgfLa2EMyqWot6Ezt","name":"weather","input":{"location":"Florence,Italy"},"caller":{"type":"direct"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":66,"service_tier":"standard","inference_geo":"not_available"}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.2413465s + duration: 1.597310625s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 859 + content_length: 858 host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"text":"I''ll check the weather in Florence, Italy for you.","type":"text"},{"id":"toolu_01Dx5rwFL7pCC3c11qUZiSFH","input":{"location":"Florence, Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01Dx5rwFL7pCC3c11qUZiSFH","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"}],"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"}]}' + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"text":"I''ll check the weather in Florence, Italy for you.","type":"text"},{"id":"toolu_01XLb9pzgfLa2EMyqWot6Ezt","input":{"location":"Florence,Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01XLb9pzgfLa2EMyqWot6Ezt","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"}],"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - Anthropic/Go 1.10.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"msg_01DvxRTrWQwennnPVCKYDpVg","type":"message","role":"assistant","model":"claude-sonnet-4-20250514","content":[{"type":"text","text":"The current weather in Florence, Italy is 40°C (104°F). That''s quite hot! It''s a very warm day in Florence."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":475,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":34,"service_tier":"standard"}}' + body: '{"model":"claude-sonnet-4-20250514","id":"msg_01Eo6XiNE3nm8rTR4yBWaEAg","type":"message","role":"assistant","content":[{"type":"text","text":"The current weather in Florence, Italy is 40°C (104°F). That''s quite hot! It would be a good idea to stay hydrated and seek shade or air conditioning if you''re planning to be outdoors."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":475,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":50,"service_tier":"standard","inference_geo":"not_available"}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.441049125s + duration: 2.281758875s diff --git a/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/tool_streaming.yaml b/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/tool_streaming.yaml index 049cb9c21b5482ef1be6bfa7f72ff77d2fd16dc6..4805efe0d7f81b1a31cda4bb9b46e5a39aaf1047 100644 --- a/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/tool_streaming.yaml +++ b/providertests/testdata/TestAnthropicCommon/claude-sonnet-4/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.10.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -23,82 +23,77 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 + uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"id":"msg_01YNtSKCnRnNJoaUmmcZVnsF","type":"message","role":"assistant","model":"claude-sonnet-4-20250514","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":8,"service_tier":"standard"}}} + data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01Kgk6kMJLdJJC26r3uFwpRU","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":394,"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","inference_geo":"not_available"}} } event: content_block_start - data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + 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":"I'll check the weather in Florence,"} } + event: ping + data: {"type": "ping"} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" Italy for you."} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"I'll get the weather information"} } - event: ping - data: {"type": "ping"} + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" for Florence, Italy for you."} } event: content_block_stop data: {"type":"content_block_stop","index":0 } - event: ping - data: {"type": "ping"} - event: content_block_start - data: {"type":"content_block_start","index":1,"content_block":{"type":"tool_use","id":"toolu_01TQLWhUiZa4j3esJhrzHpRV","name":"weather","input":{}} } - - event: ping - data: {"type": "ping"} + data: {"type":"content_block_start","index":1,"content_block":{"type":"tool_use","id":"toolu_01N2eM4V43kGCDkq2Lw7ChWQ","name":"weather","input":{},"caller":{"type":"direct"}} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":""} } + 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":"{\"lo"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"{\"locati"} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"cation\""} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"on\":"} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":": "} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":" \"Fl"} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"\"Florence"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"orence,It"} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":",Italy\"}"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"aly\"}"} } event: content_block_stop - data: {"type":"content_block_stop","index":1 } + 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":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":66} } + data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":67} } event: message_stop - data: {"type":"message_stop" } + data: {"type":"message_stop" } headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 1.173477625s + duration: 1.147410833s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 872 + content_length: 883 host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"text":"I''ll check the weather in Florence, Italy for you.","type":"text"},{"id":"toolu_01TQLWhUiZa4j3esJhrzHpRV","input":{"location":"Florence,Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01TQLWhUiZa4j3esJhrzHpRV","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"}],"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}' + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"text":"I''ll get the weather information for Florence, Italy for you.","type":"text"},{"id":"toolu_01N2eM4V43kGCDkq2Lw7ChWQ","input":{"location":"Florence,Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01N2eM4V43kGCDkq2Lw7ChWQ","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"}],"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 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -106,43 +101,68 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 + uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"id":"msg_01Xib3pEmJjt4hNy7sEx4k5S","type":"message","role":"assistant","model":"claude-sonnet-4-20250514","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":475,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":1,"service_tier":"standard"}} } + data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01Kx5NVw2m4AvAyCQQ5zV4pU","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":476,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":1,"service_tier":"standard","inference_geo":"not_available"}} } event: content_block_start - data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + + event: ping + data: {"type": "ping"} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"The"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"The"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" current weather in Florence, Italy shows a temperature of 40°C (104"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" current"} } - event: ping - data: {"type": "ping"} + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" weather in Florence, Italy shows"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" a"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" temperature of 40°C (104"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"°F). That"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"'s quite hot! Make"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" sure to"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" stay hydrated and seek"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" shade if"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"°F). That's quite hot! Make sure to stay hydrated and seek"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" you're planning to be"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" shade or air conditioning if you're planning to be out"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" outd"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"doors."} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"oors."} } event: content_block_stop - data: {"type":"content_block_stop","index":0 } + 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":475,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":49} } + data: {"type":"message_delta","delta":{"stop_reason":"end_turn","stop_sequence":null},"usage":{"input_tokens":476,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":46} } event: message_stop - data: {"type":"message_stop" } + data: {"type":"message_stop" } headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 2.470388833s + duration: 1.178172458s diff --git a/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/multi_tool.yaml b/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/multi_tool.yaml index 634b4d57a66785b2448c75741dc4615efe4f04fa..edc5ce7f72bbc3285d4c17151c905223b38cbb68 100644 --- a/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/multi_tool.yaml +++ b/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/multi_tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -24,13 +24,13 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"model":"claude-sonnet-4-20250514","id":"msg_01SznaDwXbs3XRxBLMr2X7T3","type":"message","role":"assistant","content":[{"type":"text","text":"I''ll add and multiply the numbers 2 and 3 for you."},{"type":"tool_use","id":"toolu_01R4MgGUzmDFt4FVjLhPom7k","name":"add","input":{"a":2,"b":3}},{"type":"tool_use","id":"toolu_011jyywbY4Fv6JjWSS6cpVYp","name":"multiply","input":{"a":2,"b":3}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":507,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":137,"service_tier":"standard"}}' + body: '{"model":"claude-sonnet-4-20250514","id":"msg_016huVzyWx2uU5H2zEHGDJgD","type":"message","role":"assistant","content":[{"type":"text","text":"I''ll add and multiply the numbers 2 and 3 for you."},{"type":"tool_use","id":"toolu_01C8zwbdMHRJa85Fx2BCAFxN","name":"add","input":{"a":2,"b":3},"caller":{"type":"direct"}},{"type":"tool_use","id":"toolu_01GGZoPfd7CbDxTZbxZzjYGZ","name":"multiply","input":{"a":2,"b":3},"caller":{"type":"direct"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":507,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":137,"service_tier":"standard","inference_geo":"not_available"}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.974480333s + duration: 2.38807275s - id: 1 request: proto: HTTP/1.1 @@ -38,14 +38,14 @@ interactions: proto_minor: 1 content_length: 1472 host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Add and multiply the number 2 and 3","type":"text"}],"role":"user"},{"content":[{"text":"I''ll add and multiply the numbers 2 and 3 for you.","type":"text"},{"id":"toolu_01R4MgGUzmDFt4FVjLhPom7k","input":{"a":2,"b":3},"name":"add","type":"tool_use"},{"id":"toolu_011jyywbY4Fv6JjWSS6cpVYp","input":{"a":2,"b":3},"name":"multiply","cache_control":{"type":"ephemeral"},"type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01R4MgGUzmDFt4FVjLhPom7k","content":[{"text":"5","type":"text"}],"type":"tool_result"},{"tool_use_id":"toolu_011jyywbY4Fv6JjWSS6cpVYp","cache_control":{"type":"ephemeral"},"content":[{"text":"6","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS.","cache_control":{"type":"ephemeral"},"type":"text"}],"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers"},{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers"}]}' + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Add and multiply the number 2 and 3","type":"text"}],"role":"user"},{"content":[{"text":"I''ll add and multiply the numbers 2 and 3 for you.","type":"text"},{"id":"toolu_01C8zwbdMHRJa85Fx2BCAFxN","input":{"a":2,"b":3},"name":"add","type":"tool_use"},{"id":"toolu_01GGZoPfd7CbDxTZbxZzjYGZ","input":{"a":2,"b":3},"name":"multiply","cache_control":{"type":"ephemeral"},"type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01C8zwbdMHRJa85Fx2BCAFxN","content":[{"text":"5","type":"text"}],"type":"tool_result"},{"tool_use_id":"toolu_01GGZoPfd7CbDxTZbxZzjYGZ","cache_control":{"type":"ephemeral"},"content":[{"text":"6","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS.","cache_control":{"type":"ephemeral"},"type":"text"}],"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers"},{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"model":"claude-sonnet-4-20250514","id":"msg_01CNT45ENKCAtApVdKnkwkNc","type":"message","role":"assistant","content":[{"type":"text","text":"The results are:\n- 2 + 3 = 5\n- 2 × 3 = 6"}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":705,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":31,"service_tier":"standard"}}' + body: '{"model":"claude-sonnet-4-20250514","id":"msg_01WwmH6fWGBTsWaKzrrU6YcM","type":"message","role":"assistant","content":[{"type":"text","text":"The results are:\n- 2 + 3 = 5\n- 2 × 3 = 6"}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":705,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":31,"service_tier":"standard","inference_geo":"not_available"}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 3.377406042s + duration: 1.64117275s diff --git a/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/multi_tool_streaming.yaml b/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/multi_tool_streaming.yaml index ff85d89535ea39d0feb4c74211d565c4da2fad58..25be6bb704649b0bbcc0d872328333e3170c8673 100644 --- a/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/multi_tool_streaming.yaml +++ b/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/multi_tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -23,82 +23,83 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 + uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01Ps4SquTmAkLoZixSEW4SrN","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":502,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":4,"service_tier":"standard"}} } + data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01WUQ4q2kHhNVGdPSr4ChBMc","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":502,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":4,"service_tier":"standard","inference_geo":"not_available"}} } event: content_block_start - data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + + event: ping + data: {"type": "ping"} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"I'll add an"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"I'll add and"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"d multiply the numbers 2 and 3 for"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" multiply the numbers"} } - event: ping - data: {"type": "ping"} + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" 2 and 3 for"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" you."} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" you."} } event: content_block_stop - data: {"type":"content_block_stop","index":0} + 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_014EzUJ1TCJvs3dR7mZZgoyd","name":"add","input":{}} } + data: {"type":"content_block_start","index":1,"content_block":{"type":"tool_use","id":"toolu_01NbP3iG8A6TYDwEUxN6tiWw","name":"add","input":{},"caller":{"type":"direct"}} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":""} } + 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":"{\"a\":"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"{\"a\""} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":" 2"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":": 2"} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":", "} } + 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":"\"b\": 3}"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"b\": 3}"} } event: content_block_stop - data: {"type":"content_block_stop","index":1 } + data: {"type":"content_block_stop","index":1 } event: content_block_start - data: {"type":"content_block_start","index":2,"content_block":{"type":"tool_use","id":"toolu_01GYivdvVTotPKuatZiCkQvv","name":"multiply","input":{}} } - - event: content_block_delta - data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":""} } + data: {"type":"content_block_start","index":2,"content_block":{"type":"tool_use","id":"toolu_01Luz2H6g7H2QWmHBDtu4r24","name":"multiply","input":{},"caller":{"type":"direct"}} } event: content_block_delta - data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":"{\"a\": "} } + data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":""} } event: content_block_delta - data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":"2"} } + data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":"{\""} } event: content_block_delta - data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":", \"b\": "} } + data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":"a\": 2"} } event: content_block_delta - data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":"3}"} } + data: {"type":"content_block_delta","index":2,"delta":{"type":"input_json_delta","partial_json":", \"b\": 3}"}} event: content_block_stop - data: {"type":"content_block_stop","index":2 } + data: {"type":"content_block_stop","index":2 } event: message_delta - data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"input_tokens":502,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":137} } + data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"input_tokens":502,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":137} } event: message_stop - data: {"type":"message_stop" } + data: {"type":"message_stop" } headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 1.806945584s + duration: 3.220453875s - id: 1 request: proto: HTTP/1.1 @@ -106,14 +107,14 @@ interactions: proto_minor: 1 content_length: 1469 host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Add and multiply the number 2 and 3","type":"text"}],"role":"user"},{"content":[{"text":"I''ll add and multiply the numbers 2 and 3 for you.","type":"text"},{"id":"toolu_014EzUJ1TCJvs3dR7mZZgoyd","input":{"a":2,"b":3},"name":"add","type":"tool_use"},{"id":"toolu_01GYivdvVTotPKuatZiCkQvv","input":{"a":2,"b":3},"name":"multiply","cache_control":{"type":"ephemeral"},"type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_014EzUJ1TCJvs3dR7mZZgoyd","content":[{"text":"5","type":"text"}],"type":"tool_result"},{"tool_use_id":"toolu_01GYivdvVTotPKuatZiCkQvv","cache_control":{"type":"ephemeral"},"content":[{"text":"6","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant. Always use both add and multiply at the same time.","cache_control":{"type":"ephemeral"},"type":"text"}],"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers"},{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers"}],"stream":true}' + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Add and multiply the number 2 and 3","type":"text"}],"role":"user"},{"content":[{"text":"I''ll add and multiply the numbers 2 and 3 for you.","type":"text"},{"id":"toolu_01NbP3iG8A6TYDwEUxN6tiWw","input":{"a":2,"b":3},"name":"add","type":"tool_use"},{"id":"toolu_01Luz2H6g7H2QWmHBDtu4r24","input":{"a":2,"b":3},"name":"multiply","cache_control":{"type":"ephemeral"},"type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01NbP3iG8A6TYDwEUxN6tiWw","content":[{"text":"5","type":"text"}],"type":"tool_result"},{"tool_use_id":"toolu_01Luz2H6g7H2QWmHBDtu4r24","cache_control":{"type":"ephemeral"},"content":[{"text":"6","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant. Always use both add and multiply at the same time.","cache_control":{"type":"ephemeral"},"type":"text"}],"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers"},{"input_schema":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -121,43 +122,50 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 + uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_016tKmgfhWH1tfpDjeFE5JXn","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":700,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":1,"service_tier":"standard"}} } + data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01YQHQrZEJq37xUZY5pj9zkf","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":700,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":1,"service_tier":"standard","inference_geo":"not_available"}} } event: content_block_start - data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + + event: ping + data: {"type": "ping"} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"The"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"The"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" results are:\n- Adding"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" results"}} - event: ping - data: {"type": "ping"} + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" are"}} + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":":\n- "} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" 2 + 3 = 5\n-"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"2 + 3 = "} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" Multiplying 2 × "} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"5\n- 2 × "} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"3 = 6"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"3 = 6"} } event: content_block_stop - data: {"type":"content_block_stop","index":0 } + 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":700,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":35} } + data: {"type":"message_delta","delta":{"stop_reason":"end_turn","stop_sequence":null},"usage":{"input_tokens":700,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":31} } event: message_stop - data: {"type":"message_stop" } + data: {"type":"message_stop" } headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 1.850997125s + duration: 1.835685167s diff --git a/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/simple.yaml b/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/simple.yaml index c858e2671b50646d499a21511ade7bb73648f119..f0919ea46ce098b28ff7afbdac841dfb511741dc 100644 --- a/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/simple.yaml +++ b/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"model":"claude-sonnet-4-20250514","id":"msg_01SM76nbs7k7qZjGy2hihYc6","type":"message","role":"assistant","content":[{"type":"text","text":"Olá! (Oh-LAH)\n\nThis is the most common way to say \"hi\" in Portuguese. You could also say \"Oi!\" (OH-ee) which is more casual and friendly."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":49,"service_tier":"standard"}}' + body: '{"model":"claude-sonnet-4-20250514","id":"msg_01CJ27xQgJmo2KhmdWuPJAo4","type":"message","role":"assistant","content":[{"type":"text","text":"Olá! \n\n(That''s \"hi\" in Portuguese - you can also say \"Oi!\" for a more casual greeting)"}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":33,"service_tier":"standard","inference_geo":"not_available"}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.99537125s + duration: 1.8392715s diff --git a/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/simple_streaming.yaml b/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/simple_streaming.yaml index 607acf6bcfcdf015329a4a741f2505cd0b389005..a167d1d18dbbaca5f4e0e793c22a3bde06492e31 100644 --- a/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/simple_streaming.yaml +++ b/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -23,48 +23,79 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 + uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01QBAGSzfj2ZoqStejnhgqXh","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":4,"service_tier":"standard"}} } + data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01JGB62RRpQEwVHUjLdhqWMi","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":5,"service_tier":"standard","inference_geo":"not_available"}} } event: content_block_start - data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""}} + data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + + event: ping + data: {"type": "ping"} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"Olá!"}} + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"Olá! ("} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"\n\n("} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"Oh"} } - event: ping - data: {"type": "ping"} + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"-LA"}} + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"H"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":")"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"\n\nThat"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"'s \""} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"hello\" in Portuguese."} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" You"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" can also"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" say \""} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"Oi!\""} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"That's \"hello"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" ("} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"\" in Portuguese."} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"Oy)"}} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" Other common"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" for"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" greetings include \""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" a"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"Oi!\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" more"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" for a more casual \""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" casual \""} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"hi!\")"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"hi!\""} } event: content_block_stop - data: {"type":"content_block_stop","index":0 } + 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":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":35} } + data: {"type":"message_delta","delta":{"stop_reason":"end_turn","stop_sequence":null},"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":43} } event: message_stop data: {"type":"message_stop" } @@ -74,4 +105,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 2.247809834s + duration: 1.122226333s diff --git a/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/tool.yaml b/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/tool.yaml index 8cc555e9fc709b2500cd6000dcd7883a334032c0..04ecaa48e109477899744d772540b8f10c48ee5c 100644 --- a/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/tool.yaml +++ b/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -24,28 +24,28 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"model":"claude-sonnet-4-20250514","id":"msg_01Royrn78rAtSCcgQCG9QqoG","type":"message","role":"assistant","content":[{"type":"text","text":"I''ll get the weather information for Florence, Italy for you."},{"type":"tool_use","id":"toolu_01TdBhfkiVbuyrCtsoQ2P4v8","name":"weather","input":{"location":"Florence, Italy"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":67,"service_tier":"standard"}}' + body: '{"model":"claude-sonnet-4-20250514","id":"msg_01FZBbUciBe4wkGnigFx6HKJ","type":"message","role":"assistant","content":[{"type":"text","text":"I''ll get the weather information for Florence, Italy for you."},{"type":"tool_use","id":"toolu_01G4V9gJccyjCmy6PYH7Gx2E","name":"weather","input":{"location":"Florence,Italy"},"caller":{"type":"direct"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":67,"service_tier":"standard","inference_geo":"not_available"}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.230270958s + duration: 1.654480833s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 981 + content_length: 980 host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"text":"I''ll get the weather information for Florence, Italy for you.","type":"text"},{"id":"toolu_01TdBhfkiVbuyrCtsoQ2P4v8","input":{"location":"Florence, Italy"},"name":"weather","cache_control":{"type":"ephemeral"},"type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01TdBhfkiVbuyrCtsoQ2P4v8","cache_control":{"type":"ephemeral"},"content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","cache_control":{"type":"ephemeral"},"type":"text"}],"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"}]}' + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"text":"I''ll get the weather information for Florence, Italy for you.","type":"text"},{"id":"toolu_01G4V9gJccyjCmy6PYH7Gx2E","input":{"location":"Florence,Italy"},"name":"weather","cache_control":{"type":"ephemeral"},"type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01G4V9gJccyjCmy6PYH7Gx2E","cache_control":{"type":"ephemeral"},"content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","cache_control":{"type":"ephemeral"},"type":"text"}],"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"model":"claude-sonnet-4-20250514","id":"msg_01EiThKJDKp98nTMtjAWoXG6","type":"message","role":"assistant","content":[{"type":"text","text":"The current temperature in Florence, Italy is 40°C (104°F). That''s quite hot! Make sure to stay hydrated and seek shade or air conditioning if you''re planning to be outdoors."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":476,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":46,"service_tier":"standard"}}' + body: '{"model":"claude-sonnet-4-20250514","id":"msg_012yCfzG6kWKnRtaxz16qj5U","type":"message","role":"assistant","content":[{"type":"text","text":"The weather in Florence, Italy is currently 40°C (104°F). That''s quite hot! Make sure to stay hydrated and seek shade if you''re planning to be outdoors."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":476,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":43,"service_tier":"standard","inference_geo":"not_available"}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.465001083s + duration: 2.410551s diff --git a/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/tool_streaming.yaml b/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/tool_streaming.yaml index ce3ebef5e7d2391c7d7b759bfbe877e272525011..42f8eddb87ff2ccddcc1894bd5407cf7c5ac0dbe 100644 --- a/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/tool_streaming.yaml +++ b/providertests/testdata/TestAnthropicCommonWithCacheControl/claude-sonnet-4/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -23,82 +23,77 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 + uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01HzMwmi82NUByB1sP1H4Rtw","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":8,"service_tier":"standard"}} } + data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_013YEyRmBYgjxsPxQz6UfCFL","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":8,"service_tier":"standard","inference_geo":"not_available"}} } 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":"I'll check the weather in Florence,"} } + event: ping + data: {"type": "ping"} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" Italy for you."} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"I'll check the weather in Florence,"} } - event: ping - data: {"type": "ping"} + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" Italy for you."} } event: content_block_stop - data: {"type":"content_block_stop","index":0 } - - event: ping - data: {"type": "ping"} + 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_01TTGTdVydBd7icXtF1o89n7","name":"weather","input":{}} } - - event: ping - data: {"type": "ping"} + data: {"type":"content_block_start","index":1,"content_block":{"type":"tool_use","id":"toolu_01XyYVp2FLhsEv6yVQH9basi","name":"weather","input":{},"caller":{"type":"direct"}} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":""} } + 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":"{\"locati"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"{\"locati"} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"on"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"on\": "} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"\": \"Floren"}} + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"\"F"} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"ce, "} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"lorence,Ita"} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"Italy\"}"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"ly\"}"} } event: content_block_stop - data: {"type":"content_block_stop","index":1 } + 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":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":66} } + data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":66} } event: message_stop - data: {"type":"message_stop" } + data: {"type":"message_stop" } headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 1.726456542s + duration: 1.309189375s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 984 + content_length: 983 host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"text":"I''ll check the weather in Florence, Italy for you.","type":"text"},{"id":"toolu_01TTGTdVydBd7icXtF1o89n7","input":{"location":"Florence, Italy"},"name":"weather","cache_control":{"type":"ephemeral"},"type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01TTGTdVydBd7icXtF1o89n7","cache_control":{"type":"ephemeral"},"content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","cache_control":{"type":"ephemeral"},"type":"text"}],"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}' + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"text":"I''ll check the weather in Florence, Italy for you.","type":"text"},{"id":"toolu_01XyYVp2FLhsEv6yVQH9basi","input":{"location":"Florence,Italy"},"name":"weather","cache_control":{"type":"ephemeral"},"type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01XyYVp2FLhsEv6yVQH9basi","cache_control":{"type":"ephemeral"},"content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","cache_control":{"type":"ephemeral"},"type":"text"}],"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.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -106,46 +101,74 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 + uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01UX1WnAwYyv4VsX8Cpuzxcv","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":475,"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"}} } + data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01NAPRm3s7WySywMmPADDVTG","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":475,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":1,"service_tier":"standard","inference_geo":"not_available"}} } event: content_block_start - data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + + event: ping + data: {"type": "ping"} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"The current"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"The"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" weather in Florence, Italy is 40"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" current"} } - event: ping - data: {"type": "ping"} + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" weather in Florence, Italy is 40"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"°C (104°F)."} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" That"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"'s quite"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" hot"}} + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"!"}} + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" Make"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" sure to stay"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" hydrated and seek"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"°C (104°F)."} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" shade if"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" That's quite hot! It's a very"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" you're planning"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" warm day in Florence"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" to be outd"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"."} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"oors."} } event: content_block_stop - data: {"type":"content_block_stop","index":0 } + 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":475,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":34} } + data: {"type":"message_delta","delta":{"stop_reason":"end_turn","stop_sequence":null},"usage":{"input_tokens":475,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":43} } event: message_stop - data: {"type":"message_stop"} + data: {"type":"message_stop" } headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 2.045913625s + duration: 1.15866475s diff --git a/providertests/testdata/TestAnthropicObjectGeneration/claude-sonnet-4/complex_object.yaml b/providertests/testdata/TestAnthropicObjectGeneration/claude-sonnet-4/complex_object.yaml index 129f02b51b4ddd218cf070cdb5b017d49e527136..1e6b4ae37087271296a8b569da2ac7d12c30102b 100644 --- a/providertests/testdata/TestAnthropicObjectGeneration/claude-sonnet-4/complex_object.yaml +++ b/providertests/testdata/TestAnthropicObjectGeneration/claude-sonnet-4/complex_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"model":"claude-sonnet-4-20250514","id":"msg_01UkSBWK7ReA1Jc9w3ZSKrNb","type":"message","role":"assistant","content":[{"type":"tool_use","id":"toolu_01C9Z3xQvtkmqxD7fyJ4BHN5","name":"Book","input":{"title":"The Lord of the Rings","author":{"name":"J.R.R. Tolkien","nationality":"British"},"genres":["Fantasy","Adventure","Epic Fantasy","High Fantasy"],"published_year":1954}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":549,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":124,"service_tier":"standard"}}' + body: '{"model":"claude-sonnet-4-20250514","id":"msg_01HQZPasXEBKmgaBp3D6kdFd","type":"message","role":"assistant","content":[{"type":"tool_use","id":"toolu_01G8s8Xj75FJKwAQkFFAhRJy","name":"Book","input":{"title":"The Lord of the Rings","author":{"name":"J.R.R. Tolkien","nationality":"British"},"genres":["fantasy","adventure"],"published_year":1954},"caller":{"type":"direct"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":549,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":116,"service_tier":"standard","inference_geo":"not_available"}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 3.668454583s + duration: 4.802704625s diff --git a/providertests/testdata/TestAnthropicObjectGeneration/claude-sonnet-4/complex_object_streaming.yaml b/providertests/testdata/TestAnthropicObjectGeneration/claude-sonnet-4/complex_object_streaming.yaml index 5e9a654ac2d2307b3884b801026aceceef2d2bb3..d43c4a0630fefcabe4e47bf435791d4998348a5f 100644 --- a/providertests/testdata/TestAnthropicObjectGeneration/claude-sonnet-4/complex_object_streaming.yaml +++ b/providertests/testdata/TestAnthropicObjectGeneration/claude-sonnet-4/complex_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -23,130 +23,107 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 + uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01USjYftFnxQLCtwU6p9mdju","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":549,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":16,"service_tier":"standard"}} } + data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01J5VmN4LDdd6TGVDcbGze1P","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":549,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":16,"service_tier":"standard","inference_geo":"not_available"}} } event: content_block_start - data: {"type":"content_block_start","index":0,"content_block":{"type":"tool_use","id":"toolu_01GSfr2xJn2q4zqG46GXNdxt","name":"Book","input":{}} } - - event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":""} } + data: {"type":"content_block_start","index":0,"content_block":{"type":"tool_use","id":"toolu_01Jf3uH5RmmFHbJjKVyuoP3p","name":"Book","input":{},"caller":{"type":"direct"}} } event: ping data: {"type": "ping"} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"{\"ti"} } - - event: ping - data: {"type": "ping"} + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":""}} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"tle\": \"T"} } - - event: ping - data: {"type": "ping"} + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"{\"title\""} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"he Lord"} } - - event: ping - data: {"type": "ping"} - - event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":" of t"} } - - event: ping - data: {"type": "ping"} - - event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"he Ring"} } - - event: ping - data: {"type": "ping"} + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":": \"T"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"s\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"he Lor"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", \"author\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"d of th"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":": {\"nam"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"e Rings\""} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"e\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", \"a"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":":\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"uthor\""} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"J.R.R. To"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":": {\"na"}} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"lkien\",\"na"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"me\":\""} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"tionality\":\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"J.R.R. Tol"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"Bri"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"kien\",\"n"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"tish\"}"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"ationalit"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", \"g"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"y\":\"B"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"enre"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"ritish\"}"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"s\": [\"Fanta"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", \"genres\": "} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"sy\",\"Adventu"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"[\"Fa"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"re\",\"Epic Fa"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"ntasy\","} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"nta"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"\"Adventure\","} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"sy\",\"High "} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"\"Epic "} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"Fantasy\"]"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"Fantasy\","} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", \"pub"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"\"Hig"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"lished_"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"h Fantasy\"]"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"yea"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", \"publishe"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"r\":"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"d_ye"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":" 1954}"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"ar\": 1954}"} } event: content_block_stop - data: {"type":"content_block_stop","index":0} + data: {"type":"content_block_stop","index":0 } event: message_delta - data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"input_tokens":549,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":124} } + data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"input_tokens":549,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":124} } event: message_stop - data: {"type":"message_stop" } + data: {"type":"message_stop" } headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 1.980122625s + duration: 3.585529375s diff --git a/providertests/testdata/TestAnthropicObjectGeneration/claude-sonnet-4/simple_object.yaml b/providertests/testdata/TestAnthropicObjectGeneration/claude-sonnet-4/simple_object.yaml index cd685ccb68c048a7dc0d097bd459d9cf455a3b95..6d40159693199a4d670b8bdcdba3c12ffed399b3 100644 --- a/providertests/testdata/TestAnthropicObjectGeneration/claude-sonnet-4/simple_object.yaml +++ b/providertests/testdata/TestAnthropicObjectGeneration/claude-sonnet-4/simple_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"model":"claude-sonnet-4-20250514","id":"msg_01NeodXcmcw7q1AnbSJ8ShV4","type":"message","role":"assistant","content":[{"type":"tool_use","id":"toolu_019sLuNYTpv7VTTJEuGWXzki","name":"Person","input":{"name":"Alice","age":30,"city":"Paris"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":454,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":67,"service_tier":"standard"}}' + body: '{"model":"claude-sonnet-4-20250514","id":"msg_01D5jHmsvtvUkCS3uKmfVYwv","type":"message","role":"assistant","content":[{"type":"tool_use","id":"toolu_013SKcEFkzQm5QWtwuZCQKsV","name":"Person","input":{"name":"Alice","age":30,"city":"Paris"},"caller":{"type":"direct"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":454,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":67,"service_tier":"standard","inference_geo":"not_available"}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.542812416s + duration: 3.649844625s diff --git a/providertests/testdata/TestAnthropicObjectGeneration/claude-sonnet-4/simple_object_streaming.yaml b/providertests/testdata/TestAnthropicObjectGeneration/claude-sonnet-4/simple_object_streaming.yaml index cc9828a27a0a4bf58b13008fe724e8e1552e1eb6..e0affb9f30ef8bebaf7dcbade958bb3924c9d921 100644 --- a/providertests/testdata/TestAnthropicObjectGeneration/claude-sonnet-4/simple_object_streaming.yaml +++ b/providertests/testdata/TestAnthropicObjectGeneration/claude-sonnet-4/simple_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -23,67 +23,56 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 + uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01AihXNzoggoeqPeQuWPMYSo","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":454,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":24,"service_tier":"standard"}} } + data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_012o65JtUbhuhi4kwrVTDL2K","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":454,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":16,"service_tier":"standard","inference_geo":"not_available"}} } event: content_block_start - data: {"type":"content_block_start","index":0,"content_block":{"type":"tool_use","id":"toolu_01Midg7qjzUz6pdkS8HcgRY7","name":"Person","input":{}} } - - event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":""} } + data: {"type":"content_block_start","index":0,"content_block":{"type":"tool_use","id":"toolu_01VjQqYBbz8DKsb5e7D3PPfY","name":"Person","input":{},"caller":{"type":"direct"}} } event: ping data: {"type": "ping"} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"{\"n"} } - - event: ping - data: {"type": "ping"} + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":""} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"ame\":"} } - - event: ping - data: {"type": "ping"} + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"{\"name\": "} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":" \"Alic"} } - - event: ping - data: {"type": "ping"} + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"\"A"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"e\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"lice\""} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", \"age\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", \"age\":"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":": 30"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":" 30"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", \"c"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", \"city\": \""} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"ity\": \"Pa"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"Pari"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"ris\"}"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"s\"}"} } event: content_block_stop - data: {"type":"content_block_stop","index":0 } + data: {"type":"content_block_stop","index":0 } event: message_delta - data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"input_tokens":454,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":67} } + data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"input_tokens":454,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":67} } event: message_stop - data: {"type":"message_stop" } + data: {"type":"message_stop" } headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 2.144504667s + duration: 3.431522459s diff --git a/providertests/testdata/TestAnthropicThinking/claude-sonnet-4/thinking-streaming.yaml b/providertests/testdata/TestAnthropicThinking/claude-sonnet-4/thinking-streaming.yaml index a7831ede75e64b9c8c33ea6970cb053c9077eedb..4c9732dbdfffd8b7f93b8bcf4412855687bd99ad 100644 --- a/providertests/testdata/TestAnthropicThinking/claude-sonnet-4/thinking-streaming.yaml +++ b/providertests/testdata/TestAnthropicThinking/claude-sonnet-4/thinking-streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.10.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -23,94 +23,143 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 + uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"id":"msg_01WBeG2NaYQ8w99747S3n8MZ","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"}} } + data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01KTBB57LAzaSZs8kMNvfnsY","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":424,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":5,"service_tier":"standard","inference_geo":"not_available"}} } 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"}} + data: {"type":"content_block_start","index":0,"content_block":{"type":"thinking","thinking":"","signature":""} } 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"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":"The user is asking for"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" weather information for Florence, Italy. I"}} + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" have"}} + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" access"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" to a"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" weather"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" function"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" that takes"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" a location parameter. The"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" user"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" has"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" provided the location as \"Florence, Italy"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":"\" which"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" is specific"}} + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" enough for"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" the"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" access to a weather function that takes a \"location\" parameter. The"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" weather function."} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" user has provided the location as \"Florence,"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" I have"}} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" Italy\" which is clear and specific. I have"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" all the required parameters to"} } 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."} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" make the"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"signature_delta","signature":"EsQDCkYICBgCKkBr9+FTcKs+la0OlmRVB4HF/bTERKj+hr9pp9uxwdet2/P99iNZh/vwxm7Cd5wrZD0FnPkUz3DEqXv+ZoIL2fAoEgxOEzQepAptMFJiFJcaDM2L2wJzGec9170N1SIwHhl0DW0hXYbwHTRAR6w9biU0HwUh00oLghjeBusiv40ctsJB4tO/WyOR2f0iH7pZKqsC3UTE2b7nqQUmYP8dEDfnfNdbr24zEaWiZ2QMbwv9ZrwtUy0Wo/ot3n9JMpocHUSwtyKzB4GsMsgr/xtGEl9541AMSFhR1G8y3Ffn22e6pXV7dakwU/vxcBTvdwfBplrBxxJ1zT/ieuQUrdemKCRZS4QVmaVijUpYQMaQF7iCJJPKYI+wBhxT0y0yOoVqORKg2AuRmbkTpMfKZJ5xRBLAeydMhloeKfYswDDisWIChmJlclIro0Jr80OhpohTcQGayY4fjn0A/ir+9PYzLzjGitR3a+/lfHvuTmPC9AnWv3Sp87mddUuJ10jqO9QWXNTnAVdehLiN/heJVjOMkXCstWLVUycEgnfwXEqlNMMFuRAfOwTte0Ls9qHkl3Fzo8ompJiqxF879rSwcSEYAQ=="} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" function call."}} + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":""} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"signature_delta","signature":"EtYDCkYICxgCKkAVHEWRYo6RgSMs4ZZDX4gW16kdfp2EIXftcLesVephGa/p1m+1Y8mRQPvvKOQICrOkGKYoJBKSNLJ4ukI/mo6LEgx7FMTwIpYzM2WTWT8aDKY6c2i52xIX2NYX3SIwY5gI8frldE4pwUhseod0S0xZV2hTAQhqMCOu4+effAu250K2RPrqrO98+VD/hjF9Kr0C7EzGQ7dZ7MNwrkE+tCARkzIRk5Wtv8vVAhADlMcs78QvxmjOToU65I91p7w2/VP11peDoc9+7AbyldRKGp3chNnQgXHI7ObK89s0ltFBGrLf6tegaQL9httOtcUGCioZnI9LI9vJHMlQeoZiiWRq8hVbHlHc3f6BwBqlUJhYUyk7ld34UoaSNc5UKUNuLAmkOLg3KQLdbI7b3BQVdsWOhNTKd12fRJQcOLhXNSCv7hQ9FtWfV5C+pX59xF6YYIO3TCPUqWSubCtqdrDEoQVWdHtyveFA+4iixZxyqZ7Ea+kzbmc/6pXxwO2MX0rHrbe/yXWYAmU/XxY9HJTzXEO+CibGQOAaHdC11s8gOCFb8EWt3ALguFfj/p2SJtqybC44Alrjnhjqk+7Mi+DoMcINUh7SCK9rVl4VeDhPFVAYAQ=="} } event: content_block_stop - data: {"type":"content_block_stop","index":0 } + 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_0171KFcBwn1Z64XzvQfz3sZS","name":"weather","input":{}} } + data: {"type":"content_block_start","index":1,"content_block":{"type":"tool_use","id":"toolu_01Js4AMfx5qpTLhwTusnvT68","name":"weather","input":{},"caller":{"type":"direct"}} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":""}} + 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":"{\"location"} } + 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":"\": \"F"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"lo"} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"lo"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"catio"} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"rence, I"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"n\": \"Florenc"} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"taly"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"e, Italy"} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"\"}"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"\"}"} } event: content_block_stop - data: {"type":"content_block_stop","index":1 } + 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":119} } + data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"input_tokens":424,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":119} } event: message_stop - data: {"type":"message_stop" } + data: {"type":"message_stop" } headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 1.294270083s + duration: 3.298648834s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1796 + content_length: 1837 host: "" - body: '{"max_tokens":4096,"messages":[{"content":[{"text":"What''s the weather in Florence, Italy?","type":"text"}],"role":"user"},{"content":[{"signature":"EsQDCkYICBgCKkBr9+FTcKs+la0OlmRVB4HF/bTERKj+hr9pp9uxwdet2/P99iNZh/vwxm7Cd5wrZD0FnPkUz3DEqXv+ZoIL2fAoEgxOEzQepAptMFJiFJcaDM2L2wJzGec9170N1SIwHhl0DW0hXYbwHTRAR6w9biU0HwUh00oLghjeBusiv40ctsJB4tO/WyOR2f0iH7pZKqsC3UTE2b7nqQUmYP8dEDfnfNdbr24zEaWiZ2QMbwv9ZrwtUy0Wo/ot3n9JMpocHUSwtyKzB4GsMsgr/xtGEl9541AMSFhR1G8y3Ffn22e6pXV7dakwU/vxcBTvdwfBplrBxxJ1zT/ieuQUrdemKCRZS4QVmaVijUpYQMaQF7iCJJPKYI+wBhxT0y0yOoVqORKg2AuRmbkTpMfKZJ5xRBLAeydMhloeKfYswDDisWIChmJlclIro0Jr80OhpohTcQGayY4fjn0A/ir+9PYzLzjGitR3a+/lfHvuTmPC9AnWv3Sp87mddUuJ10jqO9QWXNTnAVdehLiN/heJVjOMkXCstWLVUycEgnfwXEqlNMMFuRAfOwTte0Ls9qHkl3Fzo8ompJiqxF879rSwcSEYAQ==","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 the location as \"Florence, Italy\" which is clear and specific. I have all the required parameters to make this function call.","type":"thinking"},{"id":"toolu_0171KFcBwn1Z64XzvQfz3sZS","input":{"location":"Florence, Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_0171KFcBwn1Z64XzvQfz3sZS","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}' + body: '{"max_tokens":4096,"messages":[{"content":[{"text":"What''s the weather in Florence, Italy?","type":"text"}],"role":"user"},{"content":[{"signature":"EtYDCkYICxgCKkAVHEWRYo6RgSMs4ZZDX4gW16kdfp2EIXftcLesVephGa/p1m+1Y8mRQPvvKOQICrOkGKYoJBKSNLJ4ukI/mo6LEgx7FMTwIpYzM2WTWT8aDKY6c2i52xIX2NYX3SIwY5gI8frldE4pwUhseod0S0xZV2hTAQhqMCOu4+effAu250K2RPrqrO98+VD/hjF9Kr0C7EzGQ7dZ7MNwrkE+tCARkzIRk5Wtv8vVAhADlMcs78QvxmjOToU65I91p7w2/VP11peDoc9+7AbyldRKGp3chNnQgXHI7ObK89s0ltFBGrLf6tegaQL9httOtcUGCioZnI9LI9vJHMlQeoZiiWRq8hVbHlHc3f6BwBqlUJhYUyk7ld34UoaSNc5UKUNuLAmkOLg3KQLdbI7b3BQVdsWOhNTKd12fRJQcOLhXNSCv7hQ9FtWfV5C+pX59xF6YYIO3TCPUqWSubCtqdrDEoQVWdHtyveFA+4iixZxyqZ7Ea+kzbmc/6pXxwO2MX0rHrbe/yXWYAmU/XxY9HJTzXEO+CibGQOAaHdC11s8gOCFb8EWt3ALguFfj/p2SJtqybC44Alrjnhjqk+7Mi+DoMcINUh7SCK9rVl4VeDhPFVAYAQ==","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 the location as \"Florence, Italy\" which is specific enough for the weather function. I have all the required parameters to make the function call.","type":"thinking"},{"id":"toolu_01Js4AMfx5qpTLhwTusnvT68","input":{"location":"Florence, Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01Js4AMfx5qpTLhwTusnvT68","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 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -118,43 +167,80 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 + uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"id":"msg_013robXNGqrQ66iDpnRyejiu","type":"message","role":"assistant","model":"claude-sonnet-4-20250514","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":557,"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"}} } + data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01G4mwZgqcFN38A9H8S9pPAA","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":558,"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","inference_geo":"not_available"}} } event: content_block_start - data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + + event: ping + data: {"type": "ping"} 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)."}} + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" weather in Florence, Italy is "} } - event: ping - data: {"type": "ping"} + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"40°C (104°F)."} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" That"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"'s quite"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" hot! If"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" you're planning to visit or"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" are currently"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" there, make"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" sure to"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" stay"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" hydrated and seek"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" shade or"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" air conditioning"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" That's quite hot! It appears"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" when"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" to be a very warm day there"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" possible"} } event: content_block_delta data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"."} } event: content_block_stop - data: {"type":"content_block_stop","index":0 } + 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":557,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":35}} + data: {"type":"message_delta","delta":{"stop_reason":"end_turn","stop_sequence":null},"usage":{"input_tokens":558,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":51} } event: message_stop - data: {"type":"message_stop" } + data: {"type":"message_stop" } headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 1.164435458s + duration: 3.4902495s diff --git a/providertests/testdata/TestAnthropicThinking/claude-sonnet-4/thinking.yaml b/providertests/testdata/TestAnthropicThinking/claude-sonnet-4/thinking.yaml index cac26c4aaef192f5551a302d8bab777ca6f54ae0..9df8c55c0eea0a376af231f8acfda00b752d253a 100644 --- a/providertests/testdata/TestAnthropicThinking/claude-sonnet-4/thinking.yaml +++ b/providertests/testdata/TestAnthropicThinking/claude-sonnet-4/thinking.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.10.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -24,28 +24,28 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"msg_0161zGUJcy7n6Gtc3W2yEfEi","type":"message","role":"assistant","model":"claude-sonnet-4-20250514","content":[{"type":"thinking","thinking":"The user is asking for weather information for Florence, Italy. I have access to a weather function that takes a location parameter. The user has provided the location as \"Florence, Italy\" which is specific enough for the weather function.\n\nI should call the weather function with the location parameter set to \"Florence, Italy\".","signature":"EvIDCkYICBgCKkB3OXkd+Z/weJsi/KkBdtuRG6KOJp06/IzU7Jk57DreAI4FgyT9Xqef8INOF0ENXD//orE8oncMe+M72OyRG7FQEgxPaEO4DRV1o5sFWXAaDNTMb6U1NI1BcmYAPCIwzkufbx9sEOQQxPyBOcNFCs/SugbLyRr2IlXwdFmYoDeaOm1DkRFknTct6f6A6EzxKtkCVGlLUEl4LBJeAuluxJbq3PlzewMXa7EEvsi+M4T71uUci/d0RIK2Z5NxNpgTbVqM7shsDImrqR/0gJ/6BxwEptGq1G626mA5DgyfjR0QJ0etDk8kT7iJ33H6BRMGA8DnehmhOUYGTiajWdjgD3/H0S8mVT06swDddMKynOg4sRlr8PvQBDcyDlHTVQUo5SmrOPm8JsOtLfN8nDKTdhU0NofnVVNklOKblM83YuT97HhM269IQEf6rbqKknBZSvKVJOoHkOwTCn60uQj7b1wpVTjI4KRCVnlhRBpVrVyTmveM5kZXNdL/6sHUHboPCUYPbU24aYf/BTPswY2NsbdtpIRS3uHnSyIZ0gOMZA/5pWQbNJYjL5iksP8waiwCgOPkadqo02yQvqDY6XCfVd9LkRdaUQIZOt9IaSDE+9mvGnH025qCd4/sGBy+QRd9T/uNAFmkjeG9wL4oGAE="},{"type":"tool_use","id":"toolu_018GcaTNHipGG9yeZ3srYF9d","name":"weather","input":{"location":"Florence, Italy"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":423,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":126,"service_tier":"standard"}}' + body: '{"model":"claude-sonnet-4-20250514","id":"msg_014p8oaAg6qzrZ2XRyomYBNQ","type":"message","role":"assistant","content":[{"type":"thinking","thinking":"The user is asking about the weather in Florence, Italy. I have a weather function available that takes a location parameter. The user has provided the location as \"Florence, Italy\" which is specific enough for the weather function. I have all the required parameters to make the function call.","signature":"Es8DCkYICxgCKkBROcM3239oIjVRtMTZin6UAjoE9xO0SXVQMr4UmHPaf8ABCrDZU7HQV0rZBBQjHz/LYBodQYqfhI6JW2CdZe5cEgy8y5mudpoPkWnTaV8aDJVR52Mx2nO7+eGpPyIwDFer1KYmKviIXPO6bpzvoC3AZzj7EyHpgeZMZZkKG2IZEC3tS0X46Gz0qAjQe3GjKrYCxSKWUv+dBGxXLgI8JtU/knWJR5GCTlLny+dvOLqdMjQIS/eJI2chHhrsND7SIcQG4EC2b21XBH07VbzYPWEDFmZULyXNXS66nkeqbqj+Y9lmhAn1ONYt47Txlaf0Zf5AAATe53hdDWd8VkJwcgHV7y142xtwVGK4EefJ06FIRfjpvhdKKjVHvgH4fqdTjtuchawXvek10MMqjl1BfOVNa3RoV+Y3ACpFxBXUVFOK7yqJExZYAjtCLTme6LGNhl/stnCq+I4mV3zHiy6PD3svzUyEO1bwvBpTXXXEyl2sRhm764/Rs/BxiVr+Z35zimii76pz+S+VT8Tch9ymIkZ8WySqFp3M2c2m/fpxZl8Iy4A2Y/cmqVHXyiX2RbM4/ViWJtj3V2UTVNwrKh4Uivqv4vvcwomAtRgB"},{"type":"tool_use","id":"toolu_014azqsWLU8Djh6RhmBGRC2u","name":"weather","input":{"location":"Florence, Italy"},"caller":{"type":"direct"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":424,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":118,"service_tier":"standard","inference_geo":"not_available"}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 3.787719958s + duration: 4.487023084s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1891 + content_length: 1804 host: "" - body: '{"max_tokens":4096,"messages":[{"content":[{"text":"What''s the weather in Florence, Italy?","type":"text"}],"role":"user"},{"content":[{"signature":"EvIDCkYICBgCKkB3OXkd+Z/weJsi/KkBdtuRG6KOJp06/IzU7Jk57DreAI4FgyT9Xqef8INOF0ENXD//orE8oncMe+M72OyRG7FQEgxPaEO4DRV1o5sFWXAaDNTMb6U1NI1BcmYAPCIwzkufbx9sEOQQxPyBOcNFCs/SugbLyRr2IlXwdFmYoDeaOm1DkRFknTct6f6A6EzxKtkCVGlLUEl4LBJeAuluxJbq3PlzewMXa7EEvsi+M4T71uUci/d0RIK2Z5NxNpgTbVqM7shsDImrqR/0gJ/6BxwEptGq1G626mA5DgyfjR0QJ0etDk8kT7iJ33H6BRMGA8DnehmhOUYGTiajWdjgD3/H0S8mVT06swDddMKynOg4sRlr8PvQBDcyDlHTVQUo5SmrOPm8JsOtLfN8nDKTdhU0NofnVVNklOKblM83YuT97HhM269IQEf6rbqKknBZSvKVJOoHkOwTCn60uQj7b1wpVTjI4KRCVnlhRBpVrVyTmveM5kZXNdL/6sHUHboPCUYPbU24aYf/BTPswY2NsbdtpIRS3uHnSyIZ0gOMZA/5pWQbNJYjL5iksP8waiwCgOPkadqo02yQvqDY6XCfVd9LkRdaUQIZOt9IaSDE+9mvGnH025qCd4/sGBy+QRd9T/uNAFmkjeG9wL4oGAE=","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 the location as \"Florence, Italy\" which is specific enough for the weather function.\n\nI should call the weather function with the location parameter set to \"Florence, Italy\".","type":"thinking"},{"id":"toolu_018GcaTNHipGG9yeZ3srYF9d","input":{"location":"Florence, Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_018GcaTNHipGG9yeZ3srYF9d","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"}]}' + body: '{"max_tokens":4096,"messages":[{"content":[{"text":"What''s the weather in Florence, Italy?","type":"text"}],"role":"user"},{"content":[{"signature":"Es8DCkYICxgCKkBROcM3239oIjVRtMTZin6UAjoE9xO0SXVQMr4UmHPaf8ABCrDZU7HQV0rZBBQjHz/LYBodQYqfhI6JW2CdZe5cEgy8y5mudpoPkWnTaV8aDJVR52Mx2nO7+eGpPyIwDFer1KYmKviIXPO6bpzvoC3AZzj7EyHpgeZMZZkKG2IZEC3tS0X46Gz0qAjQe3GjKrYCxSKWUv+dBGxXLgI8JtU/knWJR5GCTlLny+dvOLqdMjQIS/eJI2chHhrsND7SIcQG4EC2b21XBH07VbzYPWEDFmZULyXNXS66nkeqbqj+Y9lmhAn1ONYt47Txlaf0Zf5AAATe53hdDWd8VkJwcgHV7y142xtwVGK4EefJ06FIRfjpvhdKKjVHvgH4fqdTjtuchawXvek10MMqjl1BfOVNa3RoV+Y3ACpFxBXUVFOK7yqJExZYAjtCLTme6LGNhl/stnCq+I4mV3zHiy6PD3svzUyEO1bwvBpTXXXEyl2sRhm764/Rs/BxiVr+Z35zimii76pz+S+VT8Tch9ymIkZ8WySqFp3M2c2m/fpxZl8Iy4A2Y/cmqVHXyiX2RbM4/ViWJtj3V2UTVNwrKh4Uivqv4vvcwomAtRgB","thinking":"The user is asking about the weather in Florence, Italy. I have a weather function available that takes a location parameter. The user has provided the location as \"Florence, Italy\" which is specific enough for the weather function. I have all the required parameters to make the function call.","type":"thinking"},{"id":"toolu_014azqsWLU8Djh6RhmBGRC2u","input":{"location":"Florence, Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_014azqsWLU8Djh6RhmBGRC2u","content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","type":"text"}],"thinking":{"budget_tokens":4000,"type":"enabled"},"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - Anthropic/Go 1.10.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"msg_01EpG6sx9WamuPv9k6S2aHDB","type":"message","role":"assistant","model":"claude-sonnet-4-20250514","content":[{"type":"text","text":"The current weather in Florence, Italy is 40°C (104°F). That''s quite hot! Make sure to stay hydrated and seek shade if you''re planning to be outdoors."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":564,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":43,"service_tier":"standard"}}' + body: '{"model":"claude-sonnet-4-20250514","id":"msg_01MLTnJpHAVRZVouyZD7xj4j","type":"message","role":"assistant","content":[{"type":"text","text":"The current temperature in Florence, Italy is 40°C (104°F). That''s quite hot! Make sure to stay hydrated and seek shade or air conditioning if you''re planning to be outdoors."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":557,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":46,"service_tier":"standard","inference_geo":"not_available"}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.560516875s + duration: 2.416474458s diff --git a/providertests/testdata/TestAnthropicThinkingWithCacheControl/claude-sonnet-4/thinking-streaming.yaml b/providertests/testdata/TestAnthropicThinkingWithCacheControl/claude-sonnet-4/thinking-streaming.yaml index 260e816c7bab15cfde1eed1bb85f0b892973d51d..a8e0e209cffa5b873cf70d78ca7cbe58f3286c26 100644 --- a/providertests/testdata/TestAnthropicThinkingWithCacheControl/claude-sonnet-4/thinking-streaming.yaml +++ b/providertests/testdata/TestAnthropicThinkingWithCacheControl/claude-sonnet-4/thinking-streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -23,97 +23,119 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 + uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_018QLVWxHwCDcmbxmut1XibB","type":"message","role":"assistant","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"}} } + data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01ApaK754YQvujSfdPXzsdyD","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":424,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":5,"service_tier":"standard","inference_geo":"not_available"}} } 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"} } + data: {"type":"content_block_start","index":0,"content_block":{"type":"thinking","thinking":"","signature":""} } 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"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":"The user is asking for"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" weather"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" information for Florence, Italy. I have"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" a weather"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" function available"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" that takes"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" a location parameter."} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" The"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" access to a weather"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" location is"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" function that requires"}} + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" clearly"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" a location parameter. The"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" specified as \"Florence, Italy\" so"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" user has provided the location as \"Florence,"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" I have"}} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" Italy\". I have"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" all the required parameters to"} } 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"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":" make the function call."} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":"."} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"thinking_delta","thinking":""}} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"signature_delta","signature":"EqkDCkYICBgCKkDMkVtuKFhL43wYuAZr0LxTAfH7CxEgsPiJdcz/3isjhK8aSzupMCdAAzBvP0wbo0CoAK+d6U8my50fwC6qbKjQEgzeVwbRwVSpMC7a7eIaDDGi/DIlGKGpdo1yXSIwn6eQw8pvNZH3N0x+TKc6d8UWJ85+y+le/fWhIIv/Q/2FnNSZDEbSvLQI6thi94QwKpACRTY5D6hm8bVJ5BIHMyYBLEaxYPjsNyQ9Idf+pkFHY2TKEEvFoqo9liA9RGrb4KOaaJ3n0D6Bqclr69UzTmGs1vvrrKApGO7SleM3V13PG78eKt3QbFu7VjndhYALY2Cf4jDoW6yEHZ8fVvp61kGhyiuxQH8pPqCR8GdkSLOI8O76NHWRt4Zj1MO7LCTaqJNKJdvOc7xKSnQGNjB1Jz3OS+cclNqAhJgJn278Vc0HzIkcX6NdxSM3XjEXMRo7l1oBV04UCtWZD+REpPAt3G1Wz8MJ7mco3F+0tpGnv5nlN5J0+boOZ2o16NASQ7MBPa3a1+F4zgqiVO2TnyxLhy38zn4dfAzoJ1GKedr3UDXBMeMYAQ=="} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"signature_delta","signature":"EqUDCkYICxgCKkB94vhGG6xKjNnGimHMfRxMKRoDnfxu8X0ubqexC/CZ0gU1q1TlbdRN/J4R0tWVpSFl6fFlfjxBILkP/+4vk0rsEgzbQkeDFZOgLMaFoiIaDG8QqH26wO17qRddBiIwRcuTXQ+vYvilaa2l7ZrhFrzBcvIl0OGzUAC7j0HlRAHwvUOrRgdTv/T3RNxp54IyKowCTaf1uRz1+N5xdqDP1QqRQeb2IoF4gIh96Uuu4hxNWfp2sP3d+iUFTxF7xf4mYIoeYgNwcPw3xqzTFgjbIqpKFNMjnsC+8P+zxVjz+yCeSCrISQKZb7jZsz0VxX28VA6q8Vcz65qYFU0+l438jCr7eDxSKxf2uzGUc5TA3jsOVEHZFlh4CtkJbmeWaU5Zntjc1cUmPLH/oSxgy9M9rqw71+nw/a2b5n37UsZdKULm//NsOf0FaptS0cVdbxztoBFQXoOJLo1O+9TnV+hS2de4kxWTqDpNEkS7V6eEmt2Ulfw6dLTMt89OCLz+6mE6bV3D/R2CVQJTS+tLaPXBa5/hTsEcioJgRy9XQOyPuBgB"} } event: content_block_stop - data: {"type":"content_block_stop","index":0} + 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_012Y7zdiwQJuNXf7QjpkJtC6","name":"weather","input":{}} } + data: {"type":"content_block_start","index":1,"content_block":{"type":"tool_use","id":"toolu_017cWttjFBXZWw8LkJbhpqm1","name":"weather","input":{},"caller":{"type":"direct"}} } + + 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":""} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"{\"location\":"} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"{\"location"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":" \"F"} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"\": "} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"lore"} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"\"Florence,"} } + 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":" Italy\"}"} } + 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 } + 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":111} } + data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"input_tokens":424,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":109}} event: message_stop - data: {"type":"message_stop" } + data: {"type":"message_stop" } headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 1.784653959s + duration: 3.171908791s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1842 + content_length: 1831 host: "" - body: '{"max_tokens":4096,"messages":[{"content":[{"text":"What''s the weather in Florence, Italy?","type":"text"}],"role":"user"},{"content":[{"signature":"EqkDCkYICBgCKkDMkVtuKFhL43wYuAZr0LxTAfH7CxEgsPiJdcz/3isjhK8aSzupMCdAAzBvP0wbo0CoAK+d6U8my50fwC6qbKjQEgzeVwbRwVSpMC7a7eIaDDGi/DIlGKGpdo1yXSIwn6eQw8pvNZH3N0x+TKc6d8UWJ85+y+le/fWhIIv/Q/2FnNSZDEbSvLQI6thi94QwKpACRTY5D6hm8bVJ5BIHMyYBLEaxYPjsNyQ9Idf+pkFHY2TKEEvFoqo9liA9RGrb4KOaaJ3n0D6Bqclr69UzTmGs1vvrrKApGO7SleM3V13PG78eKt3QbFu7VjndhYALY2Cf4jDoW6yEHZ8fVvp61kGhyiuxQH8pPqCR8GdkSLOI8O76NHWRt4Zj1MO7LCTaqJNKJdvOc7xKSnQGNjB1Jz3OS+cclNqAhJgJn278Vc0HzIkcX6NdxSM3XjEXMRo7l1oBV04UCtWZD+REpPAt3G1Wz8MJ7mco3F+0tpGnv5nlN5J0+boOZ2o16NASQ7MBPa3a1+F4zgqiVO2TnyxLhy38zn4dfAzoJ1GKedr3UDXBMeMYAQ==","thinking":"The user is asking for weather information for Florence, Italy. I have access to a weather function that requires a location parameter. The user has provided the location as \"Florence, Italy\". I have all the required parameters to make this function call.","type":"thinking"},{"id":"toolu_012Y7zdiwQJuNXf7QjpkJtC6","input":{"location":"Florence, Italy"},"name":"weather","cache_control":{"type":"ephemeral"},"type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_012Y7zdiwQJuNXf7QjpkJtC6","cache_control":{"type":"ephemeral"},"content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","cache_control":{"type":"ephemeral"},"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}' + body: '{"max_tokens":4096,"messages":[{"content":[{"text":"What''s the weather in Florence, Italy?","type":"text"}],"role":"user"},{"content":[{"signature":"EqUDCkYICxgCKkB94vhGG6xKjNnGimHMfRxMKRoDnfxu8X0ubqexC/CZ0gU1q1TlbdRN/J4R0tWVpSFl6fFlfjxBILkP/+4vk0rsEgzbQkeDFZOgLMaFoiIaDG8QqH26wO17qRddBiIwRcuTXQ+vYvilaa2l7ZrhFrzBcvIl0OGzUAC7j0HlRAHwvUOrRgdTv/T3RNxp54IyKowCTaf1uRz1+N5xdqDP1QqRQeb2IoF4gIh96Uuu4hxNWfp2sP3d+iUFTxF7xf4mYIoeYgNwcPw3xqzTFgjbIqpKFNMjnsC+8P+zxVjz+yCeSCrISQKZb7jZsz0VxX28VA6q8Vcz65qYFU0+l438jCr7eDxSKxf2uzGUc5TA3jsOVEHZFlh4CtkJbmeWaU5Zntjc1cUmPLH/oSxgy9M9rqw71+nw/a2b5n37UsZdKULm//NsOf0FaptS0cVdbxztoBFQXoOJLo1O+9TnV+hS2de4kxWTqDpNEkS7V6eEmt2Ulfw6dLTMt89OCLz+6mE6bV3D/R2CVQJTS+tLaPXBa5/hTsEcioJgRy9XQOyPuBgB","thinking":"The user is asking for weather information for Florence, Italy. I have a weather function available that takes a location parameter. The location is clearly specified as \"Florence, Italy\" so I have all the required parameters to make the function call.","type":"thinking"},{"id":"toolu_017cWttjFBXZWw8LkJbhpqm1","input":{"location":"Florence, Italy"},"name":"weather","cache_control":{"type":"ephemeral"},"type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_017cWttjFBXZWw8LkJbhpqm1","cache_control":{"type":"ephemeral"},"content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","cache_control":{"type":"ephemeral"},"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.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -121,39 +143,52 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 + uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01RtDAbGZhKwuFUM9xy3bE72","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":549,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":1,"service_tier":"standard"}} } + data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01VinQM2kgcAKaRJC2QMMMWX","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":548,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":2,"service_tier":"standard","inference_geo":"not_available"}} } event: content_block_start - data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""}} + data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + + event: ping + data: {"type": "ping"} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"The"} } + 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":" current weather in Florence, Italy is "} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" weather in Florence, Italy is 40"}} - event: ping - data: {"type": "ping"} + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"°C (104°F). That"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"'s quite"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" hot"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"! It"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"40°C (104°F)."} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" would"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" That's quite hot! It"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" be a very"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"'s a very warm day in"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" warm day there"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" Florence."} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"."} } event: content_block_stop - data: {"type":"content_block_stop","index":0} + 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":549,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":34} } + data: {"type":"message_delta","delta":{"stop_reason":"end_turn","stop_sequence":null},"usage":{"input_tokens":548,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":34} } event: message_stop data: {"type":"message_stop"} @@ -163,4 +198,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 2.0182445s + duration: 1.459782333s diff --git a/providertests/testdata/TestAnthropicThinkingWithCacheControl/claude-sonnet-4/thinking.yaml b/providertests/testdata/TestAnthropicThinkingWithCacheControl/claude-sonnet-4/thinking.yaml index bce266d2559058d6c830b5a436ab36c2753aaadc..b684a01e4ff8ee7001b680fc2c5ad8c176c62ee9 100644 --- a/providertests/testdata/TestAnthropicThinkingWithCacheControl/claude-sonnet-4/thinking.yaml +++ b/providertests/testdata/TestAnthropicThinkingWithCacheControl/claude-sonnet-4/thinking.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -24,28 +24,28 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"model":"claude-sonnet-4-20250514","id":"msg_019nCdrqNy56N4FPDPkMaz7B","type":"message","role":"assistant","content":[{"type":"thinking","thinking":"The user is asking for weather information for Florence, Italy. I have a weather function available that takes a location parameter. The user has provided \"Florence, Italy\" as the location. I have all the required parameters to make the function call.","signature":"EqQDCkYICBgCKkD+6F3ZCJ3CoiNs91jnjkz/6xYefJjve+nbgY/runWHxGeBEg21iA6vjJVq7OceBDUlc+TFtcdi0WkUTiiBe0S5EgxwzS43u6Xgdl6soBAaDKzHQ0Z1Vrcz7LHSUCIwU6Qn02eS0AhhP5SpNdLRzSPWLN3oHDC3vhxs4wiNY4TkWpXa9nyIRhwUKNd5ud+uKosCJgjHGR/uLuODWUEGlJbrxAhr3xrQbciN/sDfV4tqfPOj+t5tm96khBOGNXXIO/SE3If0wlexbIGis17tQxnH6z0MRB7SiRzS6CjWzMK361uwv2pgUgy9lHKsbARcjtFCaCCrFpFLPO0lySJK0D60RmPO6DmFfkamYAcCT1870iZrI+RB0Hu7xbWnoZ3VURmxBv+VxX7cRll6zfcgOhTVVtVFdgghuuHujtyPMMau3HiZUJVv4juzrSNCIS15LP2RfCFGJ6Xes6hoWXeGcVQOeJmbJ1s3E2prELzM31wkeEE26ftwfF7VF4yCt62ocEuc07zsycVKRRZEDBe9CEb9Ny+HW4dbrEX/DMvPGAE="},{"type":"tool_use","id":"toolu_014gjpHAaavY4696WA2WGDLS","name":"weather","input":{"location":"Florence, Italy"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":423,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":111,"service_tier":"standard"}}' + body: '{"model":"claude-sonnet-4-20250514","id":"msg_01FQjfLjtpK1x2eWB3ywwPbJ","type":"message","role":"assistant","content":[{"type":"thinking","thinking":"The user is asking for weather information for Florence, Italy. I have a weather function available 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.","signature":"EqoDCkYICxgCKkBbUa2TxSz9pQkxOwba97/2WFKQH64dFiW/RaX1YnwR4s07oEqouxOS9NZOQcdnFfAFkBBEYMzb5Xp+qQVDn9GyEgx4adxqDhij5J3e7UoaDBGn7f7OrRnK/4vzCiIwjQqY7nvv0XdkOhUBjSx1Dp1MH7Sp3mSTdXIjW6gRSnQ7HWLGFUs8E7E+aTaOOzJoKpECLa3BfMiu+gjqTQhuCXOBRVWEw4J/eIwoDQaYB144DQfeXuXx0gcNVrht/N14uqKoRsXL9jvYWzIR4rJRL+MuQabUVtgl/VR3HVy4D5ae8ZAYdp+HjAjd3bM/2EEBcbwgKO+YFYWklPB96wQhhjW0YVOQDYAlzcvuwEE1lkNXjPsqP19kaFmjh5P+J6JEff0gmtxfrk8uvxclz2Y28/8tTM+xniKlskCt+RA4EgYAWOMNSFCZ3pgEQwGkAyjzLUzju5pVsud9NpFkKKhGSWs1fk0LPKzVHgXy4xjQYdRsoDeLRJP3ZUwk9hGsGmVr64DZhvwawIXe5oatWkyZgqWt076HScmjWdKeGuQSL7pbz4JHGAE="},{"type":"tool_use","id":"toolu_01NNKFSpy3EbeMEUzD6yHGCV","name":"weather","input":{"location":"Florence, Italy"},"caller":{"type":"direct"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":424,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":110,"service_tier":"standard","inference_geo":"not_available"}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 3.529551375s + duration: 4.619574417s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1816 + content_length: 1830 host: "" - body: '{"max_tokens":4096,"messages":[{"content":[{"text":"What''s the weather in Florence, Italy?","type":"text"}],"role":"user"},{"content":[{"signature":"EqQDCkYICBgCKkD+6F3ZCJ3CoiNs91jnjkz/6xYefJjve+nbgY/runWHxGeBEg21iA6vjJVq7OceBDUlc+TFtcdi0WkUTiiBe0S5EgxwzS43u6Xgdl6soBAaDKzHQ0Z1Vrcz7LHSUCIwU6Qn02eS0AhhP5SpNdLRzSPWLN3oHDC3vhxs4wiNY4TkWpXa9nyIRhwUKNd5ud+uKosCJgjHGR/uLuODWUEGlJbrxAhr3xrQbciN/sDfV4tqfPOj+t5tm96khBOGNXXIO/SE3If0wlexbIGis17tQxnH6z0MRB7SiRzS6CjWzMK361uwv2pgUgy9lHKsbARcjtFCaCCrFpFLPO0lySJK0D60RmPO6DmFfkamYAcCT1870iZrI+RB0Hu7xbWnoZ3VURmxBv+VxX7cRll6zfcgOhTVVtVFdgghuuHujtyPMMau3HiZUJVv4juzrSNCIS15LP2RfCFGJ6Xes6hoWXeGcVQOeJmbJ1s3E2prELzM31wkeEE26ftwfF7VF4yCt62ocEuc07zsycVKRRZEDBe9CEb9Ny+HW4dbrEX/DMvPGAE=","thinking":"The user is asking for weather information for Florence, Italy. I have a weather function available that takes a location parameter. The user has provided \"Florence, Italy\" as the location. I have all the required parameters to make the function call.","type":"thinking"},{"id":"toolu_014gjpHAaavY4696WA2WGDLS","input":{"location":"Florence, Italy"},"name":"weather","cache_control":{"type":"ephemeral"},"type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_014gjpHAaavY4696WA2WGDLS","cache_control":{"type":"ephemeral"},"content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","cache_control":{"type":"ephemeral"},"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"}]}' + body: '{"max_tokens":4096,"messages":[{"content":[{"text":"What''s the weather in Florence, Italy?","type":"text"}],"role":"user"},{"content":[{"signature":"EqoDCkYICxgCKkBbUa2TxSz9pQkxOwba97/2WFKQH64dFiW/RaX1YnwR4s07oEqouxOS9NZOQcdnFfAFkBBEYMzb5Xp+qQVDn9GyEgx4adxqDhij5J3e7UoaDBGn7f7OrRnK/4vzCiIwjQqY7nvv0XdkOhUBjSx1Dp1MH7Sp3mSTdXIjW6gRSnQ7HWLGFUs8E7E+aTaOOzJoKpECLa3BfMiu+gjqTQhuCXOBRVWEw4J/eIwoDQaYB144DQfeXuXx0gcNVrht/N14uqKoRsXL9jvYWzIR4rJRL+MuQabUVtgl/VR3HVy4D5ae8ZAYdp+HjAjd3bM/2EEBcbwgKO+YFYWklPB96wQhhjW0YVOQDYAlzcvuwEE1lkNXjPsqP19kaFmjh5P+J6JEff0gmtxfrk8uvxclz2Y28/8tTM+xniKlskCt+RA4EgYAWOMNSFCZ3pgEQwGkAyjzLUzju5pVsud9NpFkKKhGSWs1fk0LPKzVHgXy4xjQYdRsoDeLRJP3ZUwk9hGsGmVr64DZhvwawIXe5oatWkyZgqWt076HScmjWdKeGuQSL7pbz4JHGAE=","thinking":"The user is asking for weather information for Florence, Italy. I have a weather function available 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_01NNKFSpy3EbeMEUzD6yHGCV","input":{"location":"Florence, Italy"},"name":"weather","cache_control":{"type":"ephemeral"},"type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_01NNKFSpy3EbeMEUzD6yHGCV","cache_control":{"type":"ephemeral"},"content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"model":"claude-sonnet-4-20250514","system":[{"text":"You are a helpful assistant","cache_control":{"type":"ephemeral"},"type":"text"}],"thinking":{"budget_tokens":4000,"type":"enabled"},"tool_choice":{"disable_parallel_tool_use":false,"type":"auto"},"tools":[{"input_schema":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"model":"claude-sonnet-4-20250514","id":"msg_011vbhawoMAwZzuGJEzTmfaK","type":"message","role":"assistant","content":[{"type":"text","text":"The current weather in Florence, Italy is 40°C (104°F). That''s quite hot! It''s a very warm day in Florence."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":549,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":34,"service_tier":"standard"}}' + body: '{"model":"claude-sonnet-4-20250514","id":"msg_01Ua5NLrjKTBhiNRiu2jkoCp","type":"message","role":"assistant","content":[{"type":"text","text":"The current weather in Florence, Italy is 40°C (104°F). That''s quite warm! It sounds like Florence is experiencing very hot weather right now."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":549,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":37,"service_tier":"standard","inference_geo":"not_available"}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.484467584s + duration: 1.74174825s diff --git a/providertests/testdata/TestAzureCommon/azure-gpt-5-mini/simple.yaml b/providertests/testdata/TestAzureCommon/azure-gpt-5-mini/simple.yaml index 5da1db780b478dc4e81658aec50c47fe17eb116a..38493646af038650b5a4d5f3c8dfb9503b04ad95 100644 --- a/providertests/testdata/TestAzureCommon/azure-gpt-5-mini/simple.yaml +++ b/providertests/testdata/TestAzureCommon/azure-gpt-5-mini/simple.yaml @@ -15,19 +15,19 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1205 + content_length: 1237 body: | - {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"protected_material_code":{"filtered":false,"detected":false},"protected_material_text":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"finish_reason":"stop","index":0,"logprobs":null,"message":{"annotations":[],"content":"Olá!","refusal":null,"role":"assistant"}}],"created":1761842954,"id":"chatcmpl-CWQ7mNYuvWWQimXnUMuiLAxVCoNRW","model":"gpt-5-mini-2025-08-07","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"system_fingerprint":null,"usage":{"completion_tokens":76,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":64,"rejected_prediction_tokens":0},"prompt_tokens":19,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":95}} + {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"protected_material_code":{"detected":false,"filtered":false},"protected_material_text":{"detected":false,"filtered":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"finish_reason":"stop","index":0,"logprobs":null,"message":{"annotations":[],"content":"Olá! (Também pode dizer \"Oi!\")","refusal":null,"role":"assistant"}}],"created":1773338551,"id":"chatcmpl-DIeedLK38HDSQxHhwI3VIErqbd4qK","model":"gpt-5-mini-2025-08-07","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"detected":false,"filtered":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"system_fingerprint":null,"usage":{"completion_tokens":147,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":128,"rejected_prediction_tokens":0},"prompt_tokens":19,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":166}} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.767307375s + duration: 3.189707208s diff --git a/providertests/testdata/TestAzureCommon/azure-gpt-5-mini/simple_streaming.yaml b/providertests/testdata/TestAzureCommon/azure-gpt-5-mini/simple_streaming.yaml index 65712590168cf2ab3200885551d428dbde22c5cf..55cb75e628ac49ff1372024e19d212e99ac85371 100644 --- a/providertests/testdata/TestAzureCommon/azure-gpt-5-mini/simple_streaming.yaml +++ b/providertests/testdata/TestAzureCommon/azure-gpt-5-mini/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -24,33 +24,17 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]} + data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"detected":false,"filtered":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]} - data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"zV0z0Nhm4vBJPe","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338554,"id":"chatcmpl-DIeegIrNy9WWawejS4BxAWXvSfvYD","model":"gpt-5-mini-2025-08-07","obfuscation":"EhAqKil2ZE9b9t","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"Olá"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"bAjQTaqR0x0H0","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"Olá"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338554,"id":"chatcmpl-DIeegIrNy9WWawejS4BxAWXvSfvYD","model":"gpt-5-mini-2025-08-07","obfuscation":"ZoWpqohbaOh0u","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"!"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"5SfhBKVU1ZExC0w","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"!"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338554,"id":"chatcmpl-DIeegIrNy9WWawejS4BxAWXvSfvYD","model":"gpt-5-mini-2025-08-07","obfuscation":"5hv4pnP8HC9jryK","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" ("},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"WkSeDVRMxOyjtP","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1773338554,"id":"chatcmpl-DIeegIrNy9WWawejS4BxAWXvSfvYD","model":"gpt-5-mini-2025-08-07","obfuscation":"7vERe2IKtr","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"tamb"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"pNiSihK5iZcs","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"ém"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"xECBxJwCJ42Ktg","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" pode"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"j5vLZXmCrsl","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" dizer"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"f6uQzkBbn5","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" \""},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"4OGZk82dzZvaF","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"Oi"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"aY4hMT7w5iE0gy","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"!\")"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"bX0oyMMZTDqs","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"IkpictBD1v","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"MQpC96hAsnU","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":148,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":128,"rejected_prediction_tokens":0},"prompt_tokens":19,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":167}} + data: {"choices":[],"created":1773338554,"id":"chatcmpl-DIeegIrNy9WWawejS4BxAWXvSfvYD","model":"gpt-5-mini-2025-08-07","obfuscation":"EwDY3uVnpJy","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":140,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":128,"rejected_prediction_tokens":0},"prompt_tokens":19,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":159}} data: [DONE] @@ -59,4 +43,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 2.602852625s + duration: 2.195586958s diff --git a/providertests/testdata/TestAzureCommon/azure-gpt-5-mini/tool.yaml b/providertests/testdata/TestAzureCommon/azure-gpt-5-mini/tool.yaml index f525af548988831a1b21b5bd3e3973b83755f039..b0edc83e3d659cff3f3781ac078e09f077a30ea5 100644 --- a/providertests/testdata/TestAzureCommon/azure-gpt-5-mini/tool.yaml +++ b/providertests/testdata/TestAzureCommon/azure-gpt-5-mini/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -24,13 +24,13 @@ interactions: proto_minor: 0 content_length: 1050 body: | - {"choices":[{"content_filter_results":{},"finish_reason":"tool_calls","index":0,"logprobs":null,"message":{"annotations":[],"content":null,"refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"id":"call_Qfrepi6GMFE2a9QE9JiXptZt","type":"function"}]}}],"created":1761842959,"id":"chatcmpl-CWQ7rrdJOXqm8pE5y29e3exiAHJe5","model":"gpt-5-mini-2025-08-07","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"system_fingerprint":null,"usage":{"completion_tokens":26,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":0,"rejected_prediction_tokens":0},"prompt_tokens":145,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":171}} + {"choices":[{"content_filter_results":{},"finish_reason":"tool_calls","index":0,"logprobs":null,"message":{"annotations":[],"content":null,"refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"id":"call_edU4N20ezA2f2AsnHNqoYiLu","type":"function"}]}}],"created":1773338556,"id":"chatcmpl-DIeeiYz1XOQPCPMnuXEBGDSFAyy29","model":"gpt-5-mini-2025-08-07","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"detected":false,"filtered":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"system_fingerprint":null,"usage":{"completion_tokens":26,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":0,"rejected_prediction_tokens":0},"prompt_tokens":145,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":171}} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.042717709s + duration: 1.998598583s - id: 1 request: proto: HTTP/1.1 @@ -38,26 +38,26 @@ interactions: proto_minor: 1 content_length: 715 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_Qfrepi6GMFE2a9QE9JiXptZt","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_Qfrepi6GMFE2a9QE9JiXptZt","role":"tool"}],"model":"gpt-5-mini","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_edU4N20ezA2f2AsnHNqoYiLu","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_edU4N20ezA2f2AsnHNqoYiLu","role":"tool"}],"model":"gpt-5-mini","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1434 + content_length: 1255 body: | - {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"protected_material_text":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"finish_reason":"stop","index":0,"logprobs":null,"message":{"annotations":[],"content":"Current temperature in Florence, Italy: 40 °C (104 °F).\n\nThat's very hot — consider staying hydrated, avoiding prolonged sun exposure or strenuous outdoor activity during midday, and checking local heat warnings. Would you like an hourly forecast, a 7-day outlook, or any other details?","refusal":null,"role":"assistant"}}],"created":1761842961,"id":"chatcmpl-CWQ7t0TV6CZZN7q9HDxlkG8FMHbTN","model":"gpt-5-mini-2025-08-07","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"system_fingerprint":null,"usage":{"completion_tokens":261,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":192,"rejected_prediction_tokens":0},"prompt_tokens":176,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":437}} + {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"protected_material_code":{"detected":false,"filtered":false},"protected_material_text":{"detected":false,"filtered":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"finish_reason":"stop","index":0,"logprobs":null,"message":{"annotations":[],"content":"Current temperature in Florence, Italy is about 40°C (104°F). That's very hot — stay hydrated, avoid prolonged sun exposure during midday, wear light clothing and sunscreen, and seek air-conditioned or shaded places. Would you like an hourly forecast or the next few days' outlook?","refusal":null,"role":"assistant"}}],"created":1773338558,"id":"chatcmpl-DIeekTBGgEbhq9sATnlEa4NSsW3WQ","model":"gpt-5-mini-2025-08-07","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{}}],"system_fingerprint":null,"usage":{"completion_tokens":259,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":192,"rejected_prediction_tokens":0},"prompt_tokens":176,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":435}} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 6.188168959s + duration: 3.48047525s diff --git a/providertests/testdata/TestAzureCommon/azure-gpt-5-mini/tool_streaming.yaml b/providertests/testdata/TestAzureCommon/azure-gpt-5-mini/tool_streaming.yaml index f40d45c339f4a8e838b4b2420adc871ee7b04456..d3310ee6d4b7351018deb23528d9a077ae27a54f 100644 --- a/providertests/testdata/TestAzureCommon/azure-gpt-5-mini/tool_streaming.yaml +++ b/providertests/testdata/TestAzureCommon/azure-gpt-5-mini/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -24,29 +24,29 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]} + data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"detected":false,"filtered":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]} - data: {"choices":[{"content_filter_results":{},"delta":{"content":null,"refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"","name":"weather"},"id":"call_WFbjblhLkFWD9MLJyBZIYfa8","index":0,"type":"function"}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"vJXSYcBaeCSjS","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":null,"refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"","name":"weather"},"id":"call_Uun1CuQcKMnJaasyIjDRSvNA","index":0,"type":"function"}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338562,"id":"chatcmpl-DIeeoJOzj2DC8PUCkMyDf8yzUi3dE","model":"gpt-5-mini-2025-08-07","obfuscation":"KzUkXudQz5RDs","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"b9Y","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338562,"id":"chatcmpl-DIeeoJOzj2DC8PUCkMyDf8yzUi3dE","model":"gpt-5-mini-2025-08-07","obfuscation":"kLe","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"location"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"a8RF0QYq8yeFA2","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"location"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338562,"id":"chatcmpl-DIeeoJOzj2DC8PUCkMyDf8yzUi3dE","model":"gpt-5-mini-2025-08-07","obfuscation":"WDT4pDqVpis4rM","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\":\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"m","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\":\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338562,"id":"chatcmpl-DIeeoJOzj2DC8PUCkMyDf8yzUi3dE","model":"gpt-5-mini-2025-08-07","obfuscation":"5","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"Flor"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"Ym","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"Flor"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338562,"id":"chatcmpl-DIeeoJOzj2DC8PUCkMyDf8yzUi3dE","model":"gpt-5-mini-2025-08-07","obfuscation":"CO","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"ence"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"et","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"ence"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338562,"id":"chatcmpl-DIeeoJOzj2DC8PUCkMyDf8yzUi3dE","model":"gpt-5-mini-2025-08-07","obfuscation":"At","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":","},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"8zW5E","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":","},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338562,"id":"chatcmpl-DIeeoJOzj2DC8PUCkMyDf8yzUi3dE","model":"gpt-5-mini-2025-08-07","obfuscation":"bKrJc","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":" Italy"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":" Italy"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338562,"id":"chatcmpl-DIeeoJOzj2DC8PUCkMyDf8yzUi3dE","model":"gpt-5-mini-2025-08-07","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\"}"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"3Li","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\"}"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338562,"id":"chatcmpl-DIeeoJOzj2DC8PUCkMyDf8yzUi3dE","model":"gpt-5-mini-2025-08-07","obfuscation":"LrA","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"OdNH","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0,"logprobs":null}],"created":1773338562,"id":"chatcmpl-DIeeoJOzj2DC8PUCkMyDf8yzUi3dE","model":"gpt-5-mini-2025-08-07","obfuscation":"yOL4","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"63Mqj9Hvoz","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":154,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":128,"rejected_prediction_tokens":0},"prompt_tokens":145,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":299}} + data: {"choices":[],"created":1773338562,"id":"chatcmpl-DIeeoJOzj2DC8PUCkMyDf8yzUi3dE","model":"gpt-5-mini-2025-08-07","obfuscation":"mkQFM6Mxl6iWl","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":26,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":0,"rejected_prediction_tokens":0},"prompt_tokens":145,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":171}} data: [DONE] @@ -55,7 +55,7 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 3.996220958s + duration: 1.535163416s - id: 1 request: proto: HTTP/1.1 @@ -63,14 +63,14 @@ interactions: proto_minor: 1 content_length: 769 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_WFbjblhLkFWD9MLJyBZIYfa8","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_WFbjblhLkFWD9MLJyBZIYfa8","role":"tool"}],"model":"gpt-5-mini","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_Uun1CuQcKMnJaasyIjDRSvNA","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_Uun1CuQcKMnJaasyIjDRSvNA","role":"tool"}],"model":"gpt-5-mini","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -79,157 +79,111 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]} + data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{}}]} - data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"31ohoZjadUIMY7","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"YjanfjgBl3EHUt","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"Current"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"1Fc7UNTIF","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"Current"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"meHYjwp4i","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" temperature"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"aCxc","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" temperature"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"dc4w","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"T9GNQ70Z8hNaE","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" in"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"k8WF6Yjpim42U","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Florence"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"opSu26D","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" Florence"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"bQGurnM","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"TsN8SM5lv7KfDNs","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"F6vDCajis1n2rq0","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Italy"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"tYpH4n7zPk","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" Italy"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"gYnT1tMHK3","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":":"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"Yg5iXL3dpwakuRQ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" is"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"ts5qAGHVgwOIx","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" "},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"vfqgpOdnPhVUT5B","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" "},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"IBUWjJWuWfEbHkX","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"40"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"Gzg6vg5reXdPKK","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"40"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"MNLd49779ZY7NZ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" °"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"nCl9nrNZVKHIX6","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"°C"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"RWYlqCn69d0s0c","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"C"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"hFyT92OEAI8u1YX","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"."},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"TWUycSrcklgTeqW","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" ("},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"gN0BfZuyaFCZ3t","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" That"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"nZV2WuJ1lEy","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"about"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"Q4tjkF1rPur","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"’s"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"xoUjDl8XKypPOP","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" "},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"veP3crKB22a9YOr","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" very"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"1eOnBfdrSKO","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"104"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"GRj7GGqlQUcGX","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" hot"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"As9iA0A586WA","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" °"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"7c0tVnsjlvO7Mu","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" —"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"KtbiBy6taA0AEk","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"F"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"xVC0jWLFWlwPfNn","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" stay"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"ZThtHJc7gUw","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":").\n\n"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"PDYACeJXKz","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" hydrated"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"4QDJMs7","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"That's"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"ZqijVzfdL3","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"x371RvpP7MgzmB1","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" very"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"wNFG8aWqZot","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" avoid"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"QVbbbt23zG","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hot"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"ZfuqAqqCtaq0","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" prolonged"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"ogjtwg","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" —"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"HHtmcJuOfgVmdK","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" sun"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"IER1Q4tYzJdd","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" consider"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"yxzr7Ul","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" exposure"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"BvOQS6L","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":":\n"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"U0KEaVVODjFGs","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"P49FWiFOtltAYGU","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"-"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"5uwIrMW93ii4Hxg","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" and"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"vZYByDq7TJrt","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Stay"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"1eU1vpVoqd3","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" seek"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"NFb9ZyqGytJ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hydrated"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"kUW29Q2","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" cool"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"hzj4e5K51bq","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" and"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"wF52budGGDiH","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"/sh"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"jIZJPr0uM4K4s","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" seek"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"pC1dhq0FofE","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"aded"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"UXR8Nv7cXnxs","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" shade"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"kJvkcB9GTA","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" places"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"YkGIs8cli","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"/"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"ICTddIPYaNCIZOU","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"."},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"5RzmCbbm30GfiiI","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"air"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"CR8UnJZQra82V","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" Would"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"PjR5PHsk0J","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" conditioning"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"Hl8","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" you"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"nB6vDr6RzESm","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"\n"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"21xaXflEGZ4RlT","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" like"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"E7D2D2fMuP2","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"-"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"gDNzFKt7ZJHZt31","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" the"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"KJIF57lgh2jY","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Limit"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"1LY629BG3r","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" hourly"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"CFRI0BzNI","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" strenuous"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"dtEDq9","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" forecast"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"5GNi7lj","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" outdoor"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"AhhmGCNC","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"5HWh89WutsKzRIW","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" activity"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"vgsiQ07","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" the"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"Rsv68YvmAnHw","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" during"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"qmzgc0rTP","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" next"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"rFwjUvbmmwm","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" midday"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"r3CW8fNP1","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" few"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"jimSaMsxOq3c","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"\n"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"eJguL96SizX37V","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" days"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"hrPLTltgQR9","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"-"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"yRsKXiEmvIpPNGM","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"tvhofxefaSRSN38","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Wear"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"6v5D9hep8DT","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" or"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"hIhoDECV5m92f","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" light"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"GjAhTZFdKQ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" heat"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"T13o2E5W5YA","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" clothing"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"6eI60a6","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"-s"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"ddpyVshiqOX73G","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"odmBjOeXSYfqO0E","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"afety"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"ZVptHp7yM6S","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" a"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"xZpDTnNUgtqoGt","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" tips"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"As8OS3Rb6DA","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hat"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"nzJhcXAx70KX","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"?"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"dRoyHgiaMYSaAjU","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"26Ef1iOSqin82Oh","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"8tG4B7dqpJ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" and"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"tyNnDq1fevj3","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" sunscreen"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"7HNTYO","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"\n\n"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"cfFJRATLVYff","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"Would"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"J41N8hHrGPZ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" you"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"b8WyGVBkx6tm","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" like"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"7EApxYjDgSu","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" a"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"UZd5rACfceOB6h","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" short"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"j0uor3Cu6D","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"-term"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"a96BZJ6ceRZ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" forecast"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"QeOqCTz","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"2z9eXOYEWBR3kUj","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hourly"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"Cgi24D3mW","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" temps"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"9cT8DF2ga8","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"WiMLdceuybAlj9c","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" or"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"cnNrlBkMTfxGM","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" advice"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"OH8ufdCMF","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" for"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"XDcxeossOiFm","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" travel"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"t9NoOZkZe","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"/out"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"WIUoUD8qTMwU","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"door"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"4Liibim1NHhm","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" plans"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"eYY3eZAgQf","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"?"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"7AUAgW0JUU6rcyY","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"q9zzoCPBoE","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - - data: {"choices":[],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"fzJC7PzN3I","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":210,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":128,"rejected_prediction_tokens":0},"prompt_tokens":176,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":386}} + data: {"choices":[],"created":1773338563,"id":"chatcmpl-DIeepvwHUPC8RnAnTQe8YvtXfdsON","model":"gpt-5-mini-2025-08-07","obfuscation":"AiLL4Gq8sn","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":187,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":128,"rejected_prediction_tokens":0},"prompt_tokens":176,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":363}} data: [DONE] @@ -238,4 +192,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 4.104046292s + duration: 2.131473625s diff --git a/providertests/testdata/TestAzureCommon/azure-grok-3-mini/simple.yaml b/providertests/testdata/TestAzureCommon/azure-grok-3-mini/simple.yaml index d6e7b1804481c39f4f0da417891cf8557c142ad2..2655a9cb4ac2711a3d7371405311aeef7e9fc9cd 100644 --- a/providertests/testdata/TestAzureCommon/azure-grok-3-mini/simple.yaml +++ b/providertests/testdata/TestAzureCommon/azure-grok-3-mini/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: "{\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"protected_material_code\":{\"filtered\":false,\"detected\":false},\"protected_material_text\":{\"filtered\":false,\"detected\":false},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"finish_reason\":\"stop\",\"index\":0,\"logprobs\":null,\"message\":{\"content\":\"Hi! In Portuguese, \\\"hi\\\" is commonly said as \\\"oi\\\". \U0001F60A\",\"reasoning_content\":\"First, the user asked me to \\\"Say hi in Portuguese.\\\" So, I need to respond in a way that's helpful and directly addresses the request.\\n\\nThe most common way to say \\\"hi\\\" in Portuguese is \\\"oi\\\". That's informal and widely used. There's also \\\"olá\\\" which is more formal, similar to \\\"hello\\\". Since the user said \\\"hi\\\", which is casual, \\\"oi\\\" might be more appropriate. But I should confirm if I need to be more precise.\\n\\nAs a helpful assistant, I could provide a bit more context to make the response educational. For example, I could say, \\\"Hi! In Portuguese, 'hi' is commonly said as 'oi'.\\\" This way, I'm not just giving a one-word answer but engaging more.\\n\\nMy system prompt is: \\\"You are a helpful assistant.\\\" So, I should aim to be friendly, accurate, and engaging.\\n\\nPossible responses:\\n\\n1. Simple: \\\"Oi!\\\" – This directly says \\\"hi\\\" in Portuguese.\\n\\n2. More informative: \\\"Sure, in Portuguese, 'hi' is 'oi'.\\\"\\n\\n3. Friendly and engaging: \\\"Hello! If you want to say 'hi' in Portuguese, it's 'oi'.\\\"\\n\\nSince the user said \\\"Say hi in Portuguese,\\\" they might expect me to say it, so I could start with \\\"Oi!\\\" and then explain.\\n\\nTo make it conversational, I could say, \\\"Hi there! In Portuguese, that would be 'oi'.\\\"\\n\\nI should ensure the response is in English unless specified, as the user asked in English. So, I'll respond in English but include the Portuguese word.\\n\\nFinally, keep it concise but helpful.\\n\\nCrafted response: \\\"Hi! In Portuguese, 'hi' is commonly said as 'oi'.\\\"\",\"refusal\":null,\"role\":\"assistant\",\"tool_calls\":null},\"stop_reason\":null}],\"created\":1761842977,\"id\":\"4b64bbd0-309b-4f3d-9821-14274e330bb1_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion\",\"prompt_filter_results\":[{\"prompt_index\":0,\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"jailbreak\":{\"filtered\":false,\"detected\":false},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}}}],\"usage\":{\"audio_prompt_tokens\":0,\"completion_tokens\":17,\"completion_tokens_details\":{\"accepted_prediction_tokens\":0,\"audio_tokens\":0,\"reasoning_tokens\":357,\"rejected_prediction_tokens\":0},\"num_sources_used\":0,\"prompt_tokens\":20,\"prompt_tokens_details\":{\"audio_tokens\":0,\"cached_tokens\":0,\"image_tokens\":0,\"text_tokens\":20},\"total_tokens\":394}}\n" + body: "{\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"protected_material_code\":{\"filtered\":false,\"detected\":false},\"protected_material_text\":{\"filtered\":false,\"detected\":false},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"finish_reason\":\"stop\",\"index\":0,\"logprobs\":null,\"message\":{\"content\":\"Oi! That's \\\"hi\\\" in Portuguese. \U0001F60A\",\"reasoning_content\":\"First, the user asked me to \\\"Say hi in Portuguese.\\\" So, I need to respond in a helpful and friendly manner, as per my system prompt.\\n\\nThe translation of \\\"hi\\\" in Portuguese is \\\"oi\\\" or \\\"olá\\\". \\\"Oi\\\" is more informal, like \\\"hi\\\", and \\\"olá\\\" is more formal, like \\\"hello\\\". Since the user said \\\"hi\\\", which is casual, I should use \\\"oi\\\" to match the tone.\\n\\nTo be more engaging, I could say something like \\\"Hi in Portuguese is 'oi'!\\\" or just directly say \\\"Oi!\\\" But since the user said \\\"Say hi in Portuguese\\\", they might want me to greet them in Portuguese.\\n\\nRe-reading the query: \\\"Say hi in Portuguese.\\\" This could mean two things:\\n\\n1. Translate \\\"hi\\\" to Portuguese and tell them what it is.\\n\\n2. Greet them by saying \\\"hi\\\" in Portuguese.\\n\\nGiven that it's a direct command, I think the best response is to greet them in Portuguese. So, I could start with \\\"Oi!\\\" or \\\"Olá!\\\".\\n\\nTo be more helpful, I could combine both: greet them and then explain if needed. But I should keep it simple.\\n\\nMy response should be in English unless specified, but since they're asking to say something in Portuguese, I can include that.\\n\\nPossible responses:\\n\\n- \\\"Oi!\\\" (simple and direct)\\n\\n- \\\"Hi in Portuguese is 'oi'.\\\"\\n\\n- \\\"Olá! That's how you say hi in Portuguese.\\\"\\n\\nTo make it more conversational: \\\"Sure, in Portuguese, 'hi' is 'oi'! Oi!\\\"\\n\\nRemember, I'm an AI assistant, so I should be polite and engaging.\\n\\nFinalizing my response: I'll greet them in Portuguese and then confirm in English to ensure clarity.\\n\\nSo, something like: \\\"Oi! That means 'hi' in Portuguese.\\\"\\n\\nOr, to keep it concise: \\\"Oi!\\\"\\n\\nBut adding a bit more might be better for helpfulness.\",\"refusal\":null,\"role\":\"assistant\",\"tool_calls\":null},\"stop_reason\":null}],\"created\":1773338566,\"id\":\"98198c66-3ec6-46f9-92d3-bbc2dd8cfdca_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion\",\"prompt_filter_results\":[{\"prompt_index\":0,\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"jailbreak\":{\"filtered\":false,\"detected\":false},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}}}],\"usage\":{\"audio_prompt_tokens\":0,\"completion_tokens\":11,\"completion_tokens_details\":{\"accepted_prediction_tokens\":0,\"audio_tokens\":0,\"reasoning_tokens\":396,\"rejected_prediction_tokens\":0},\"num_sources_used\":0,\"prompt_tokens\":20,\"prompt_tokens_details\":{\"audio_tokens\":0,\"cached_tokens\":0,\"image_tokens\":0,\"text_tokens\":20},\"total_tokens\":427}}\n" headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 3.243653042s + duration: 2.597864042s diff --git a/providertests/testdata/TestAzureCommon/azure-grok-3-mini/simple_streaming.yaml b/providertests/testdata/TestAzureCommon/azure-grok-3-mini/simple_streaming.yaml index 9a409a767e75434f71326473048f0cf43cbff141..6a0ee05e1277a04509c2d4e98b131fb3fff0dae4 100644 --- a/providertests/testdata/TestAzureCommon/azure-grok-3-mini/simple_streaming.yaml +++ b/providertests/testdata/TestAzureCommon/azure-grok-3-mini/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -23,10 +23,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"choices\":[],\"created\":0,\"id\":\"\",\"model\":\"\",\"object\":\"\",\"prompt_filter_results\":[{\"prompt_index\":0,\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"jailbreak\":{\"filtered\":false,\"detected\":false},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}}}]}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"First\",\"role\":\"assistant\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" user\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" asked\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" me\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" to\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Say\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" hi\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\\"\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" So\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" I\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" need\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" to\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" respond\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" by\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" greeting\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\n\\n\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"The\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" word\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" for\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"hi\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\"\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" is\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"oi\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\".\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" It's\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" a\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" common\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" informal\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" greeting\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" I\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" should\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" confirm\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" if\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" this\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" is\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" correct\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Yes\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"oi\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\"\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" means\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"hi\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\"\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" or\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"hello\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\"\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Brazilian\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" which\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" is\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" most\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" widely\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" spoken\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" variant\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" In\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" European\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"ol\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"á\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\"\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" is\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" also\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" used\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" but\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"oi\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\"\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" is\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" universally\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" understood\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\n\\n\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"To\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" be\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" helpful\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" I\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" should\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" keep\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" it\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" simple\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" and\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" direct\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" since\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" user\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" just\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" said\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Say\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" hi\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\\"\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" I\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" don't\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" want\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" to\"},\"index\":0}],\"created\":1761842981,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" over\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"com\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"plicate\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" it\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\n\\n\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"As\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" an\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" AI\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" I\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" can\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" add\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" a\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" bit\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" of\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" friendliness\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" For\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" example\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" I\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" could\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" say\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Hi\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" is\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" '\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"oi\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"'\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"!\\\"\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" or\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" something\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" similar\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" to\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" make\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" it\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" engaging\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\n\\n\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Possible\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" responses\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\":\\n\\n\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"-\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Oi\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"!\\\"\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" (\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"just\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" saying\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" it\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" directly\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\")\\n\\n\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"-\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Hello\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" is\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" '\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"oi\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"'\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\\"\\n\\n\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"-\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Sure\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" '\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"hi\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"'\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" is\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" '\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"oi\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"'\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\\"\\n\\n\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"I\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" should\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" ensure\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" my\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" response\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" is\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" English\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" initially\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" to\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" explain\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" then\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" provide\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" word\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" as\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" user\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" asked\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" English\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\n\\n\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"The\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" user\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" said\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Say\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" hi\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\\\"\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" which\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" could\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" mean\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" to\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" utter\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" greeting\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" So\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" perhaps\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" just\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" responding\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" with\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Oi\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"!\\\"\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" would\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" suffice\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" But\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" to\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" be\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" more\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" informative\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" I\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" could\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" say\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Hi\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"!\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" In\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1761842982,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" it's\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" '\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"oi\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"'\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\\"\\n\\n\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Re\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"-reading\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" user's\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" message\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\":\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Say\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" hi\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\\"\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" It's\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" a\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" command\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" so\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" I\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" should\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" directly\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" say\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" greeting\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\n\\n\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"In\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" context\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" of\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" being\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" a\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" helpful\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" assistant\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" I\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" can\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" make\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" it\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" conversational\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" For\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" instance\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\":\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Hello\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"!\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" If\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" you\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" want\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" to\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" say\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" '\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"hi\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"'\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" it's\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" '\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"oi\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"'\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\\"\\n\\n\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Finally\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" end\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" with\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" greeting\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" to\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" make\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" it\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" natural\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\n\\n\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Structure\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" my\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" response\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\":\\n\\n\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"1\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" A\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"cknowledge\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" request\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\n\\n\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"2\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Provide\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" information\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\n\\n\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"3\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Perhaps\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" add\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" a\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" fun\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" fact\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" or\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" ask\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" if\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" they\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" need\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" more\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" help\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" but\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" keep\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" it\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" concise\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\n\\n\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Response\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" idea\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\":\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Sure\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" '\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"hi\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"'\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" is\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" '\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"oi\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"'!\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Oi\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"!\\\"\\n\\n\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"This\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" way\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" I'm\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" helpful\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" and\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" engaging\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\n\\n\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Remember\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" my\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" system\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" prompt\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\":\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"You\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" are\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" a\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" helpful\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" assistant\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\\"\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" So\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" prioritize\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" being\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" helpful\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" and\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" accurate\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\"Sure\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\",\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\" \\\"\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\"hi\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\"\\\"\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\" in\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\" Portuguese\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\" is\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\" \\\"\"},\"index\":0}],\"created\":1761842983,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\"oi\"},\"index\":0}],\"created\":1761842984,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\"\\\"!\"},\"index\":0}],\"created\":1761842984,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\" \\n\\n\"},\"index\":0}],\"created\":1761842984,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\"Oi\"},\"index\":0}],\"created\":1761842984,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\"!\"},\"index\":0}],\"created\":1761842984,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\" \"},\"index\":0}],\"created\":1761842984,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\"\U0001F60A\"},\"index\":0}],\"created\":1761842984,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{},\"finish_reason\":\"stop\",\"index\":0}],\"created\":1761842984,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[],\"created\":1761842984,\"id\":\"c56398c4-725e-4a7d-8227-23af452c6547_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\",\"usage\":{\"completion_tokens\":16,\"completion_tokens_details\":{\"accepted_prediction_tokens\":0,\"audio_tokens\":0,\"reasoning_tokens\":431,\"rejected_prediction_tokens\":0},\"num_sources_used\":0,\"prompt_tokens\":20,\"prompt_tokens_details\":{\"audio_tokens\":0,\"cached_tokens\":0,\"image_tokens\":0,\"text_tokens\":20},\"total_tokens\":467}}\n\ndata: [DONE]\n\n" + body: "data: {\"choices\":[],\"created\":0,\"id\":\"\",\"model\":\"\",\"object\":\"\",\"prompt_filter_results\":[{\"prompt_index\":0,\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"jailbreak\":{\"filtered\":false,\"detected\":false},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}}}]}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"First\",\"role\":\"assistant\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" user\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" asked\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" me\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" to\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Say\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" hi\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\\"\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" I\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" need\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" to\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" respond\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" a\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" helpful\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" and\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" accurate\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" way\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\n\\n\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"The\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" phrase\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"hi\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\"\"},\"index\":0}],\"created\":1773338568,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" English\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" is\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" a\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" casual\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" greeting\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" In\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" equivalent\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" casual\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" greeting\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" is\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"oi\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" or\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"ol\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"á\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\".\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Oi\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" is\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" more\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" informal\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" like\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"hi\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\",\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" while\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"ol\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"á\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" is\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" a\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" bit\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" more\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" formal\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" like\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"hello\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\".\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Since\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" user\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" said\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"hi\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\",\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" I\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" should\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" use\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" informal\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" version\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" to\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" match\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" tone\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\n\\n\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"I\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" should\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" confirm\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" language\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\":\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" There\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" are\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" two\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" main\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" variants\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\":\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" European\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" and\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Brazilian\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Oi\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" and\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"ol\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"á\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" are\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" used\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" both\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" but\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"oi\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" is\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" very\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" common\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Brazil\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" and\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"ol\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"á\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" might\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" be\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" used\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" more\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" formally\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Europe\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Since\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" user\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" didn't\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" specify\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" I'll\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" go\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" with\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" a\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" general\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" response\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Perhaps\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" I\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" can\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" use\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"oi\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"\\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" as\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" it's\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" widely\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" understood\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\n\\n\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"As\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" a\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" helpful\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" assistant\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" I\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" should\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" provide\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" translation\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" directly\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" and\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" maybe\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" add\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" a\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" bit\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" more\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" context\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" to\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" make\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" it\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" educational\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" For\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" example\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" I\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" could\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" say\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Hi\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" is\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" '\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"oi\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"'\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Or\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" to\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" make\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" it\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" more\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" engaging\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Olá\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"!\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" That's\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" '\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"hi\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"'\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\\"\\n\\n\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"The\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" user\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" said\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Say\"},\"index\":0}],\"created\":1773338569,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" hi\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\\\"\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" which\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" is\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" an\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" imperative\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" so\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" they\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" might\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" want\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" me\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" to\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" greet\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" them\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" So\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" instead\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" of\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" just\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" stating\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" word\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" I\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" should\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" use\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" it\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" a\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" sentence\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\n\\n\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Possible\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" responses\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\":\\n\\n\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"-\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Simply\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\":\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Oi\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"!\\\"\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" (\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"which\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" means\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Hi\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"!\\\")\\n\\n\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"-\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Or\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\":\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Hi\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"!\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" In\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" it's\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" '\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"oi\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"'\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\\"\\n\\n\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"To\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" be\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" more\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" interactive\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\":\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" \\\"\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Olá\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"!\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" I'm\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" saying\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" hi\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\\"\\n\\n\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Since\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" my\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" system\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" prompt\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" is\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" to\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" be\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" a\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" helpful\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" assistant\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" I\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" should\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" ensure\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" response\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" is\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" clear\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" and\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" directly\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" addresses\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" query\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\n\\n\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Finally\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\",\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" keep\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" it\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" concise\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" and\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" friendly\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\\n\\n\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\"Response\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" idea\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\":\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Start\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" with\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" the\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" greeting\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" Portuguese\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" and\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" then\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" confirm\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" in\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\" English\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{\"reasoning_content\":\".\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\"Oi\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\"!\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\" That's\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\" \\\"\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\"hi\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\"\\\"\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\" in\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\" Portuguese\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\".\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\" \"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{\"hate\":{\"filtered\":false,\"severity\":\"safe\"},\"self_harm\":{\"filtered\":false,\"severity\":\"safe\"},\"sexual\":{\"filtered\":false,\"severity\":\"safe\"},\"violence\":{\"filtered\":false,\"severity\":\"safe\"}},\"delta\":{\"content\":\"\U0001F60A\"},\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[{\"content_filter_results\":{},\"delta\":{},\"finish_reason\":\"stop\",\"index\":0}],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\"}\n\ndata: {\"choices\":[],\"created\":1773338570,\"id\":\"aff67c9b-9a3a-4030-9b6c-696ac1afb1d5_sidecar\",\"model\":\"grok-3-mini-high\",\"object\":\"chat.completion.chunk\",\"system_fingerprint\":\"fp_d33f0040b9\",\"usage\":{\"completion_tokens\":11,\"completion_tokens_details\":{\"accepted_prediction_tokens\":0,\"audio_tokens\":0,\"reasoning_tokens\":365,\"rejected_prediction_tokens\":0},\"num_sources_used\":0,\"prompt_tokens\":20,\"prompt_tokens_details\":{\"audio_tokens\":0,\"cached_tokens\":0,\"image_tokens\":0,\"text_tokens\":20},\"total_tokens\":396}}\n\ndata: [DONE]\n\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 408.646834ms + duration: 446.548583ms diff --git a/providertests/testdata/TestAzureCommon/azure-grok-3-mini/tool.yaml b/providertests/testdata/TestAzureCommon/azure-grok-3-mini/tool.yaml index 801f01c67fe6077c9380f9e14e3f5a0719051713..36f47dbadd1872b71424202fdf11142170ecec67 100644 --- a/providertests/testdata/TestAzureCommon/azure-grok-3-mini/tool.yaml +++ b/providertests/testdata/TestAzureCommon/azure-grok-3-mini/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -25,13 +25,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"choices":[{"content_filter_results":{},"finish_reason":"tool_calls","index":0,"logprobs":null,"message":{"content":"","reasoning_content":"First, the user is asking about the weather in Florence, Italy. I have an available function called \"weather\" that can get weather information for a location.\n\nThe function description is: \"Get weather information for a location\". The parameters require a \"location\" which is a string describing the city.\n\nThe user provided \"Florence, Italy\", which clearly specifies the city and country. This matches the required parameter for the \"weather\" function.\n\nAll required parameters are provided and inferable. The location is \"Florence, Italy\", so I can use that directly.\n\nI should call the function if it can address the query. Here, it directly can, so I need to trigger a function call.\n\nThe function call format is specific: use \u003cfunction_call\u003e tags with JSON inside, like \u003cfunction_call\u003e{\"action\": \"function_name\", \"action_input\": {\"parameter\": \"argument\"}}\u003c/function_call\u003e.\n\nFor this, the action is \"weather\", and the action_input should have \"location\" with the value \"Florence, Italy\".\n\nI don't need to add any extra response text unless necessary. The instructions say to keep responses clear and not verbose, so I should just make the function call if that's the next step.\n\nThis is a single-turn query that can be handled by the function, so I'll call it directly.\n\nFinal decision: Call the \"weather\" function with the location \"Florence, Italy\".","refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","call_id":null,"name":"weather"},"id":"call_03413597","type":"function"}]},"stop_reason":null}],"created":1761842984,"id":"0a9e19c6-4d29-4a05-a60d-2923fdd75f2f_sidecar","model":"grok-3-mini-high","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"usage":{"audio_prompt_tokens":0,"completion_tokens":27,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":281,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":288,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":288},"total_tokens":596}} + {"choices":[{"content_filter_results":{},"finish_reason":"tool_calls","index":0,"logprobs":null,"message":{"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.\n\nThe function description is: \"Get weather information for a location\". The parameters require a \"location\" which is a string, described as \"the city\".\n\nThe user provided \"Florence, Italy\". This seems to specify both the city and the country, which should be fine since the parameter is just \"location\" and it's a string. I can use \"Florence, Italy\" as the location string.\n\nAll required parameters are provided: the location is given. No missing or unclear parts.\n\nI should call the function if it can address the query. Here, it directly matches, so I need to trigger a function call.\n\nThe function call format is: \u003cfunction_call\u003e{\"action\": \"function_name\", \"action_input\": {\"parameter\": \"argument\"}}\u003c/function_call\u003e\n\nFor this, the action is \"weather\", and the action_input should have \"location\" with the value \"Florence, Italy\".\n\nSo, the function call should be: \u003cfunction_call\u003e{\"action\": \"weather\", \"action_input\": {\"location\": \"Florence, Italy\"}}\u003c/function_call\u003e\n\nMy response should only contain this function call if I'm deciding to call a function. The instructions say: \"You are only permitted to use the \u003cfunction_call\u003e tag in your response only if you have made the decision to call a function.\" And in this case, I have.\n\nI shouldn't add any other text unless necessary, like if I need clarification, but here I don't.\n\nFinally, after calling the function, in a multi-turn conversation, I might need to handle the response, but for now, this is the first step to advance the request.","refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","call_id":null,"name":"weather"},"id":"call_88313407","type":"function"}]},"stop_reason":null}],"created":1773338570,"id":"0814c38b-a2e1-445c-8112-276b69d68a3a_sidecar","model":"grok-3-mini-high","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"usage":{"audio_prompt_tokens":0,"completion_tokens":27,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":356,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":288,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":288},"total_tokens":671}} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.080312709s + duration: 2.533727166s - id: 1 request: proto: HTTP/1.1 @@ -39,14 +39,14 @@ interactions: proto_minor: 1 content_length: 673 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_03413597","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_03413597","role":"tool"}],"model":"grok-3-mini","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"}]}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_88313407","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_88313407","role":"tool"}],"model":"grok-3-mini","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.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -56,10 +56,10 @@ interactions: content_length: -1 uncompressed: true body: | - {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"protected_material_code":{"filtered":false,"detected":false},"protected_material_text":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"finish_reason":"stop","index":0,"logprobs":null,"message":{"content":"The weather in Florence, Italy is currently 40°C.","reasoning_content":"First, the user asked: \"What's the weather in Florence, Italy?\" This directly matches the available function \"weather\", which gets weather information for a location.\n\nThe function requires a \"location\" parameter, which is a string. The user provided \"Florence, Italy\", so all required parameters are present and clear. No need to ask for clarification.\n\nI should call the function using the specified JSON format within \u003cfunction_call\u003e tags. The format is: \u003cfunction_call\u003e{\"action\": \"function_name\", \"action_input\": {\"parameter\": \"argument\"}}\u003c/function_call\u003e\n\nSo, for this, it should be: \u003cfunction_call\u003e{\"action\": \"weather\", \"action_input\": {\"location\": \"Florence, Italy\"}}\u003c/function_call\u003e\n\nAfter calling the function, the response from the function is given as \"Function: 40 C\". This seems to be the result of the function call.\n\nNow, in my response as the assistant, I need to handle this. The system prompt says: \"You are a helpful assistant\" and I should respond based on the function call. Since I've made the function call, and now I have the result, I should provide a clear, non-verbose response to the user with the information.\n\nThe conversation is multi-turn, but in this case, the function call has been made, and I have the result. I need to present this result to the user.\n\nMy response should not be verbose, so I'll keep it concise. Something like: \"The weather in Florence, Italy is 40°C.\"\n\nThe function response is \"40 C\", which I assume means 40 degrees Celsius. I should make it user-friendly.\n\nFinally, ensure that I'm not making another function call unless needed. Here, the request is fulfilled with this information, so no need for further calls.\n\nResponse structure:\n- Since the function call was already made in the first response, now I need to provide the answer based on the function's output.","refusal":null,"role":"assistant","tool_calls":null},"stop_reason":null}],"created":1761842986,"id":"1792caed-512b-4e35-970a-614f14ed1aba_sidecar","model":"grok-3-mini-high","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"usage":{"audio_prompt_tokens":0,"completion_tokens":12,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":394,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":332,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":332},"total_tokens":738}} + {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"protected_material_code":{"filtered":false,"detected":false},"protected_material_text":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"finish_reason":"stop","index":0,"logprobs":null,"message":{"content":"The weather in Florence, Italy is 40°C.","reasoning_content":"First, the user asked about the weather in Florence, Italy. I have an available function called \"weather\" that can retrieve weather information for a location.\n\nThe function requires a \"location\" parameter, which is a string. The user provided \"Florence, Italy\", which clearly specifies the city and country, so all required parameters are present and inferable.\n\nI should call the function if it can advance the user's request. In this case, calling the \"weather\" function directly addresses the query.\n\nThe response format specifies that I should use \u003cfunction_call\u003e tags with JSON if I'm calling a function. I did that in my initial response.\n\nNow, in this simulation, after I call the function, there's a response: \"Function: 40 C\". This seems to be the result from the function call.\n\nAs the assistant, I need to handle the conversation. Since the function call was made, and now I have the result, I should provide a clear, non-verbose response to the user with the information.\n\nThe system prompt says: \"Keep your response to user clear; please do not make your response verbose!\" So, I should directly answer the user with the weather information.\n\nThis is a multi-turn conversation. I called the function in the first response, and now I have the result. I need to continue by providing the result to the user.\n\nMy response should not include another function call unless more is needed, but here the request is fulfilled with the weather data.\n\nFinal response should be clear: e.g., \"The weather in Florence, Italy is 40°C.\"\n\nThe function response is \"40 C\", which I assume means 40 degrees Celsius. I should present it nicely.\n\nI shouldn't add extra verbosity, so keep it straightforward.","refusal":null,"role":"assistant","tool_calls":null},"stop_reason":null}],"created":1773338573,"id":"de80fb5e-e706-4433-b3da-a978c83ddae2_sidecar","model":"grok-3-mini-high","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"usage":{"audio_prompt_tokens":0,"completion_tokens":11,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":352,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":332,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":332},"total_tokens":695}} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.818933708s + duration: 2.235902458s diff --git a/providertests/testdata/TestAzureCommon/azure-grok-3-mini/tool_streaming.yaml b/providertests/testdata/TestAzureCommon/azure-grok-3-mini/tool_streaming.yaml index d53c5f7ec11e23b7f813674858be8e17261c69b2..0c04d77e2e4cdf12d7c09bec1cda9ef2eaa75caa 100644 --- a/providertests/testdata/TestAzureCommon/azure-grok-3-mini/tool_streaming.yaml +++ b/providertests/testdata/TestAzureCommon/azure-grok-3-mini/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -26,1436 +26,1550 @@ interactions: body: |+ data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"First","role":"assistant"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"First","role":"assistant"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" asking"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" asking"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" about"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" about"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" called"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" called"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" get"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" get"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" description"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" requires"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Get"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" described"},"index":0}],"created":1773338575,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"the"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" require"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\".\n\n"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" query"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specifies"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" string"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" described"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" This"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provides"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"the"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" both"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\".\n\n"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" country"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" sufficient"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" This"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" seems"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" identify"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specify"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" both"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" country"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" just"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fine"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it's"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" string"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" so"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" pass"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" described"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"the"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" but"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" doesn't"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" make"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specify"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" must"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"All"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" just"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" name"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" without"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" country"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" In"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" given"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" practice"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" So"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" providing"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" help"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" dis"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"ambig"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"uate"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" there"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" multiple"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Flor"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"ences"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specified"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" JSON"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" so"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it's"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" within"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" probably"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" acceptable"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"All"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tags"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" given"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e{\""},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_name"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" infer"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_input"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" {\""},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" passed"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"parameter"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" argument"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"argument"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"}}\u003c/"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e\n\n"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"For"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" case"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" instruction"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" says"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" action"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"If"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" query"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" action"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_input"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" addressed"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" using"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" with"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" value"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" all"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\".\n\n"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" or"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"After"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" obviously"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" infer"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"able"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" trigger"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" shouldn't"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provide"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" any"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\""},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" additional"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Here"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" unless"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" needed"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" matches"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" but"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" since"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" system"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" will"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" handle"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specified"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" My"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" JSON"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" within"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" only"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" contain"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tags"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I'm"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"After"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" deciding"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" needed"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" instructions"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" say"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" might"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Keep"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" your"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" handle"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338576,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" subsequent"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":";"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" turns"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" please"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" do"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" but"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" make"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" now"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" your"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" verbose"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"!\""},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" So"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" logical"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" next"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" step"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"My"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" add"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" extra"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" text"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":";"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" just"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" verbose"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":";"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" keep"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"This"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" seems"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" So"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" like"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" direct"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" shouldn't"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" match"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" add"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" extra"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" so"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" text"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" no"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" unless"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" necessary"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" ask"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" instruction"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clarification"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" says"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Final"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" decision"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Keep"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" your"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Call"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" with"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":";"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" please"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" do"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" make"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" your"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"id":"call_25530119","index":0,"type":"function"}]},"index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" verbose"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0}],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"!\""},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[],"created":1773338577,"id":"bcedd212-f2c9-4775-9386-418aa49f4445_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9","usage":{"completion_tokens":27,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":305,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":288,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":288},"total_tokens":620}} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" And"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: [DONE] - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" only"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 424.850541ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 727 + 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_25530119","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_25530119","role":"tool"}],"model":"grok-3-mini","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: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" use"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"First","role":"assistant"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" asked"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" about"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tag"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I'm"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Since"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I'm"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" deciding"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" called"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" my"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" just"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" get"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" contain"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Final"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" decision"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Call"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" requires"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" with"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" string"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"id":"call_78089033","index":0,"type":"function"}]},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9","usage":{"completion_tokens":27,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":355,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":288,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":288},"total_tokens":670}} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: [DONE] + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - headers: - Content-Type: - - text/event-stream - status: 200 OK - code: 200 - duration: 256.935666ms -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 727 - 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_78089033","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_78089033","role":"tool"}],"model":"grok-3-mini","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.7.1 - url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: |+ - data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clearly"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specifies"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" country"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" so"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" all"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" present"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" infer"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"able"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"According"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" instructions"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" query"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" addressed"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" using"},"index":0}],"created":1773338579,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" all"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" trigger"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specified"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" JSON"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" within"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"First","role":"assistant"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tags"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" asked"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" already"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"What's"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" made"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" my"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" initial"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"?\""},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" This"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" directly"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" matches"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e{\""},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" requires"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_input"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" {\""},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" already"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" made"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"}}\u003c/"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" my"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e\n\n"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" previous"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Now"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e{\""},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I'm"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" seeing"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Function"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_input"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" C"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" {\""},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" seems"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" result"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" of"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"}}\u003c/"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e."},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" This"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Now"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" likely"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" simulated"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" system"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" or"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" has"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" conversation"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" history"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"My"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" role"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Function"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" respond"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" help"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"fully"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" C"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" After"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\".\n\n"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"In"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" multi"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-turn"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" conversation"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" use"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" result"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" continue"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" answer"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" based"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" on"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"'s"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" instructions"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" say"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"continue"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" was"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" relevant"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" successful"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" functions"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" advance"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" returned"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" until"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" either"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" C"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fully"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fulfilled"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" or"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" assume"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" you"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" means"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" more"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" degrees"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\"\n\n"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Celsius"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"In"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"My"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" case"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" role"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" has"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" helpful"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" been"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" assistant"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" made"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" After"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" result"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provide"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" C"},"index":0}],"created":1773338580,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" This"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" probably"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" means"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" temperature"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" non"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" degrees"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Celsius"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"verbose"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" way"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Since"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" was"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" now"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fulfilled"},"index":0}],"created":1761842992,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" because"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" called"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" now"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" data"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" returned"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provide"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" data"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" directly"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" don't"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" another"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" don't"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" unless"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" more"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" another"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" because"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Guidelines"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":\n\n"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" seems"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" If"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fulfilled"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" with"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fully"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fulfilled"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" respond"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" was"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" with"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" called"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" returned"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Keep"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" simple"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" so"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" verbose"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Only"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" use"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" non"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"verbose"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tags"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I'm"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" deciding"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Final"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" helpful"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" In"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" directly"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" case"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" answer"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" no"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" query"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" further"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" So"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" needed"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" say"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"So"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" something"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" like"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" now"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" respond"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" with"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" based"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" on"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" degrees"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"'s"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Celsius"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" output"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\"\n\n"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Response"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" structure"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":\n\n"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" just"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Be"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" direct"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" C"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" might"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" incomplete"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" ("},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"e"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".g"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".,"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" no"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"°C"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" description"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\"\n\n"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" of"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" conditions"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"),"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" confirm"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" but"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" based"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" units"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" on"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" what's"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" given"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" returned"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" use"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" C"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" likely"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Ensure"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" means"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Celsius"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" but"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" verbose"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" precise"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" keep"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I'll"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" assume"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it's"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" concise"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Celsius"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"So"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it's"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" my"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" common"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" unit"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" A"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Finally"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" direct"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" answer"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" end"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" using"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" without"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"'s"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" unnecessary"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" output"},"index":0}],"created":1773338581,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" details"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338582,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"The"},"index":0}],"created":1773338582,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"The"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" weather"},"index":0}],"created":1773338582,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" weather"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"index":0}],"created":1773338582,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Florence"},"index":0}],"created":1773338582,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Florence"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"index":0}],"created":1773338582,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Italy"},"index":0}],"created":1773338582,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Italy"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" is"},"index":0}],"created":1773338582,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" is"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" currently"},"index":0}],"created":1773338582,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" "},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" "},"index":0}],"created":1773338582,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"40"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"40"},"index":0}],"created":1773338582,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"°C"},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"°C"},"index":0}],"created":1773338582,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"."},"index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"."},"index":0}],"created":1773338582,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0}],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0}],"created":1773338582,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[],"created":1761842993,"id":"a6f0c9ce-c6ec-45b2-9544-51b9dd3c2433_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9","usage":{"completion_tokens":11,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":328,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":332,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":332},"total_tokens":671}} + data: {"choices":[],"created":1773338582,"id":"93b493ad-7d36-4444-a4c5-a50805fb5ebe_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9","usage":{"completion_tokens":12,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":434,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":332,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":332},"total_tokens":778}} data: [DONE] @@ -1464,4 +1578,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 410.234334ms + duration: 301.040708ms diff --git a/providertests/testdata/TestAzureCommon/azure-o4-mini/simple.yaml b/providertests/testdata/TestAzureCommon/azure-o4-mini/simple.yaml index b7538fc96cc30b73c7bd90656703e0702b9d6d9d..3c3d25bf8a8225945112527018bf59e1a4d0e950 100644 --- a/providertests/testdata/TestAzureCommon/azure-o4-mini/simple.yaml +++ b/providertests/testdata/TestAzureCommon/azure-o4-mini/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: 1203 body: | - {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"protected_material_code":{"filtered":false,"detected":false},"protected_material_text":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"finish_reason":"stop","index":0,"logprobs":null,"message":{"annotations":[],"content":"Olá!","refusal":null,"role":"assistant"}}],"created":1761842947,"id":"chatcmpl-CWQ7f0bwWRBA8LDoImC3K2wezY8Ye","model":"o4-mini-2025-04-16","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"system_fingerprint":null,"usage":{"completion_tokens":85,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":64,"rejected_prediction_tokens":0},"prompt_tokens":19,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":104}} + {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"protected_material_code":{"filtered":false,"detected":false},"protected_material_text":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"finish_reason":"stop","index":0,"logprobs":null,"message":{"annotations":[],"content":"Oi!","refusal":null,"role":"assistant"}}],"created":1773338539,"id":"chatcmpl-DIeeRVJFpvxQKwMQA6YkG9ItFCDQC","model":"o4-mini-2025-04-16","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"system_fingerprint":null,"usage":{"completion_tokens":213,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":192,"rejected_prediction_tokens":0},"prompt_tokens":19,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":232}} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.380277667s + duration: 2.688390208s diff --git a/providertests/testdata/TestAzureCommon/azure-o4-mini/simple_streaming.yaml b/providertests/testdata/TestAzureCommon/azure-o4-mini/simple_streaming.yaml index 22b2338fce97919925422e9ef3cd89e759aa45fd..2c1e9f2e887e010653a4a1ec1ebdb49b2d530b47 100644 --- a/providertests/testdata/TestAzureCommon/azure-o4-mini/simple_streaming.yaml +++ b/providertests/testdata/TestAzureCommon/azure-o4-mini/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -26,15 +26,15 @@ interactions: body: |+ data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]} - data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842949,"id":"chatcmpl-CWQ7hehqpDlf2niJw1ppNwUCBUH6W","model":"o4-mini-2025-04-16","obfuscation":"I","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338541,"id":"chatcmpl-DIeeTmPomcxhV2SV0x5hDm9Hh2ndB","model":"o4-mini-2025-04-16","obfuscation":"1","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"Olá"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842949,"id":"chatcmpl-CWQ7hehqpDlf2niJw1ppNwUCBUH6W","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"Oi"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338541,"id":"chatcmpl-DIeeTmPomcxhV2SV0x5hDm9Hh2ndB","model":"o4-mini-2025-04-16","obfuscation":"p","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"!"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842949,"id":"chatcmpl-CWQ7hehqpDlf2niJw1ppNwUCBUH6W","model":"o4-mini-2025-04-16","obfuscation":"fH","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"!"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338541,"id":"chatcmpl-DIeeTmPomcxhV2SV0x5hDm9Hh2ndB","model":"o4-mini-2025-04-16","obfuscation":"35","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1761842949,"id":"chatcmpl-CWQ7hehqpDlf2niJw1ppNwUCBUH6W","model":"o4-mini-2025-04-16","obfuscation":"p7EdA3UJmxdvk","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1773338541,"id":"chatcmpl-DIeeTmPomcxhV2SV0x5hDm9Hh2ndB","model":"o4-mini-2025-04-16","obfuscation":"FwcDNyPYzGB5E","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[],"created":1761842949,"id":"chatcmpl-CWQ7hehqpDlf2niJw1ppNwUCBUH6W","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":85,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":64,"rejected_prediction_tokens":0},"prompt_tokens":19,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":104}} + data: {"choices":[],"created":1773338541,"id":"chatcmpl-DIeeTmPomcxhV2SV0x5hDm9Hh2ndB","model":"o4-mini-2025-04-16","obfuscation":"Sg5cKxcc8KwwQ9","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":149,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":128,"rejected_prediction_tokens":0},"prompt_tokens":19,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":168}} data: [DONE] @@ -43,4 +43,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 1.122837417s + duration: 1.750472792s diff --git a/providertests/testdata/TestAzureCommon/azure-o4-mini/tool.yaml b/providertests/testdata/TestAzureCommon/azure-o4-mini/tool.yaml index 92d21ee7f30242e484668296949a57c71509a161..673e6d0c198cee2b7860ba88f5b2ab3a168d28ba 100644 --- a/providertests/testdata/TestAzureCommon/azure-o4-mini/tool.yaml +++ b/providertests/testdata/TestAzureCommon/azure-o4-mini/tool.yaml @@ -15,22 +15,22 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1045 + content_length: 1047 body: | - {"choices":[{"content_filter_results":{},"finish_reason":"tool_calls","index":0,"logprobs":null,"message":{"annotations":[],"content":null,"refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"id":"call_tqngqwwVn8WQVUkgqtIYfoaH","type":"function"}]}}],"created":1761842950,"id":"chatcmpl-CWQ7i9yJPo9BpBFPBl73OgqhUtDVV","model":"o4-mini-2025-04-16","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"system_fingerprint":null,"usage":{"completion_tokens":23,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":0,"rejected_prediction_tokens":0},"prompt_tokens":64,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":87}} + {"choices":[{"content_filter_results":{},"finish_reason":"tool_calls","index":0,"logprobs":null,"message":{"annotations":[],"content":null,"refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"id":"call_PS2XApMMnhtJH39VU3brisjo","type":"function"}]}}],"created":1773338543,"id":"chatcmpl-DIeeV6G509dNNT3vm5vehkTC3FkQH","model":"o4-mini-2025-04-16","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"system_fingerprint":null,"usage":{"completion_tokens":87,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":64,"rejected_prediction_tokens":0},"prompt_tokens":64,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":151}} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.317917416s + duration: 1.776087s - id: 1 request: proto: HTTP/1.1 @@ -38,14 +38,14 @@ interactions: proto_minor: 1 content_length: 712 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_tqngqwwVn8WQVUkgqtIYfoaH","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_tqngqwwVn8WQVUkgqtIYfoaH","role":"tool"}],"model":"o4-mini","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_PS2XApMMnhtJH39VU3brisjo","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_PS2XApMMnhtJH39VU3brisjo","role":"tool"}],"model":"o4-mini","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: 1249 body: | - {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"protected_material_code":{"filtered":false,"detected":false},"protected_material_text":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"finish_reason":"stop","index":0,"logprobs":null,"message":{"annotations":[],"content":"The current temperature in Florence, Italy is 40°C.","refusal":null,"role":"assistant"}}],"created":1761842951,"id":"chatcmpl-CWQ7jZUjKlLb6EssvJqOUYZ5uS4Nf","model":"o4-mini-2025-04-16","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"system_fingerprint":null,"usage":{"completion_tokens":25,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":0,"rejected_prediction_tokens":0},"prompt_tokens":92,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":117}} + {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"protected_material_code":{"filtered":false,"detected":false},"protected_material_text":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"finish_reason":"stop","index":0,"logprobs":null,"message":{"annotations":[],"content":"The current temperature in Florence, Italy is 40°C.","refusal":null,"role":"assistant"}}],"created":1773338545,"id":"chatcmpl-DIeeX6i7bQhpcohuzFoeaeTX9k6s7","model":"o4-mini-2025-04-16","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"system_fingerprint":null,"usage":{"completion_tokens":25,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":0,"rejected_prediction_tokens":0},"prompt_tokens":92,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":117}} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 834.383375ms + duration: 2.17099975s diff --git a/providertests/testdata/TestAzureCommon/azure-o4-mini/tool_streaming.yaml b/providertests/testdata/TestAzureCommon/azure-o4-mini/tool_streaming.yaml index 809616da28b80457b817556ee2d5b294b7bfa6ae..e52d6896d509f00e1ac412e7a1cb19a6f67f4d9c 100644 --- a/providertests/testdata/TestAzureCommon/azure-o4-mini/tool_streaming.yaml +++ b/providertests/testdata/TestAzureCommon/azure-o4-mini/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -26,27 +26,27 @@ interactions: body: |+ data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]} - data: {"choices":[{"content_filter_results":{},"delta":{"content":null,"refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"","name":"weather"},"id":"call_9URIoTvgd5stQfgpr8dHAg9L","index":0,"type":"function"}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":null,"refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"","name":"weather"},"id":"call_iiw9Wq0nlQXSuCdsjuZohmSP","index":0,"type":"function"}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338547,"id":"chatcmpl-DIeeZX5AuruGS5aAk1Ya1vHUrkRZf","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"NCcJz9","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338547,"id":"chatcmpl-DIeeZX5AuruGS5aAk1Ya1vHUrkRZf","model":"o4-mini-2025-04-16","obfuscation":"wJMLYC","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"location"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"c","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"location"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338547,"id":"chatcmpl-DIeeZX5AuruGS5aAk1Ya1vHUrkRZf","model":"o4-mini-2025-04-16","obfuscation":"L","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\":\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"59wG","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\":\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338547,"id":"chatcmpl-DIeeZX5AuruGS5aAk1Ya1vHUrkRZf","model":"o4-mini-2025-04-16","obfuscation":"m9U9","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"Flor"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"vBcyl","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"Flor"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338547,"id":"chatcmpl-DIeeZX5AuruGS5aAk1Ya1vHUrkRZf","model":"o4-mini-2025-04-16","obfuscation":"mWggA","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"ence"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"pIOsj","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"ence"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338547,"id":"chatcmpl-DIeeZX5AuruGS5aAk1Ya1vHUrkRZf","model":"o4-mini-2025-04-16","obfuscation":"atKKr","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":","},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"0Nhjk7XH","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":","},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338547,"id":"chatcmpl-DIeeZX5AuruGS5aAk1Ya1vHUrkRZf","model":"o4-mini-2025-04-16","obfuscation":"RSnQ5qrm","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"Italy"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"kI4T","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":" Italy"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338547,"id":"chatcmpl-DIeeZX5AuruGS5aAk1Ya1vHUrkRZf","model":"o4-mini-2025-04-16","obfuscation":"8HI","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\"}"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"e8PzDD","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\"}"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338547,"id":"chatcmpl-DIeeZX5AuruGS5aAk1Ya1vHUrkRZf","model":"o4-mini-2025-04-16","obfuscation":"lD6ecF","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"BXRFyNp","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0,"logprobs":null}],"created":1773338547,"id":"chatcmpl-DIeeZX5AuruGS5aAk1Ya1vHUrkRZf","model":"o4-mini-2025-04-16","obfuscation":"BELzgtZ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"4Z","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":23,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":0,"rejected_prediction_tokens":0},"prompt_tokens":64,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":87}} + data: {"choices":[],"created":1773338547,"id":"chatcmpl-DIeeZX5AuruGS5aAk1Ya1vHUrkRZf","model":"o4-mini-2025-04-16","obfuscation":"ocunNAuOFDV9mA","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":151,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":128,"rejected_prediction_tokens":0},"prompt_tokens":64,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":215}} data: [DONE] @@ -55,22 +55,22 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 980.975375ms + duration: 2.110832125s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 765 + content_length: 766 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_9URIoTvgd5stQfgpr8dHAg9L","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_9URIoTvgd5stQfgpr8dHAg9L","role":"tool"}],"model":"o4-mini","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_iiw9Wq0nlQXSuCdsjuZohmSP","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_iiw9Wq0nlQXSuCdsjuZohmSP","role":"tool"}],"model":"o4-mini","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -81,35 +81,109 @@ interactions: body: |+ data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]} - data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"6","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"D","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"The"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"The"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" current"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"hUDX8HnCTVS","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" current"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"wKSw9yGoM1y","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" temperature"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"mwMYc2I","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" temperature"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"qEkMPjP","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Florence"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"uk82d5NseJ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Florence"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"H6qs0DP9vM","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"gH","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"Mv","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Italy"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"tCtxzaNt6jg7V","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Italy"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"1SKud6BSHDoS6","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" is"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" is"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" "},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"Kk","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" "},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"5w","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"40"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"m","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"40"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"z","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"°C"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"v","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"°C"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"S","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"."},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"rm","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"."},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"Sn","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"psinnxINFfODK","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" That's"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"gbhzgNx3aaAQ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"9","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":25,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":0,"rejected_prediction_tokens":0},"prompt_tokens":92,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":117}} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" quite"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"Bx2TM5D3aStVI","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hot"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"Y6wUERC0CdFR2qj","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"!"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"Jr","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Make"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"89ZchtQrIbl8e0","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" sure"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"zV4RmvV7leWL5Q","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" to"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" stay"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"Refq2Fb4Vqkr19","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hydrated"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"lCNu0trIsy","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" and"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"imGcN68d3A5LwUT","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" avoid"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"9NFbdW57fxDJ0","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" direct"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"vlzFDsFXlveK","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" sun"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"694hh2xRiKJbW2P","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" exposure"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"T8z4gUMTZl","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" during"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"8vKTjwpuK1uu","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" the"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"l0oIBDMSpZIT2Ki","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hottest"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"oxNMkMh0ioZ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" parts"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"VdJxznVQ5hnl3","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" of"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" the"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"ax7k5OC4HhAiNvn","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" day"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"RtmDkJZBlxiED4Y","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"."},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"qL","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" If"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" you"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"U0cvH6EyKMVx4vH","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" have"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"7jREPca3Jk3CEe","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" any"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"NN18PkwZx2VNjfT","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" more"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"hcUiH6veEQwOjl","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" questions"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"PCYTFqdLf","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" or"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" need"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"KXM3KVmL4m2FRk","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" further"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"JumuGLZJzID","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" details"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"Nc2l7ZTcoZO","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"j2","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" let"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"d8ZoQNpGsXmV4Pc","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" me"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" know"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"hdo0Umxp5E45fA","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"!"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"sT","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"r5XgmI3PANPfy","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[],"created":1773338549,"id":"chatcmpl-DIeeblbntTcRQClCutPKE6HkUQcwK","model":"o4-mini-2025-04-16","obfuscation":"8","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":62,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":0,"rejected_prediction_tokens":0},"prompt_tokens":92,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":154}} data: [DONE] @@ -118,4 +192,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 375.330583ms + duration: 568.503791ms diff --git a/providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/simple.yaml b/providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/simple.yaml index 035f7d04435daed35ebbd23324a79591f992a914..818480c337e9986142df925ccb951193afa9bbc3 100644 --- a/providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/simple.yaml +++ b/providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/simple.yaml @@ -15,23 +15,94 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1559 + content_length: 3194 body: |- { - "id": "resp_099c69d9f7a8450501690399717e048194a086be1ecd3178eb", + "id": "resp_07781033bdb3b0150169b2ff64410c8195840d5e5463a5edea", "object": "response", - "created_at": 1761843569, + "created_at": 1773338468, "status": "completed", "background": false, - "content_filters": null, + "completed_at": 1773338471, + "content_filters": [ + { + "blocked": false, + "source_type": "prompt", + "content_filter_raw": [], + "content_filter_results": { + "hate": { + "filtered": false, + "severity": "safe" + }, + "sexual": { + "filtered": false, + "severity": "safe" + }, + "violence": { + "filtered": false, + "severity": "safe" + }, + "self_harm": { + "filtered": false, + "severity": "safe" + }, + "jailbreak": { + "detected": false, + "filtered": false + } + }, + "content_filter_offsets": { + "start_offset": 0, + "end_offset": 53, + "check_offset": 0 + } + }, + { + "blocked": false, + "source_type": "completion", + "content_filter_raw": [], + "content_filter_results": { + "hate": { + "filtered": false, + "severity": "safe" + }, + "sexual": { + "filtered": false, + "severity": "safe" + }, + "violence": { + "filtered": false, + "severity": "safe" + }, + "self_harm": { + "filtered": false, + "severity": "safe" + }, + "protected_material_code": { + "detected": false, + "filtered": false + }, + "protected_material_text": { + "detected": false, + "filtered": false + } + }, + "content_filter_offsets": { + "start_offset": 0, + "end_offset": 409, + "check_offset": 0 + } + } + ], "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -39,12 +110,12 @@ interactions: "model": "gpt-5-mini", "output": [ { - "id": "rs_099c69d9f7a845050169039971fb208194884ced01a08fdfd6", + "id": "rs_07781033bdb3b0150169b2ff64cc648195856b2ada86d22dea", "type": "reasoning", "summary": [] }, { - "id": "msg_099c69d9f7a8450501690399758a5081948d95d3d1560ba719", + "id": "msg_07781033bdb3b0150169b2ff660a1c8195ae505f9842f3f5f2", "type": "message", "status": "completed", "content": [ @@ -52,15 +123,17 @@ interactions: "type": "output_text", "annotations": [], "logprobs": [], - "text": "Ol\u00e1! (Tamb\u00e9m pode dizer \"Oi!\")" + "text": "Ol\u00e1!" } ], "role": "assistant" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "medium", "summary": null @@ -85,11 +158,11 @@ interactions: "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 143, + "output_tokens": 112, "output_tokens_details": { - "reasoning_tokens": 128 + "reasoning_tokens": 64 }, - "total_tokens": 162 + "total_tokens": 131 }, "user": null, "metadata": {} @@ -99,4 +172,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 6.221231041s + duration: 4.049976875s diff --git a/providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/simple_streaming.yaml b/providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/simple_streaming.yaml index be0f91636d36c89c27a7780c4e5d84c37ac712c5..b627e9edfef87b78aed8dff49fc580098a36e5a9 100644 --- a/providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/simple_streaming.yaml +++ b/providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses method: POST response: @@ -25,44 +25,44 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0b4726240aaacbdc0169039977006081968d5b3074ea5b42a1","object":"response","created_at":1761843575,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_0cc665730fb33c420169b2ff67a3e8819494bb7f11d4d3fd29","object":"response","created_at":1773338471,"status":"in_progress","background":false,"completed_at":null,"content_filters":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0b4726240aaacbdc0169039977006081968d5b3074ea5b42a1","object":"response","created_at":1761843575,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_0cc665730fb33c420169b2ff67a3e8819494bb7f11d4d3fd29","object":"response","created_at":1773338471,"status":"in_progress","background":false,"completed_at":null,"content_filters":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_0b4726240aaacbdc01690399775ac8819687e64c00134959bd","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.added","item":{"id":"rs_0cc665730fb33c420169b2ff68d3dc8194b77e20590bd047af","type":"reasoning","summary":[]},"output_index":0,"sequence_number":2} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":3,"output_index":0,"item":{"id":"rs_0b4726240aaacbdc01690399775ac8819687e64c00134959bd","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.done","item":{"id":"rs_0cc665730fb33c420169b2ff68d3dc8194b77e20590bd047af","type":"reasoning","summary":[]},"output_index":0,"sequence_number":3} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":4,"output_index":1,"item":{"id":"msg_0b4726240aaacbdc01690399791ef48196a80844dabf0c19d1","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_0cc665730fb33c420169b2ff6a0d80819488ab542d9bbfef0c","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":1,"sequence_number":4} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":5,"item_id":"msg_0b4726240aaacbdc01690399791ef48196a80844dabf0c19d1","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_0cc665730fb33c420169b2ff6a0d80819488ab542d9bbfef0c","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_0b4726240aaacbdc01690399791ef48196a80844dabf0c19d1","output_index":1,"content_index":0,"delta":"Olá","logprobs":[],"obfuscation":"GnLMSVqNdNbj1"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Olá","item_id":"msg_0cc665730fb33c420169b2ff6a0d80819488ab542d9bbfef0c","logprobs":[],"obfuscation":"uMdqAkmtvsKdc","output_index":1,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_0b4726240aaacbdc01690399791ef48196a80844dabf0c19d1","output_index":1,"content_index":0,"delta":"!","logprobs":[],"obfuscation":"qkamnZvkApJNl5A"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"!","item_id":"msg_0cc665730fb33c420169b2ff6a0d80819488ab542d9bbfef0c","logprobs":[],"obfuscation":"wMMKr7VHxEPzV3h","output_index":1,"sequence_number":7} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":8,"item_id":"msg_0b4726240aaacbdc01690399791ef48196a80844dabf0c19d1","output_index":1,"content_index":0,"text":"Olá!","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_0cc665730fb33c420169b2ff6a0d80819488ab542d9bbfef0c","logprobs":[],"output_index":1,"sequence_number":8,"text":"Olá!"} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":9,"item_id":"msg_0b4726240aaacbdc01690399791ef48196a80844dabf0c19d1","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_0cc665730fb33c420169b2ff6a0d80819488ab542d9bbfef0c","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"},"sequence_number":9} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":10,"output_index":1,"item":{"id":"msg_0b4726240aaacbdc01690399791ef48196a80844dabf0c19d1","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_0cc665730fb33c420169b2ff6a0d80819488ab542d9bbfef0c","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"}],"role":"assistant"},"output_index":1,"sequence_number":10} event: response.completed - data: {"type":"response.completed","sequence_number":11,"response":{"id":"resp_0b4726240aaacbdc0169039977006081968d5b3074ea5b42a1","object":"response","created_at":1761843575,"status":"completed","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[{"id":"rs_0b4726240aaacbdc01690399775ac8819687e64c00134959bd","type":"reasoning","summary":[]},{"id":"msg_0b4726240aaacbdc01690399791ef48196a80844dabf0c19d1","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":19,"input_tokens_details":{"cached_tokens":0},"output_tokens":72,"output_tokens_details":{"reasoning_tokens":64},"total_tokens":91},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_0cc665730fb33c420169b2ff67a3e8819494bb7f11d4d3fd29","object":"response","created_at":1773338471,"status":"completed","background":false,"completed_at":1773338474,"content_filters":[{"blocked":false,"source_type":"prompt","content_filter_raw":[],"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"jailbreak":{"detected":false,"filtered":false}},"content_filter_offsets":{"start_offset":0,"end_offset":53,"check_offset":0}},{"blocked":false,"source_type":"completion","content_filter_raw":[],"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"protected_material_code":{"detected":false,"filtered":false},"protected_material_text":{"detected":false,"filtered":false}},"content_filter_offsets":{"start_offset":0,"end_offset":507,"check_offset":0}}],"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[{"id":"rs_0cc665730fb33c420169b2ff68d3dc8194b77e20590bd047af","type":"reasoning","summary":[]},{"id":"msg_0cc665730fb33c420169b2ff6a0d80819488ab542d9bbfef0c","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":19,"input_tokens_details":{"cached_tokens":0},"output_tokens":132,"output_tokens_details":{"reasoning_tokens":64},"total_tokens":151},"user":null,"metadata":{}},"sequence_number":11} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 170.893459ms + duration: 656.864916ms diff --git a/providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/tool.yaml b/providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/tool.yaml index e78acefcc1dc0342201070439deaa329f63e0124..61334fcc28f52397131599b4faeb299879a33541 100644 --- a/providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/tool.yaml +++ b/providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/tool.yaml @@ -15,23 +15,94 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1866 + content_length: 3537 body: |- { - "id": "resp_01ac948c31d692b30169039979ab2c819096befaa857fd6bd5", + "id": "resp_01732c78a43466ae0169b2ff6aa4d88194822bbea5c052ca9f", "object": "response", - "created_at": 1761843577, + "created_at": 1773338474, "status": "completed", "background": false, - "content_filters": null, + "completed_at": 1773338481, + "content_filters": [ + { + "blocked": false, + "source_type": "prompt", + "content_filter_raw": [], + "content_filter_results": { + "hate": { + "filtered": false, + "severity": "safe" + }, + "sexual": { + "filtered": false, + "severity": "safe" + }, + "violence": { + "filtered": false, + "severity": "safe" + }, + "self_harm": { + "filtered": false, + "severity": "safe" + }, + "jailbreak": { + "detected": false, + "filtered": false + } + }, + "content_filter_offsets": { + "start_offset": 0, + "end_offset": 70, + "check_offset": 0 + } + }, + { + "blocked": false, + "source_type": "completion", + "content_filter_raw": [], + "content_filter_results": { + "protected_material_code": { + "detected": false, + "filtered": false + }, + "protected_material_text": { + "detected": false, + "filtered": false + }, + "hate": { + "filtered": false, + "severity": "safe" + }, + "sexual": { + "filtered": false, + "severity": "safe" + }, + "violence": { + "filtered": false, + "severity": "safe" + }, + "self_harm": { + "filtered": false, + "severity": "safe" + } + }, + "content_filter_offsets": { + "start_offset": 0, + "end_offset": 1395, + "check_offset": 0 + } + } + ], "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -39,22 +110,24 @@ interactions: "model": "gpt-5-mini", "output": [ { - "id": "rs_01ac948c31d692b3016903997a0748819094955c49dc9168e3", + "id": "rs_01732c78a43466ae0169b2ff7005048194875b5d3f92871d49", "type": "reasoning", "summary": [] }, { - "id": "fc_01ac948c31d692b3016903997b1a648190b3e9f6259464edf9", + "id": "fc_01732c78a43466ae0169b2ff70e3948194a75b7cb3ef8e0d55", "type": "function_call", "status": "completed", "arguments": "{\"location\":\"Florence, Italy\"}", - "call_id": "call_4aipZJRtNzKfQ9VlnBGhI9zH", + "call_id": "call_yTCy7OpPv0Z8Y7VNP0LiMnqv", "name": "weather" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "medium", "summary": null @@ -94,15 +167,15 @@ interactions: "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 63, + "input_tokens": 66, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 22, + "output_tokens": 85, "output_tokens_details": { "reasoning_tokens": 0 }, - "total_tokens": 85 + "total_tokens": 151 }, "user": null, "metadata": {} @@ -112,7 +185,7 @@ interactions: - application/json status: 200 OK code: 200 - duration: 2.717185959s + duration: 7.532447083s - id: 1 request: proto: HTTP/1.1 @@ -120,30 +193,69 @@ interactions: proto_minor: 1 content_length: 726 host: "" - body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_4aipZJRtNzKfQ9VlnBGhI9zH","name":"weather","type":"function_call"},{"call_id":"call_4aipZJRtNzKfQ9VlnBGhI9zH","output":"40 C","type":"function_call_output"}],"model":"gpt-5-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}' + body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_yTCy7OpPv0Z8Y7VNP0LiMnqv","name":"weather","type":"function_call"},{"call_id":"call_yTCy7OpPv0Z8Y7VNP0LiMnqv","output":"40 C","type":"function_call_output"}],"model":"gpt-5-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2085 + content_length: 3333 body: |- { - "id": "resp_066ab1dbe82e48a5016903997c6398819681f9e88196773871", + "id": "resp_0a4fc6712b6ac6210169b2ff72107c8197a726423119c97bf5", "object": "response", - "created_at": 1761843580, + "created_at": 1773338482, "status": "completed", "background": false, - "content_filters": null, + "completed_at": 1773338488, + "content_filters": [ + { + "blocked": false, + "source_type": "completion", + "content_filter_raw": [], + "content_filter_results": { + "protected_material_code": { + "detected": false, + "filtered": false + }, + "hate": { + "filtered": false, + "severity": "safe" + }, + "sexual": { + "filtered": false, + "severity": "safe" + }, + "violence": { + "filtered": false, + "severity": "safe" + }, + "self_harm": { + "filtered": false, + "severity": "safe" + }, + "protected_material_text": { + "detected": false, + "filtered": false + } + }, + "content_filter_offsets": { + "start_offset": 0, + "end_offset": 2664, + "check_offset": 0 + } + } + ], "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -151,12 +263,12 @@ interactions: "model": "gpt-5-mini", "output": [ { - "id": "rs_066ab1dbe82e48a5016903997cc74c8196add4b9db1dde2dfb", + "id": "rs_0a4fc6712b6ac6210169b2ff737f6c81978d25f7f4335790c0", "type": "reasoning", "summary": [] }, { - "id": "msg_066ab1dbe82e48a5016903997ec4dc81968c78c2634a2d1a89", + "id": "msg_0a4fc6712b6ac6210169b2ff7654948197a45f97f3435a9e82", "type": "message", "status": "completed", "content": [ @@ -164,15 +276,17 @@ interactions: "type": "output_text", "annotations": [], "logprobs": [], - "text": "Current temperature in Florence, Italy: 40\u00b0C (104\u00b0F).\n\nWant more details (hourly forecast, wind, precipitation) or tips for staying comfortable in the heat?" + "text": "Current temperature in Florence, Italy: 40 \u00b0C (104 \u00b0F).\n\nIt's very hot \u2014 tips:\n- Stay hydrated and avoid prolonged sun exposure.\n- Wear light, breathable clothing and sunscreen.\n- Take breaks in air-conditioned or shaded places; avoid strenuous outdoor activity around midday.\n- Check for local heat advisories if you\u2019ll be outside long.\n\nWould you like an hourly forecast, a multi-day outlook, or weather for a different location?" } ], "role": "assistant" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "medium", "summary": null @@ -212,15 +326,15 @@ interactions: "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 94, + "input_tokens": 97, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 169, + "output_tokens": 333, "output_tokens_details": { - "reasoning_tokens": 128 + "reasoning_tokens": 192 }, - "total_tokens": 263 + "total_tokens": 430 }, "user": null, "metadata": {} @@ -230,4 +344,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 3.237920417s + duration: 6.493260459s diff --git a/providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/tool_streaming.yaml b/providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/tool_streaming.yaml index ed9d4b66a7f12816cd32f0f9027c0f1bda531e1c..d9d1d092dba23b3f8fb4593e270202c3c0469c7b 100644 --- a/providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/tool_streaming.yaml +++ b/providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses method: POST response: @@ -25,59 +25,59 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0ad1ae6a186e7452016903997fa0d8819789788f2c97870a47","object":"response","created_at":1761843583,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_00be770fd95642780169b2ff787a04819381df824383b37927","object":"response","created_at":1773338488,"status":"in_progress","background":false,"completed_at":null,"content_filters":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0ad1ae6a186e7452016903997fa0d8819789788f2c97870a47","object":"response","created_at":1761843583,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_00be770fd95642780169b2ff787a04819381df824383b37927","object":"response","created_at":1773338488,"status":"in_progress","background":false,"completed_at":null,"content_filters":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_0ad1ae6a186e745201690399806f4881978af5b1fc084f306e","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.added","item":{"id":"rs_00be770fd95642780169b2ff7962948193a17e31f1d9f67c59","type":"reasoning","summary":[]},"output_index":0,"sequence_number":2} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":3,"output_index":0,"item":{"id":"rs_0ad1ae6a186e745201690399806f4881978af5b1fc084f306e","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.done","item":{"id":"rs_00be770fd95642780169b2ff7962948193a17e31f1d9f67c59","type":"reasoning","summary":[]},"output_index":0,"sequence_number":3} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":4,"output_index":1,"item":{"id":"fc_0ad1ae6a186e7452016903998145b481978147edc29c8250c0","type":"function_call","status":"in_progress","arguments":"","call_id":"call_mamm0WNokaTJlgAO8uAxyWBM","name":"weather"}} + data: {"type":"response.output_item.added","item":{"id":"fc_00be770fd95642780169b2ff7a431c8193bf98e343743fe0ad","type":"function_call","status":"in_progress","arguments":"","call_id":"call_orP7YgV13UgdVbsOUIkjr0db","name":"weather"},"output_index":1,"sequence_number":4} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":5,"item_id":"fc_0ad1ae6a186e7452016903998145b481978147edc29c8250c0","output_index":1,"delta":"{\"","obfuscation":"xb8TNAoGrlJ8OT"} + data: {"type":"response.function_call_arguments.delta","delta":"{\"","item_id":"fc_00be770fd95642780169b2ff7a431c8193bf98e343743fe0ad","obfuscation":"ibQc4gr05OdpPB","output_index":1,"sequence_number":5} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":6,"item_id":"fc_0ad1ae6a186e7452016903998145b481978147edc29c8250c0","output_index":1,"delta":"location","obfuscation":"mEUXsnjk"} + data: {"type":"response.function_call_arguments.delta","delta":"location","item_id":"fc_00be770fd95642780169b2ff7a431c8193bf98e343743fe0ad","obfuscation":"7HclfyVz","output_index":1,"sequence_number":6} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":7,"item_id":"fc_0ad1ae6a186e7452016903998145b481978147edc29c8250c0","output_index":1,"delta":"\":\"","obfuscation":"PvVSvDVCLTqCk"} + data: {"type":"response.function_call_arguments.delta","delta":"\":\"","item_id":"fc_00be770fd95642780169b2ff7a431c8193bf98e343743fe0ad","obfuscation":"L3hJDsqLl6FZ8","output_index":1,"sequence_number":7} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":8,"item_id":"fc_0ad1ae6a186e7452016903998145b481978147edc29c8250c0","output_index":1,"delta":"Flor","obfuscation":"hL40UicR3y1J"} + data: {"type":"response.function_call_arguments.delta","delta":"Flor","item_id":"fc_00be770fd95642780169b2ff7a431c8193bf98e343743fe0ad","obfuscation":"AUxsdGrxciBD","output_index":1,"sequence_number":8} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":9,"item_id":"fc_0ad1ae6a186e7452016903998145b481978147edc29c8250c0","output_index":1,"delta":"ence","obfuscation":"VE9oDPOnNhBm"} + data: {"type":"response.function_call_arguments.delta","delta":"ence","item_id":"fc_00be770fd95642780169b2ff7a431c8193bf98e343743fe0ad","obfuscation":"v5wa1wf3w0uY","output_index":1,"sequence_number":9} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":10,"item_id":"fc_0ad1ae6a186e7452016903998145b481978147edc29c8250c0","output_index":1,"delta":",","obfuscation":"KpJCoI7GvdKtRCj"} + data: {"type":"response.function_call_arguments.delta","delta":",","item_id":"fc_00be770fd95642780169b2ff7a431c8193bf98e343743fe0ad","obfuscation":"3fAC4XKe7mAEtmI","output_index":1,"sequence_number":10} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":11,"item_id":"fc_0ad1ae6a186e7452016903998145b481978147edc29c8250c0","output_index":1,"delta":" Italy","obfuscation":"CJ8iSJ4Jbl"} + data: {"type":"response.function_call_arguments.delta","delta":" Italy","item_id":"fc_00be770fd95642780169b2ff7a431c8193bf98e343743fe0ad","obfuscation":"O9m2eblvIH","output_index":1,"sequence_number":11} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":12,"item_id":"fc_0ad1ae6a186e7452016903998145b481978147edc29c8250c0","output_index":1,"delta":"\"}","obfuscation":"F9cJQt3WOkhsmL"} + data: {"type":"response.function_call_arguments.delta","delta":"\"}","item_id":"fc_00be770fd95642780169b2ff7a431c8193bf98e343743fe0ad","obfuscation":"gj70jyPgZhxiac","output_index":1,"sequence_number":12} event: response.function_call_arguments.done - data: {"type":"response.function_call_arguments.done","sequence_number":13,"item_id":"fc_0ad1ae6a186e7452016903998145b481978147edc29c8250c0","output_index":1,"arguments":"{\"location\":\"Florence, Italy\"}"} + data: {"type":"response.function_call_arguments.done","arguments":"{\"location\":\"Florence, Italy\"}","item_id":"fc_00be770fd95642780169b2ff7a431c8193bf98e343743fe0ad","output_index":1,"sequence_number":13} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":14,"output_index":1,"item":{"id":"fc_0ad1ae6a186e7452016903998145b481978147edc29c8250c0","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_mamm0WNokaTJlgAO8uAxyWBM","name":"weather"}} + data: {"type":"response.output_item.done","item":{"id":"fc_00be770fd95642780169b2ff7a431c8193bf98e343743fe0ad","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_orP7YgV13UgdVbsOUIkjr0db","name":"weather"},"output_index":1,"sequence_number":14} event: response.completed - data: {"type":"response.completed","sequence_number":15,"response":{"id":"resp_0ad1ae6a186e7452016903997fa0d8819789788f2c97870a47","object":"response","created_at":1761843583,"status":"completed","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[{"id":"rs_0ad1ae6a186e745201690399806f4881978af5b1fc084f306e","type":"reasoning","summary":[]},{"id":"fc_0ad1ae6a186e7452016903998145b481978147edc29c8250c0","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_mamm0WNokaTJlgAO8uAxyWBM","name":"weather"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":63,"input_tokens_details":{"cached_tokens":0},"output_tokens":22,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":85},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_00be770fd95642780169b2ff787a04819381df824383b37927","object":"response","created_at":1773338488,"status":"completed","background":false,"completed_at":1773338490,"content_filters":[{"blocked":false,"source_type":"prompt","content_filter_raw":[],"content_filter_results":{"jailbreak":{"detected":false,"filtered":false},"hate":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"}},"content_filter_offsets":{"start_offset":0,"end_offset":70,"check_offset":0}},{"blocked":false,"source_type":"completion","content_filter_raw":[],"content_filter_results":{"protected_material_text":{"detected":false,"filtered":false},"protected_material_code":{"detected":false,"filtered":false},"hate":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"}},"content_filter_offsets":{"start_offset":0,"end_offset":1501,"check_offset":0}}],"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[{"id":"rs_00be770fd95642780169b2ff7962948193a17e31f1d9f67c59","type":"reasoning","summary":[]},{"id":"fc_00be770fd95642780169b2ff7a431c8193bf98e343743fe0ad","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_orP7YgV13UgdVbsOUIkjr0db","name":"weather"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":66,"input_tokens_details":{"cached_tokens":0},"output_tokens":97,"output_tokens_details":{"reasoning_tokens":64},"total_tokens":163},"user":null,"metadata":{}},"sequence_number":15} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 177.438666ms + duration: 405.6985ms - id: 1 request: proto: HTTP/1.1 @@ -85,14 +85,14 @@ interactions: proto_minor: 1 content_length: 740 host: "" - body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_mamm0WNokaTJlgAO8uAxyWBM","name":"weather","type":"function_call"},{"call_id":"call_mamm0WNokaTJlgAO8uAxyWBM","output":"40 C","type":"function_call_output"}],"model":"gpt-5-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}' + body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_orP7YgV13UgdVbsOUIkjr0db","name":"weather","type":"function_call"},{"call_id":"call_orP7YgV13UgdVbsOUIkjr0db","output":"40 C","type":"function_call_output"}],"model":"gpt-5-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses method: POST response: @@ -102,230 +102,140 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0669ae4cb293f3580169039981d420819480db231cc8663959","object":"response","created_at":1761843585,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_0cd9063ccaae2df50169b2ff7ad6308195980a84d94df7acd4","object":"response","created_at":1773338490,"status":"in_progress","background":false,"completed_at":null,"content_filters":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0669ae4cb293f3580169039981d420819480db231cc8663959","object":"response","created_at":1761843585,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_0cd9063ccaae2df50169b2ff7ad6308195980a84d94df7acd4","object":"response","created_at":1773338490,"status":"in_progress","background":false,"completed_at":null,"content_filters":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_0669ae4cb293f358016903998223508194a9c3ccc4d2add0f5","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.added","item":{"id":"rs_0cd9063ccaae2df50169b2ff7c75e48195991e1d4b2139dbcf","type":"reasoning","summary":[]},"output_index":0,"sequence_number":2} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":3,"output_index":0,"item":{"id":"rs_0669ae4cb293f358016903998223508194a9c3ccc4d2add0f5","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.done","item":{"id":"rs_0cd9063ccaae2df50169b2ff7c75e48195991e1d4b2139dbcf","type":"reasoning","summary":[]},"output_index":0,"sequence_number":3} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":4,"output_index":1,"item":{"id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":1,"sequence_number":4} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":5,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":"Current","logprobs":[],"obfuscation":"YUXg8Iykd"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"It's","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"BJRPqakG1lqy","output_index":1,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" temperature","logprobs":[],"obfuscation":"bb6P"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" about","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"CvjaKfe0io","output_index":1,"sequence_number":7} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" in","logprobs":[],"obfuscation":"FeqbqaQiPmHUL"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" ","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"UtxxBwDSpELi4to","output_index":1,"sequence_number":8} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" Florence","logprobs":[],"obfuscation":"SuoIGqz"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"40","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"bq5Ckz9WJxVlbk","output_index":1,"sequence_number":9} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":",","logprobs":[],"obfuscation":"Ij5SSzCgmFlpNav"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"°C","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"v8xn6RJ3u3P2YA","output_index":1,"sequence_number":10} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" Italy","logprobs":[],"obfuscation":"KTJd3yowio"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" (","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"sZX6lE4g2P8irb","output_index":1,"sequence_number":11} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":12,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":":","logprobs":[],"obfuscation":"Bth9GzcDaKwGnO6"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"104","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"iAILT2sUEdzmO","output_index":1,"sequence_number":12} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":13,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" ","logprobs":[],"obfuscation":"MkRBoOMGDR2MDvu"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"°F","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"dK7qgHlVIlQJst","output_index":1,"sequence_number":13} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":14,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":"40","logprobs":[],"obfuscation":"6YIYL3RxP4wi84"} + data: {"type":"response.output_text.delta","content_index":0,"delta":")","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"M9wn0IA0GrkBfdn","output_index":1,"sequence_number":14} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":15,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" °","logprobs":[],"obfuscation":"QiyhSnnmc5fveG"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" in","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"UyRSBRdfsoMlT","output_index":1,"sequence_number":15} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":16,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":"C","logprobs":[],"obfuscation":"8nqRSost8IdQK1f"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Florence","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"hQ1raxr","output_index":1,"sequence_number":16} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":17,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" (","logprobs":[],"obfuscation":"i0gTfMDJ3tzflB"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"5A3hiw9RGEL0sDS","output_index":1,"sequence_number":17} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":18,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":"104","logprobs":[],"obfuscation":"dRcfQEBeWLZkR"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Italy","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"By7qr41e4q","output_index":1,"sequence_number":18} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":19,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" °","logprobs":[],"obfuscation":"eqfOyurzyhXwEJ"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" right","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"FQvm6pMcjw","output_index":1,"sequence_number":19} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":20,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":"F","logprobs":[],"obfuscation":"CCLNJEgnIT3faMo"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" now","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"dVTJea0XGHeF","output_index":1,"sequence_number":20} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":21,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":").\n\n","logprobs":[],"obfuscation":"5Ev3L4gxcaTf"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"iokyOWqwhrFh3G1","output_index":1,"sequence_number":21} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":22,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":"That","logprobs":[],"obfuscation":"pEHQpfcwnAQa"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Would","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"wa7FS9MsHP","output_index":1,"sequence_number":22} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":23,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":"’s","logprobs":[],"obfuscation":"JjWl4Vx4cbvJPO"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" you","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"6H9nBUUeXwB4","output_index":1,"sequence_number":23} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":24,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" very","logprobs":[],"obfuscation":"Gv3mTfCKlM3"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" like","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"G1bHpCWBPaw","output_index":1,"sequence_number":24} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":25,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" hot","logprobs":[],"obfuscation":"lD2UZCEai5kb"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" a","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"8tsw2dulCrMRBl","output_index":1,"sequence_number":25} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":26,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" —","logprobs":[],"obfuscation":"3XSNtZmk5iyS08"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" forecast","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"Zz6nJjA","output_index":1,"sequence_number":26} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":27,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" take","logprobs":[],"obfuscation":"lJJwESHK5Ao"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"c7nabKErXoDGR34","output_index":1,"sequence_number":27} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":28,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" precautions","logprobs":[],"obfuscation":"l8pP"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" humidity","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"Z6a7QXe","output_index":1,"sequence_number":28} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":29,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":":","logprobs":[],"obfuscation":"c3XL2U4knYVRArf"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"/w","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"1wSxByh55RvFUF","output_index":1,"sequence_number":29} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":30,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" stay","logprobs":[],"obfuscation":"fB0L7HvKblC"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"ind","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"Lb24ZTVSdHdPl","output_index":1,"sequence_number":30} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":31,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" hydrated","logprobs":[],"obfuscation":"spMOCpO"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" details","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"DWwfzrPD","output_index":1,"sequence_number":31} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":32,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":",","logprobs":[],"obfuscation":"ZxSlxARmWPSVdc8"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"LCp7KBd4TqWaSvf","output_index":1,"sequence_number":32} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":33,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" avoid","logprobs":[],"obfuscation":"O2EJrU5sCo"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" or","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"dIKmmIa7E44fc","output_index":1,"sequence_number":33} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":34,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" strenuous","logprobs":[],"obfuscation":"VXHTVr"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" safety","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"PU8nPBkVu","output_index":1,"sequence_number":34} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":35,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" outdoor","logprobs":[],"obfuscation":"u5dtEeU5"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" tips","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"O0gnUymFHmE","output_index":1,"sequence_number":35} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":36,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" activity","logprobs":[],"obfuscation":"U7n4V9d"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" for","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"ChQ6YKS4V1HW","output_index":1,"sequence_number":36} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":37,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" in","logprobs":[],"obfuscation":"jlBszwOVTi1yG"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" the","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"YzOFSusFC1aX","output_index":1,"sequence_number":37} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":38,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" midday","logprobs":[],"obfuscation":"LjlKH4TQI"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" heat","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"TAohXyOJHWY","output_index":1,"sequence_number":38} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":39,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":",","logprobs":[],"obfuscation":"Q75aa2MRW4Wl0B1"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":40,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" wear","logprobs":[],"obfuscation":"ik5eRNe9wzL"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":41,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" light","logprobs":[],"obfuscation":"X56lfgK7TN"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":42,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" clothing","logprobs":[],"obfuscation":"AEdkYDW"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":43,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" and","logprobs":[],"obfuscation":"gXRfAUZBv7eM"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":44,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" sunscreen","logprobs":[],"obfuscation":"ONc8XR"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":45,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":",","logprobs":[],"obfuscation":"i5WC6SGVLHdxpww"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":46,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" and","logprobs":[],"obfuscation":"jTn5XtOyMo4X"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":47,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" seek","logprobs":[],"obfuscation":"A7MMXUstGyx"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":48,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" air","logprobs":[],"obfuscation":"jBAmIqPdajUP"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":49,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" conditioning","logprobs":[],"obfuscation":"7GT"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":50,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" or","logprobs":[],"obfuscation":"zkO36wHibZmTy"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":51,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" shade","logprobs":[],"obfuscation":"r08FUDYRX3"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":52,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":".","logprobs":[],"obfuscation":"8WL1k4gCr7hWiYw"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":53,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" Would","logprobs":[],"obfuscation":"mjl5Gax8B3"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":54,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" you","logprobs":[],"obfuscation":"wdtJg7Nb4BsT"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":55,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" like","logprobs":[],"obfuscation":"fTc3TdwAIfP"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":56,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" humidity","logprobs":[],"obfuscation":"z8rpQqw"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":57,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":",","logprobs":[],"obfuscation":"oMgy9Qqsy17fXPp"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":58,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" wind","logprobs":[],"obfuscation":"4UxXmyaM3Fg"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":59,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":",","logprobs":[],"obfuscation":"griV0t18AuG48ck"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":60,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" an","logprobs":[],"obfuscation":"SnqvPe56Ff9aw"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":61,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" hourly","logprobs":[],"obfuscation":"DevE7UbrP"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":62,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" forecast","logprobs":[],"obfuscation":"MBXAMAs"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":63,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":",","logprobs":[],"obfuscation":"DkZwaJROGaET5qh"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":64,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" or","logprobs":[],"obfuscation":"43HaF6XpEzWD8"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":65,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" a","logprobs":[],"obfuscation":"ZMolZAo8kHNhby"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":66,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" multi","logprobs":[],"obfuscation":"Lj4eJPPIQx"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":67,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":"-day","logprobs":[],"obfuscation":"d6jZ36RZnrpX"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":68,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":" outlook","logprobs":[],"obfuscation":"rMzbH7f9"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":69,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"delta":"?","logprobs":[],"obfuscation":"5HInlxq1zrPSPMx"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"?","item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"obfuscation":"GbUlgpPg0Az2PTY","output_index":1,"sequence_number":39} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":70,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"text":"Current temperature in Florence, Italy: 40 °C (104 °F).\n\nThat’s very hot — take precautions: stay hydrated, avoid strenuous outdoor activity in midday, wear light clothing and sunscreen, and seek air conditioning or shade. Would you like humidity, wind, an hourly forecast, or a multi-day outlook?","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","logprobs":[],"output_index":1,"sequence_number":40,"text":"It's about 40°C (104°F) in Florence, Italy right now. Would you like a forecast, humidity/wind details, or safety tips for the heat?"} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":71,"item_id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Current temperature in Florence, Italy: 40 °C (104 °F).\n\nThat’s very hot — take precautions: stay hydrated, avoid strenuous outdoor activity in midday, wear light clothing and sunscreen, and seek air conditioning or shade. Would you like humidity, wind, an hourly forecast, or a multi-day outlook?"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"It's about 40°C (104°F) in Florence, Italy right now. Would you like a forecast, humidity/wind details, or safety tips for the heat?"},"sequence_number":41} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":72,"output_index":1,"item":{"id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Current temperature in Florence, Italy: 40 °C (104 °F).\n\nThat’s very hot — take precautions: stay hydrated, avoid strenuous outdoor activity in midday, wear light clothing and sunscreen, and seek air conditioning or shade. Would you like humidity, wind, an hourly forecast, or a multi-day outlook?"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"It's about 40°C (104°F) in Florence, Italy right now. Would you like a forecast, humidity/wind details, or safety tips for the heat?"}],"role":"assistant"},"output_index":1,"sequence_number":42} event: response.completed - data: {"type":"response.completed","sequence_number":73,"response":{"id":"resp_0669ae4cb293f3580169039981d420819480db231cc8663959","object":"response","created_at":1761843585,"status":"completed","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[{"id":"rs_0669ae4cb293f358016903998223508194a9c3ccc4d2add0f5","type":"reasoning","summary":[]},{"id":"msg_0669ae4cb293f3580169039985fa088194875995735ecbd2d4","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Current temperature in Florence, Italy: 40 °C (104 °F).\n\nThat’s very hot — take precautions: stay hydrated, avoid strenuous outdoor activity in midday, wear light clothing and sunscreen, and seek air conditioning or shade. Would you like humidity, wind, an hourly forecast, or a multi-day outlook?"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":94,"input_tokens_details":{"cached_tokens":0},"output_tokens":262,"output_tokens_details":{"reasoning_tokens":192},"total_tokens":356},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_0cd9063ccaae2df50169b2ff7ad6308195980a84d94df7acd4","object":"response","created_at":1773338490,"status":"completed","background":false,"completed_at":1773338495,"content_filters":[{"blocked":false,"source_type":"completion","content_filter_raw":[],"content_filter_results":{"protected_material_code":{"detected":false,"filtered":false},"hate":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"protected_material_text":{"detected":false,"filtered":false}},"content_filter_offsets":{"start_offset":0,"end_offset":2077,"check_offset":0}}],"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[{"id":"rs_0cd9063ccaae2df50169b2ff7c75e48195991e1d4b2139dbcf","type":"reasoning","summary":[]},{"id":"msg_0cd9063ccaae2df50169b2ff7ecf788195b8853eff14d96f97","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"It's about 40°C (104°F) in Florence, Italy right now. Would you like a forecast, humidity/wind details, or safety tips for the heat?"}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":97,"input_tokens_details":{"cached_tokens":0},"output_tokens":231,"output_tokens_details":{"reasoning_tokens":128},"total_tokens":328},"user":null,"metadata":{}},"sequence_number":43} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 184.712542ms + duration: 477.693542ms diff --git a/providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/simple.yaml b/providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/simple.yaml index eb920348324c5232fd2fc430a234cfc63aac99d9..0b55fda1f89d09850521a39172183633bf80f2b3 100644 --- a/providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/simple.yaml +++ b/providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/simple.yaml @@ -15,23 +15,94 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1520 + content_length: 3190 body: |- { - "id": "resp_056c26e70a8e16d60169039987a9748195bc77169735bc7b98", + "id": "resp_0f4e883cc905fc1e0169b2ff7fc1e48193b221a8039d45d7f5", "object": "response", - "created_at": 1761843591, + "created_at": 1773338495, "status": "completed", "background": false, - "content_filters": null, + "completed_at": 1773338497, + "content_filters": [ + { + "blocked": false, + "source_type": "prompt", + "content_filter_raw": [], + "content_filter_results": { + "hate": { + "filtered": false, + "severity": "safe" + }, + "sexual": { + "filtered": false, + "severity": "safe" + }, + "violence": { + "filtered": false, + "severity": "safe" + }, + "self_harm": { + "filtered": false, + "severity": "safe" + }, + "jailbreak": { + "detected": false, + "filtered": false + } + }, + "content_filter_offsets": { + "start_offset": 0, + "end_offset": 53, + "check_offset": 0 + } + }, + { + "blocked": false, + "source_type": "completion", + "content_filter_raw": [], + "content_filter_results": { + "hate": { + "filtered": false, + "severity": "safe" + }, + "sexual": { + "filtered": false, + "severity": "safe" + }, + "violence": { + "filtered": false, + "severity": "safe" + }, + "self_harm": { + "filtered": false, + "severity": "safe" + }, + "protected_material_code": { + "detected": false, + "filtered": false + }, + "protected_material_text": { + "detected": false, + "filtered": false + } + }, + "content_filter_offsets": { + "start_offset": 0, + "end_offset": 258, + "check_offset": 0 + } + } + ], "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -39,12 +110,12 @@ interactions: "model": "o4-mini", "output": [ { - "id": "rs_056c26e70a8e16d601690399881f0c8195aa22699fa3be5974", + "id": "rs_0f4e883cc905fc1e0169b2ff80a02c8193ae05ac582273c1a1", "type": "reasoning", "summary": [] }, { - "id": "msg_056c26e70a8e16d601690399893da08195a98d7b4b749fcfe4", + "id": "msg_0f4e883cc905fc1e0169b2ff813c888193b2f274ebc8bfff99", "type": "message", "status": "completed", "content": [ @@ -59,8 +130,10 @@ interactions: } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "medium", "summary": null @@ -85,11 +158,11 @@ interactions: "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 72, + "output_tokens": 83, "output_tokens_details": { "reasoning_tokens": 64 }, - "total_tokens": 91 + "total_tokens": 102 }, "user": null, "metadata": {} @@ -99,4 +172,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 1.899735709s + duration: 2.021153417s diff --git a/providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/simple_streaming.yaml b/providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/simple_streaming.yaml index 6093d80d26a6d51eba9e65717652c84dc15ba45c..36f2646ed53e830d51ff529524c431cee9dd4454 100644 --- a/providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/simple_streaming.yaml +++ b/providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses method: POST response: @@ -25,44 +25,44 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_091bc858adb4a712016903998991688197a893284934f22beb","object":"response","created_at":1761843593,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_04fc898e14d0ea490169b2ff81bc3c81949764e3e1c83e9211","object":"response","created_at":1773338497,"status":"in_progress","background":false,"completed_at":null,"content_filters":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_091bc858adb4a712016903998991688197a893284934f22beb","object":"response","created_at":1761843593,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_04fc898e14d0ea490169b2ff81bc3c81949764e3e1c83e9211","object":"response","created_at":1773338497,"status":"in_progress","background":false,"completed_at":null,"content_filters":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_091bc858adb4a7120169039989ef448197b309436b1aa244e7","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.added","item":{"id":"rs_04fc898e14d0ea490169b2ff8274d88194822a9151c093580d","type":"reasoning","summary":[]},"output_index":0,"sequence_number":2} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":3,"output_index":0,"item":{"id":"rs_091bc858adb4a7120169039989ef448197b309436b1aa244e7","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.done","item":{"id":"rs_04fc898e14d0ea490169b2ff8274d88194822a9151c093580d","type":"reasoning","summary":[]},"output_index":0,"sequence_number":3} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":4,"output_index":1,"item":{"id":"msg_091bc858adb4a712016903998a8ecc8197a424735435352dc2","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_04fc898e14d0ea490169b2ff83ded88194bff5ae050886c4c5","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":1,"sequence_number":4} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":5,"item_id":"msg_091bc858adb4a712016903998a8ecc8197a424735435352dc2","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_04fc898e14d0ea490169b2ff83ded88194bff5ae050886c4c5","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_091bc858adb4a712016903998a8ecc8197a424735435352dc2","output_index":1,"content_index":0,"delta":"Oi","logprobs":[],"obfuscation":"d1QayNRkhDJkTu"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Oi","item_id":"msg_04fc898e14d0ea490169b2ff83ded88194bff5ae050886c4c5","logprobs":[],"obfuscation":"Ka4mU0T5g6sMHB","output_index":1,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_091bc858adb4a712016903998a8ecc8197a424735435352dc2","output_index":1,"content_index":0,"delta":"!","logprobs":[],"obfuscation":"jSyFniBbtoZb0gy"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"!","item_id":"msg_04fc898e14d0ea490169b2ff83ded88194bff5ae050886c4c5","logprobs":[],"obfuscation":"NFiL17IUyRMMYJX","output_index":1,"sequence_number":7} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":8,"item_id":"msg_091bc858adb4a712016903998a8ecc8197a424735435352dc2","output_index":1,"content_index":0,"text":"Oi!","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_04fc898e14d0ea490169b2ff83ded88194bff5ae050886c4c5","logprobs":[],"output_index":1,"sequence_number":8,"text":"Oi!"} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":9,"item_id":"msg_091bc858adb4a712016903998a8ecc8197a424735435352dc2","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Oi!"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_04fc898e14d0ea490169b2ff83ded88194bff5ae050886c4c5","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Oi!"},"sequence_number":9} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":10,"output_index":1,"item":{"id":"msg_091bc858adb4a712016903998a8ecc8197a424735435352dc2","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Oi!"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_04fc898e14d0ea490169b2ff83ded88194bff5ae050886c4c5","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Oi!"}],"role":"assistant"},"output_index":1,"sequence_number":10} event: response.completed - data: {"type":"response.completed","sequence_number":11,"response":{"id":"resp_091bc858adb4a712016903998991688197a893284934f22beb","object":"response","created_at":1761843593,"status":"completed","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[{"id":"rs_091bc858adb4a7120169039989ef448197b309436b1aa244e7","type":"reasoning","summary":[]},{"id":"msg_091bc858adb4a712016903998a8ecc8197a424735435352dc2","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Oi!"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":19,"input_tokens_details":{"cached_tokens":0},"output_tokens":8,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":27},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_04fc898e14d0ea490169b2ff81bc3c81949764e3e1c83e9211","object":"response","created_at":1773338497,"status":"completed","background":false,"completed_at":1773338500,"content_filters":[{"blocked":false,"source_type":"prompt","content_filter_raw":[],"content_filter_results":{"jailbreak":{"detected":false,"filtered":false},"hate":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"}},"content_filter_offsets":{"start_offset":0,"end_offset":53,"check_offset":0}},{"blocked":false,"source_type":"completion","content_filter_raw":[],"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"protected_material_code":{"detected":false,"filtered":false},"protected_material_text":{"detected":false,"filtered":false}},"content_filter_offsets":{"start_offset":0,"end_offset":618,"check_offset":0}}],"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[{"id":"rs_04fc898e14d0ea490169b2ff8274d88194822a9151c093580d","type":"reasoning","summary":[]},{"id":"msg_04fc898e14d0ea490169b2ff83ded88194bff5ae050886c4c5","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Oi!"}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":19,"input_tokens_details":{"cached_tokens":0},"output_tokens":187,"output_tokens_details":{"reasoning_tokens":128},"total_tokens":206},"user":null,"metadata":{}},"sequence_number":11} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 174.388291ms + duration: 312.682959ms diff --git a/providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/tool.yaml b/providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/tool.yaml index aca5060eb511c61f6b4d9c0835886607decf1188..650837a44e7a755f9b3cae1652b7965b4e13c07c 100644 --- a/providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/tool.yaml +++ b/providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/tool.yaml @@ -15,23 +15,94 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1865 + content_length: 3536 body: |- { - "id": "resp_0459c9bec5645f0d016903998adb588197a8cb12bdc148c0a5", + "id": "resp_0d5a3f5fc3c510f50169b2ff847220819693f7f8870c970a80", "object": "response", - "created_at": 1761843594, + "created_at": 1773338500, "status": "completed", "background": false, - "content_filters": null, + "completed_at": 1773338503, + "content_filters": [ + { + "blocked": false, + "source_type": "prompt", + "content_filter_raw": [], + "content_filter_results": { + "jailbreak": { + "detected": false, + "filtered": false + }, + "hate": { + "filtered": false, + "severity": "safe" + }, + "sexual": { + "filtered": false, + "severity": "safe" + }, + "violence": { + "filtered": false, + "severity": "safe" + }, + "self_harm": { + "filtered": false, + "severity": "safe" + } + }, + "content_filter_offsets": { + "start_offset": 0, + "end_offset": 711, + "check_offset": 0 + } + }, + { + "blocked": false, + "source_type": "completion", + "content_filter_raw": [], + "content_filter_results": { + "hate": { + "filtered": false, + "severity": "safe" + }, + "sexual": { + "filtered": false, + "severity": "safe" + }, + "violence": { + "filtered": false, + "severity": "safe" + }, + "self_harm": { + "filtered": false, + "severity": "safe" + }, + "protected_material_code": { + "detected": false, + "filtered": false + }, + "protected_material_text": { + "detected": false, + "filtered": false + } + }, + "content_filter_offsets": { + "start_offset": 0, + "end_offset": 924, + "check_offset": 0 + } + } + ], "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -39,22 +110,24 @@ interactions: "model": "o4-mini", "output": [ { - "id": "rs_0459c9bec5645f0d016903998b51ec819785c9c9da0ebeec48", + "id": "rs_0d5a3f5fc3c510f50169b2ff854c9c81969c28992fd9d7fbf5", "type": "reasoning", "summary": [] }, { - "id": "fc_0459c9bec5645f0d016903998c5314819785e0c10f576a252d", + "id": "fc_0d5a3f5fc3c510f50169b2ff8648ac81968ee858470612f8fb", "type": "function_call", "status": "completed", "arguments": "{\"location\":\"Florence, Italy\"}", - "call_id": "call_KsHVstPJ9P9QHZsBVz58GUc6", + "call_id": "call_oRbm1gocfCvhluvIleM1B7gS", "name": "weather" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "medium", "summary": null @@ -94,15 +167,15 @@ interactions: "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 60, + "input_tokens": 61, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 83, + "output_tokens": 135, "output_tokens_details": { "reasoning_tokens": 64 }, - "total_tokens": 143 + "total_tokens": 196 }, "user": null, "metadata": {} @@ -112,7 +185,7 @@ interactions: - application/json status: 200 OK code: 200 - duration: 1.805354834s + duration: 3.199884959s - id: 1 request: proto: HTTP/1.1 @@ -120,30 +193,69 @@ interactions: proto_minor: 1 content_length: 723 host: "" - body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_KsHVstPJ9P9QHZsBVz58GUc6","name":"weather","type":"function_call"},{"call_id":"call_KsHVstPJ9P9QHZsBVz58GUc6","output":"40 C","type":"function_call_output"}],"model":"o4-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}' + body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_oRbm1gocfCvhluvIleM1B7gS","name":"weather","type":"function_call"},{"call_id":"call_oRbm1gocfCvhluvIleM1B7gS","output":"40 C","type":"function_call_output"}],"model":"o4-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 2111 + content_length: 2889 body: |- { - "id": "resp_087bd2312c2d3baa016903998caab081959b29b07fd8007b50", + "id": "resp_065b7e7b1587e20e0169b2ff87c14c8190b2868ef14a41003c", "object": "response", - "created_at": 1761843596, + "created_at": 1773338503, "status": "completed", "background": false, - "content_filters": null, + "completed_at": 1773338504, + "content_filters": [ + { + "blocked": false, + "source_type": "completion", + "content_filter_raw": [], + "content_filter_results": { + "hate": { + "filtered": false, + "severity": "safe" + }, + "sexual": { + "filtered": false, + "severity": "safe" + }, + "violence": { + "filtered": false, + "severity": "safe" + }, + "self_harm": { + "filtered": false, + "severity": "safe" + }, + "protected_material_code": { + "detected": false, + "filtered": false + }, + "protected_material_text": { + "detected": false, + "filtered": false + } + }, + "content_filter_offsets": { + "start_offset": 0, + "end_offset": 514, + "check_offset": 0 + } + } + ], "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -151,12 +263,7 @@ interactions: "model": "o4-mini", "output": [ { - "id": "rs_087bd2312c2d3baa016903998d0c088195808061e1055e926d", - "type": "reasoning", - "summary": [] - }, - { - "id": "msg_087bd2312c2d3baa016903998efbd48195b7dd1b75dcad44c6", + "id": "msg_065b7e7b1587e20e0169b2ff8881a881908702d31895cc8a8e", "type": "message", "status": "completed", "content": [ @@ -164,15 +271,17 @@ interactions: "type": "output_text", "annotations": [], "logprobs": [], - "text": "The current temperature in Florence, Italy is 40 \u00b0C. It\u2019s quite hot\u2014make sure to stay hydrated, seek shade when you can, and limit prolonged sun exposure if you\u2019re out and about." + "text": "The current temperature in Florence, Italy is 40\u00b0C. It's quite hot! Make sure to stay hydrated and seek shade during the hottest parts of the day." } ], "role": "assistant" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "medium", "summary": null @@ -212,15 +321,15 @@ interactions: "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 91, + "input_tokens": 92, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 112, + "output_tokens": 36, "output_tokens_details": { - "reasoning_tokens": 64 + "reasoning_tokens": 0 }, - "total_tokens": 203 + "total_tokens": 128 }, "user": null, "metadata": {} @@ -230,4 +339,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 3.146838417s + duration: 1.600062084s diff --git a/providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/tool_streaming.yaml b/providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/tool_streaming.yaml index b9addb4956844402fdf7cb3351cbcc977833880d..6a643c27f87418188605ffc9436140879cf047f6 100644 --- a/providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/tool_streaming.yaml +++ b/providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses method: POST response: @@ -25,59 +25,59 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0b7f08ced9d9d7bd016903998fd1908196895bd1c221f34e18","object":"response","created_at":1761843599,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_00bdb7b5e1faa51e0169b2ff894b54819488edf7aa12c48d1e","object":"response","created_at":1773338505,"status":"in_progress","background":false,"completed_at":null,"content_filters":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0b7f08ced9d9d7bd016903998fd1908196895bd1c221f34e18","object":"response","created_at":1761843599,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_00bdb7b5e1faa51e0169b2ff894b54819488edf7aa12c48d1e","object":"response","created_at":1773338505,"status":"in_progress","background":false,"completed_at":null,"content_filters":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_0b7f08ced9d9d7bd01690399902bb48196b17ce126fbf2111e","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.added","item":{"id":"rs_00bdb7b5e1faa51e0169b2ff8a3a4c819498c8a88763802872","type":"reasoning","summary":[]},"output_index":0,"sequence_number":2} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":3,"output_index":0,"item":{"id":"rs_0b7f08ced9d9d7bd01690399902bb48196b17ce126fbf2111e","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.done","item":{"id":"rs_00bdb7b5e1faa51e0169b2ff8a3a4c819498c8a88763802872","type":"reasoning","summary":[]},"output_index":0,"sequence_number":3} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":4,"output_index":1,"item":{"id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","type":"function_call","status":"in_progress","arguments":"","call_id":"call_JJ5rFdfdpHh9ZJy19XQegVfz","name":"weather"}} + data: {"type":"response.output_item.added","item":{"id":"fc_00bdb7b5e1faa51e0169b2ff8b6d4c8194b637b8b0276a38e5","type":"function_call","status":"in_progress","arguments":"","call_id":"call_NXYsTGpzv13eQ9OObBiFDEoq","name":"weather"},"output_index":1,"sequence_number":4} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":5,"item_id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","output_index":1,"delta":"{\"","obfuscation":"cgjpCLpTcB9Zf2"} + data: {"type":"response.function_call_arguments.delta","delta":"{\"","item_id":"fc_00bdb7b5e1faa51e0169b2ff8b6d4c8194b637b8b0276a38e5","obfuscation":"OWmEGyBIWJYnFX","output_index":1,"sequence_number":5} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":6,"item_id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","output_index":1,"delta":"location","obfuscation":"XPmmF00x"} + data: {"type":"response.function_call_arguments.delta","delta":"location","item_id":"fc_00bdb7b5e1faa51e0169b2ff8b6d4c8194b637b8b0276a38e5","obfuscation":"mSflz90d","output_index":1,"sequence_number":6} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":7,"item_id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","output_index":1,"delta":"\":\"","obfuscation":"DUBg9hoAsCbE6"} + data: {"type":"response.function_call_arguments.delta","delta":"\":\"","item_id":"fc_00bdb7b5e1faa51e0169b2ff8b6d4c8194b637b8b0276a38e5","obfuscation":"uJzzs2YUl9hJw","output_index":1,"sequence_number":7} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":8,"item_id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","output_index":1,"delta":"Flor","obfuscation":"VpK5lvyLsltv"} + data: {"type":"response.function_call_arguments.delta","delta":"Flor","item_id":"fc_00bdb7b5e1faa51e0169b2ff8b6d4c8194b637b8b0276a38e5","obfuscation":"8syOPdgvJ2bT","output_index":1,"sequence_number":8} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":9,"item_id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","output_index":1,"delta":"ence","obfuscation":"0XKHIXG3tLBQ"} + data: {"type":"response.function_call_arguments.delta","delta":"ence","item_id":"fc_00bdb7b5e1faa51e0169b2ff8b6d4c8194b637b8b0276a38e5","obfuscation":"92Kj3IwboyCu","output_index":1,"sequence_number":9} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":10,"item_id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","output_index":1,"delta":",","obfuscation":"n4lnmQ8LR667bXP"} + data: {"type":"response.function_call_arguments.delta","delta":",","item_id":"fc_00bdb7b5e1faa51e0169b2ff8b6d4c8194b637b8b0276a38e5","obfuscation":"04WqviHHCUj8vLH","output_index":1,"sequence_number":10} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":11,"item_id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","output_index":1,"delta":" Italy","obfuscation":"M0QDr2aViB"} + data: {"type":"response.function_call_arguments.delta","delta":" Italy","item_id":"fc_00bdb7b5e1faa51e0169b2ff8b6d4c8194b637b8b0276a38e5","obfuscation":"3feKgeRIgy","output_index":1,"sequence_number":11} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":12,"item_id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","output_index":1,"delta":"\"}","obfuscation":"c3YC6xIH7lcYjT"} + data: {"type":"response.function_call_arguments.delta","delta":"\"}","item_id":"fc_00bdb7b5e1faa51e0169b2ff8b6d4c8194b637b8b0276a38e5","obfuscation":"LbqoqFyWMzpWWN","output_index":1,"sequence_number":12} event: response.function_call_arguments.done - data: {"type":"response.function_call_arguments.done","sequence_number":13,"item_id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","output_index":1,"arguments":"{\"location\":\"Florence, Italy\"}"} + data: {"type":"response.function_call_arguments.done","arguments":"{\"location\":\"Florence, Italy\"}","item_id":"fc_00bdb7b5e1faa51e0169b2ff8b6d4c8194b637b8b0276a38e5","output_index":1,"sequence_number":13} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":14,"output_index":1,"item":{"id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_JJ5rFdfdpHh9ZJy19XQegVfz","name":"weather"}} + data: {"type":"response.output_item.done","item":{"id":"fc_00bdb7b5e1faa51e0169b2ff8b6d4c8194b637b8b0276a38e5","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_NXYsTGpzv13eQ9OObBiFDEoq","name":"weather"},"output_index":1,"sequence_number":14} event: response.completed - data: {"type":"response.completed","sequence_number":15,"response":{"id":"resp_0b7f08ced9d9d7bd016903998fd1908196895bd1c221f34e18","object":"response","created_at":1761843599,"status":"completed","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[{"id":"rs_0b7f08ced9d9d7bd01690399902bb48196b17ce126fbf2111e","type":"reasoning","summary":[]},{"id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_JJ5rFdfdpHh9ZJy19XQegVfz","name":"weather"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":60,"input_tokens_details":{"cached_tokens":0},"output_tokens":19,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":79},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_00bdb7b5e1faa51e0169b2ff894b54819488edf7aa12c48d1e","object":"response","created_at":1773338505,"status":"completed","background":false,"completed_at":1773338507,"content_filters":[{"blocked":false,"source_type":"prompt","content_filter_raw":[],"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"jailbreak":{"detected":false,"filtered":false}},"content_filter_offsets":{"start_offset":0,"end_offset":70,"check_offset":0}},{"blocked":false,"source_type":"completion","content_filter_raw":[],"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"protected_material_code":{"detected":false,"filtered":false},"protected_material_text":{"detected":false,"filtered":false}},"content_filter_offsets":{"start_offset":0,"end_offset":1011,"check_offset":0}}],"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[{"id":"rs_00bdb7b5e1faa51e0169b2ff8a3a4c819498c8a88763802872","type":"reasoning","summary":[]},{"id":"fc_00bdb7b5e1faa51e0169b2ff8b6d4c8194b637b8b0276a38e5","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_NXYsTGpzv13eQ9OObBiFDEoq","name":"weather"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":61,"input_tokens_details":{"cached_tokens":0},"output_tokens":165,"output_tokens_details":{"reasoning_tokens":128},"total_tokens":226},"user":null,"metadata":{}},"sequence_number":15} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 182.661166ms + duration: 594.581ms - id: 1 request: proto: HTTP/1.1 @@ -85,14 +85,14 @@ interactions: proto_minor: 1 content_length: 737 host: "" - body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_JJ5rFdfdpHh9ZJy19XQegVfz","name":"weather","type":"function_call"},{"call_id":"call_JJ5rFdfdpHh9ZJy19XQegVfz","output":"40 C","type":"function_call_output"}],"model":"o4-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}' + body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_NXYsTGpzv13eQ9OObBiFDEoq","name":"weather","type":"function_call"},{"call_id":"call_NXYsTGpzv13eQ9OObBiFDEoq","output":"40 C","type":"function_call_output"}],"model":"o4-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses method: POST response: @@ -102,149 +102,194 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_011b2d0f6a78b665016903999115ec819099779a1d80618d98","object":"response","created_at":1761843601,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_04677a9552abf9510169b2ff8c0e9c81908a881db0873439a0","object":"response","created_at":1773338508,"status":"in_progress","background":false,"completed_at":null,"content_filters":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_011b2d0f6a78b665016903999115ec819099779a1d80618d98","object":"response","created_at":1761843601,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_04677a9552abf9510169b2ff8c0e9c81908a881db0873439a0","object":"response","created_at":1773338508,"status":"in_progress","background":false,"completed_at":null,"content_filters":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":0,"sequence_number":2} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":3,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":3} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":4,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":"The","logprobs":[],"obfuscation":"upQlXZ1sxNPrl"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"The","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"UcEU7xMjzTGge","output_index":0,"sequence_number":4} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":5,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" current","logprobs":[],"obfuscation":"aSzbaG8e"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" current","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"TQmF2uem","output_index":0,"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" temperature","logprobs":[],"obfuscation":"50XM"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" temperature","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"00De","output_index":0,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" in","logprobs":[],"obfuscation":"ryo5epJwpylEV"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" in","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"BQ7zFM7eUXrnd","output_index":0,"sequence_number":7} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" Florence","logprobs":[],"obfuscation":"aKlVZgp"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Florence","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"CHLF13R","output_index":0,"sequence_number":8} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":",","logprobs":[],"obfuscation":"ZYEhjo7ByuNpzcu"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"2ghWe7JZ8CCYkta","output_index":0,"sequence_number":9} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" Italy","logprobs":[],"obfuscation":"8BAYTNuT4p"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Italy","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"Q9K97vNfY3","output_index":0,"sequence_number":10} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" is","logprobs":[],"obfuscation":"ajjWYDwbpiHbs"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" is","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"141M2fzSrEn2g","output_index":0,"sequence_number":11} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":12,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" ","logprobs":[],"obfuscation":"g7ktsmII0tXJGG5"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" ","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"R93DFKflefldQQd","output_index":0,"sequence_number":12} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":13,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":"40","logprobs":[],"obfuscation":"6FK8Wcqq10DCmB"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"40","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"cBHHFR0UZJ1NT6","output_index":0,"sequence_number":13} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":14,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":"°C","logprobs":[],"obfuscation":"ir6Yd3qwQEt7s9"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"°C","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"qccGeI7wUqRNZB","output_index":0,"sequence_number":14} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":15,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":".","logprobs":[],"obfuscation":"JthgyWnlKLjRxlO"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"1BsRTdkhpStjy6e","output_index":0,"sequence_number":15} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":16,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" It","logprobs":[],"obfuscation":"6UmRpKmTQsoOz"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" It","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"KY5m0ThrZ250a","output_index":0,"sequence_number":16} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":17,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":"’s","logprobs":[],"obfuscation":"A3Yl5GKGGyYKHG"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"’s","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"82lkule1pN4V8x","output_index":0,"sequence_number":17} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":18,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" quite","logprobs":[],"obfuscation":"C4NGZPVBW2"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" quite","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"MwDIapjkGB","output_index":0,"sequence_number":18} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":19,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" hot","logprobs":[],"obfuscation":"im74MTKbKvre"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" hot","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"lWw9Q8zHkKVc","output_index":0,"sequence_number":19} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":20,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":",","logprobs":[],"obfuscation":"xpP4ecr8NPPdvF9"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"—","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"g9Mp06thsbgZRWi","output_index":0,"sequence_number":20} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":21,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" so","logprobs":[],"obfuscation":"0gVvoMqsB57mm"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"make","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"pDNQSTkAjRsj","output_index":0,"sequence_number":21} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":22,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" you","logprobs":[],"obfuscation":"QeH6z885stmw"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" sure","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"H8K6djY0WtI","output_index":0,"sequence_number":22} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":23,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" may","logprobs":[],"obfuscation":"yzmAT5Opdade"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" to","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"DeZtScM2UmlDo","output_index":0,"sequence_number":23} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":24,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" want","logprobs":[],"obfuscation":"YnVuSooqWAJ"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" stay","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"t4xbTMNbzrj","output_index":0,"sequence_number":24} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":25,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" to","logprobs":[],"obfuscation":"EfFNHydyBNMfe"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" hydrated","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"mIbVJ1A","output_index":0,"sequence_number":25} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":26,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" stay","logprobs":[],"obfuscation":"NP35x6gPd7x"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" and","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"Xl7de3laFrSy","output_index":0,"sequence_number":26} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":27,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" hydrated","logprobs":[],"obfuscation":"BvX5LCw"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" seek","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"b1vKcJMUMIp","output_index":0,"sequence_number":27} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":28,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":",","logprobs":[],"obfuscation":"5wcbwriUGbmSmUU"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" shade","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"aDsqOSxFPq","output_index":0,"sequence_number":28} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":29,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" wear","logprobs":[],"obfuscation":"1rxRb2COyGo"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" or","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"Dhm9pmeuFDJ0B","output_index":0,"sequence_number":29} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":30,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" light","logprobs":[],"obfuscation":"up3raT1fLS"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" air","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"iTKgDd8Hd29H","output_index":0,"sequence_number":30} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":31,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" clothing","logprobs":[],"obfuscation":"YJGqtvy"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"-conditioned","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"TKv0","output_index":0,"sequence_number":31} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":32,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":",","logprobs":[],"obfuscation":"iTxRJkB46mLuiUM"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" areas","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"hDDrZMT743","output_index":0,"sequence_number":32} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":33,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" and","logprobs":[],"obfuscation":"xq1m1FLe7YXL"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" if","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"9XpESOejU5KpU","output_index":0,"sequence_number":33} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":34,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" seek","logprobs":[],"obfuscation":"drb00voTDEa"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" you","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"h0CrgzsY3EW7","output_index":0,"sequence_number":34} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":35,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" shade","logprobs":[],"obfuscation":"YeAZdx1N7d"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"’re","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"25bM8MeHz6Hx6","output_index":0,"sequence_number":35} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":36,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" or","logprobs":[],"obfuscation":"RTj2UdDZAa9TL"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" outdoors","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"MLgY0ST","output_index":0,"sequence_number":36} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":37,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" air","logprobs":[],"obfuscation":"K39V5Cqf1MfT"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"0Ymx1vETtqPOTVA","output_index":0,"sequence_number":37} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":38,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":"-conditioned","logprobs":[],"obfuscation":"pAYl"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Let","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"zysyHNhN4yxC","output_index":0,"sequence_number":38} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":39,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" spaces","logprobs":[],"obfuscation":"XrtLgvxDI"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" me","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"2zFNY3Uj3aimY","output_index":0,"sequence_number":39} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":40,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" when","logprobs":[],"obfuscation":"T7LUeJRYRuu"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" know","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"xWZA92f0g6O","output_index":0,"sequence_number":40} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":41,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":" possible","logprobs":[],"obfuscation":"6rU23jI"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" if","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"TyMuhxCCYj3qg","output_index":0,"sequence_number":41} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":42,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"delta":".","logprobs":[],"obfuscation":"Dr0TXhpKpU4Dccf"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" you","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"nlGtS83gEhdn","output_index":0,"sequence_number":42} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":"’d","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"e82hGUi7eiajPd","output_index":0,"sequence_number":43} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" like","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"xyn3lh9LTCx","output_index":0,"sequence_number":44} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" more","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"hSNiJeGwN0d","output_index":0,"sequence_number":45} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" details","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"2NJMpjpT","output_index":0,"sequence_number":46} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" such","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"FETL3tblL9j","output_index":0,"sequence_number":47} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" as","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"R5VUVJ11BNqZP","output_index":0,"sequence_number":48} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" humidity","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"uB0jwtV","output_index":0,"sequence_number":49} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"RlhboIhSSi6SR3D","output_index":0,"sequence_number":50} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" wind","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"kZYo6MrSx4a","output_index":0,"sequence_number":51} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" speed","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"z9TT3OcZih","output_index":0,"sequence_number":52} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"9hTV2YGOmBkJDHl","output_index":0,"sequence_number":53} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" or","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"FfsNxdZ5m2VDN","output_index":0,"sequence_number":54} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" a","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"fwT53Dr1D4u8SO","output_index":0,"sequence_number":55} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" forecast","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"LqF7j1G","output_index":0,"sequence_number":56} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":".","item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"obfuscation":"SZqM8GuJmhxmiGl","output_index":0,"sequence_number":57} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":43,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"text":"The current temperature in Florence, Italy is 40°C. It’s quite hot, so you may want to stay hydrated, wear light clothing, and seek shade or air-conditioned spaces when possible.","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","logprobs":[],"output_index":0,"sequence_number":58,"text":"The current temperature in Florence, Italy is 40°C. It’s quite hot—make sure to stay hydrated and seek shade or air-conditioned areas if you’re outdoors. Let me know if you’d like more details such as humidity, wind speed, or a forecast."} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":44,"item_id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C. It’s quite hot, so you may want to stay hydrated, wear light clothing, and seek shade or air-conditioned spaces when possible."}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C. It’s quite hot—make sure to stay hydrated and seek shade or air-conditioned areas if you’re outdoors. Let me know if you’d like more details such as humidity, wind speed, or a forecast."},"sequence_number":59} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":45,"output_index":0,"item":{"id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C. It’s quite hot, so you may want to stay hydrated, wear light clothing, and seek shade or air-conditioned spaces when possible."}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C. It’s quite hot—make sure to stay hydrated and seek shade or air-conditioned areas if you’re outdoors. Let me know if you’d like more details such as humidity, wind speed, or a forecast."}],"role":"assistant"},"output_index":0,"sequence_number":60} event: response.completed - data: {"type":"response.completed","sequence_number":46,"response":{"id":"resp_011b2d0f6a78b665016903999115ec819099779a1d80618d98","object":"response","created_at":1761843601,"status":"completed","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[{"id":"msg_011b2d0f6a78b6650169039991fff08190bfc35efd03edd318","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C. It’s quite hot, so you may want to stay hydrated, wear light clothing, and seek shade or air-conditioned spaces when possible."}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":91,"input_tokens_details":{"cached_tokens":0},"output_tokens":43,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":134},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_04677a9552abf9510169b2ff8c0e9c81908a881db0873439a0","object":"response","created_at":1773338508,"status":"completed","background":false,"completed_at":1773338509,"content_filters":[{"blocked":false,"source_type":"completion","content_filter_raw":[],"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"protected_material_code":{"detected":false,"filtered":false},"protected_material_text":{"detected":false,"filtered":false}},"content_filter_offsets":{"start_offset":0,"end_offset":605,"check_offset":0}}],"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[{"id":"msg_04677a9552abf9510169b2ff8ce14c81908a025066f0e1db71","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C. It’s quite hot—make sure to stay hydrated and seek shade or air-conditioned areas if you’re outdoors. Let me know if you’d like more details such as humidity, wind speed, or a forecast."}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":92,"input_tokens_details":{"cached_tokens":0},"output_tokens":58,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":150},"user":null,"metadata":{}},"sequence_number":61} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 182.018917ms + duration: 434.499208ms diff --git a/providertests/testdata/TestAzureResponsesWithSummaryThinking/azure-gpt-5-mini/thinking-streaming.yaml b/providertests/testdata/TestAzureResponsesWithSummaryThinking/azure-gpt-5-mini/thinking-streaming.yaml index 718a3901be742f317fb7ca6cae9b99c63a9e4783..f0c56303d7817baaf81cff4d5368f11eeba07d9d 100644 --- a/providertests/testdata/TestAzureResponsesWithSummaryThinking/azure-gpt-5-mini/thinking-streaming.yaml +++ b/providertests/testdata/TestAzureResponsesWithSummaryThinking/azure-gpt-5-mini/thinking-streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses method: POST response: @@ -25,347 +25,350 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0c9091ebd75b8c770169039a06b7f081939b87f99a680e70b5","object":"response","created_at":1761843718,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_04fcf497c9f5b8760169b2ff9ff27081959917b8d19daecc20","object":"response","created_at":1773338527,"status":"in_progress","background":false,"completed_at":null,"content_filters":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0c9091ebd75b8c770169039a06b7f081939b87f99a680e70b5","object":"response","created_at":1761843718,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_04fcf497c9f5b8760169b2ff9ff27081959917b8d19daecc20","object":"response","created_at":1773338527,"status":"in_progress","background":false,"completed_at":null,"content_filters":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","type":"reasoning","encrypted_content":"gAAAAABpA5oHfxppmLDktuWhr3oHJCbNjqjxJ0b13z0IfCwDZeMOhhO1IPpfxxFzdV-VYzhQunZ_yTOCappVChaMMcqXxDEi0PBgY6bgzff-D0uQMn8zwZ9MjnH5WXndf2bK-s3MSKIUiyi3T3lePqNtYgUYZPbpNnvYjiSlhdjUuoXrcI6__41YIE68jdYn5dbUp2qyjAcWylGSmZlWNxnYiHrXnvEQgVeFjUMVwbG0_Cl7btjafxmZoeTjSC7FowwBwmC24VTjcgqB3-bZpvjHOrvIivS7IFvA2vle60X12M0HQMgHpl3wVaYUCQ8SQ9HLjyOTetNCmzrFcq3S7G1bHaAhwbiM9WPvuDz4zTiL2-h7whrWydnnD0AmoPAtUkHVno_XePFL_2x7-ljDpM8QX0hR6BtMp3VHRcXHAImNwnuFJ4ivrBsIdxhYfNBaUEAdCJPzdGJf567PQDfXjE0MT2yODxkU6qkkSzfqzMrfwtSZmq_sQl7rkPX38QdnedK5U9IIFNa8Akc9ltRR_WEw-miMdfLYgNEAB9YJw6tG2uHSdVYx6SJuzrT6ZwERJ-2pdnD3H0pS5C6vSrhO_FiyeYdnP4-7G21uGPLBd65lYOG5ckHBYCOTgCSoS4udb6xGPeNh4AJEVp7h4U_kWq3WE2cfj-Zn5_5IGRpLuU2fkWw4q9stbyaTmjJUZcfv-CwAvhRww7HPSNyz7k_Ee-0cLv3SxBv_366eFSHb9LENqpWZikQuHl3-VF3gIcPVlsKHsctxGiAe_UmwJzFeDZY6rUPv6lIpSwfOJfpRf5XRjya0GTGCBiI=","summary":[]}} + data: {"type":"response.output_item.added","item":{"id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","type":"reasoning","encrypted_content":"gAAAAABpsv-hvjC3ll56K8M8nnWZrQ-hbWQLb5b_X52f7q23IBmVXDU0nN6VSIiV-o358MizEILazwWUyq79OIOkNK1okzmE7rhJseAha9MK_tchfBJKuhQjm6SyIHK8DHCKOJgI1EIxzcOVflMKmgAJPXLDxRQss9fK_3gJCAGeFh_wy5Ok9BgdJ106wJGU9Jn4LrE17vdXWDfrsCLDscLiVa1jMBV9G_Qmw0m0iquamPG-K492beGN3ISA40E1qln74_dcHjKoxzIL7-wrKnUPHewKWW3MaivcnCjY6OPlxsalOTBUng18_Xzh-Xin5cN5BRDpCbUgl16hMKpq8yUnyzkJa-3joOHbETytktwBhq_4fOhTzWsRogx_uw5Yz2yFvYSVtJFXB9xA64jMaTA3jxpdMyuDRPWXZ5x7h4exGddbP_ED0qqd_zCe3f1nWEywA7U-_KaRQjk1zG54FRWiqZ6nWsOnNWKtOttPUWzQBXU17pg3KyuDidX07RSRXFa-Qs3RtgUuwqRhfp1dmmCkDdct-W4QlT-F-bAf-Pq7dXpVGSZ4cUUQk1uBktBqjs_agHPgn6m7Lap4ALe08HM4lYsj3FUPPSn6pUmRbzEK85HNVhXcSX8JuE8yu0AeIGKIrKYcD4BAdo01DFzUjAQJCXTA4QVoJzCeDPoPFU8uZxVHiN7fW1V-UmqOv_isC2uySwEYdy-hCMH20bjxMIAAH0wX2YzeJtIYE0pqNeCIhxng6tOcZmBGT7GOXMzkycjPvEOSrBJ6MawLCfxpSVeeGMADWPMqkPQfW-AlMH5ogMnDWk_PXm4=","summary":[]},"output_index":0,"sequence_number":2} event: response.reasoning_summary_part.added - data: {"type":"response.reasoning_summary_part.added","sequence_number":3,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"part":{"type":"summary_text","text":""}} + data: {"type":"response.reasoning_summary_part.added","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","output_index":0,"part":{"type":"summary_text","text":""},"sequence_number":3,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":4,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":"**Checking","obfuscation":"ZD5qQr"} + data: {"type":"response.reasoning_summary_text.delta","delta":"**Getting","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"qWCdeCA","output_index":0,"sequence_number":4,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":5,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" the","obfuscation":"UdDx5nQAVP45"} + data: {"type":"response.reasoning_summary_text.delta","delta":" weather","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"T4PfmQ2f","output_index":0,"sequence_number":5,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":6,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" weather","obfuscation":"KQnZy5Vc"} + data: {"type":"response.reasoning_summary_text.delta","delta":" for","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"c6YyfOlYgiBY","output_index":0,"sequence_number":6,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":7,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" in","obfuscation":"3aW6QjZymesN1"} + data: {"type":"response.reasoning_summary_text.delta","delta":" Florence","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"0hXRmWv","output_index":0,"sequence_number":7,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":8,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" Florence","obfuscation":"uK2DNjX"} + data: {"type":"response.reasoning_summary_text.delta","delta":"**\n\nThe","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"vaYyITNsF","output_index":0,"sequence_number":8,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":9,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":"**\n\nThe","obfuscation":"8K2k0gvpc"} + data: {"type":"response.reasoning_summary_text.delta","delta":" user","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"ehXL8sTXut3","output_index":0,"sequence_number":9,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":10,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" user","obfuscation":"tzmx95KR8sC"} + data: {"type":"response.reasoning_summary_text.delta","delta":" wants","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"NQXHF7jVJ7","output_index":0,"sequence_number":10,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":11,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" wants","obfuscation":"ZHhQKoXueh"} + data: {"type":"response.reasoning_summary_text.delta","delta":" to","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"ut4cDOeIRAh7k","output_index":0,"sequence_number":11,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":12,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" to","obfuscation":"SFCm5WizbKpU1"} + data: {"type":"response.reasoning_summary_text.delta","delta":" know","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"IrmD5w5bWUD","output_index":0,"sequence_number":12,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":13,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" know","obfuscation":"O1KRvH3M9Oh"} + data: {"type":"response.reasoning_summary_text.delta","delta":" the","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"rPAe9zufbVSj","output_index":0,"sequence_number":13,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":14,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" the","obfuscation":"qjHPP0sufxuP"} + data: {"type":"response.reasoning_summary_text.delta","delta":" weather","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"so7jN40r","output_index":0,"sequence_number":14,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":15,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" weather","obfuscation":"2uCklVPv"} + data: {"type":"response.reasoning_summary_text.delta","delta":" in","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"fj7oZKUUIIMki","output_index":0,"sequence_number":15,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":16,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" in","obfuscation":"KEp2TpfCrMONL"} + data: {"type":"response.reasoning_summary_text.delta","delta":" Florence","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"S8sMt98","output_index":0,"sequence_number":16,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":17,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" Florence","obfuscation":"Cq7O3RK"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"VFmsUpr1VKgFiCa","output_index":0,"sequence_number":17,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":18,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":",","obfuscation":"BS9oEz2cLKwuA2W"} + data: {"type":"response.reasoning_summary_text.delta","delta":" Italy","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"xEQX1dCgll","output_index":0,"sequence_number":18,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":19,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" Italy","obfuscation":"nWeCzUC36T"} + data: {"type":"response.reasoning_summary_text.delta","delta":".","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"hdqgpqnLrsmKgW3","output_index":0,"sequence_number":19,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":20,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":".","obfuscation":"Ebs3L4rPWdbTUxi"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"0VSwVPGVbeZjiy","output_index":0,"sequence_number":20,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":21,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" I","obfuscation":"wJslgRTaDNZcLC"} + data: {"type":"response.reasoning_summary_text.delta","delta":" see","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"bujcjk4m8WBB","output_index":0,"sequence_number":21,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":22,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" have","obfuscation":"OTo85cU3Xls"} + data: {"type":"response.reasoning_summary_text.delta","delta":" that","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"f1Ca1cYR8hB","output_index":0,"sequence_number":22,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":23,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" a","obfuscation":"r5EX1KM8gR6WYM"} + data: {"type":"response.reasoning_summary_text.delta","delta":" we","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"8Jy9Adq0tLCVj","output_index":0,"sequence_number":23,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":24,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" function","obfuscation":"5JjfFUn"} + data: {"type":"response.reasoning_summary_text.delta","delta":" have","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"QI4JvzBo233","output_index":0,"sequence_number":24,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":25,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" available","obfuscation":"FzQgwx"} + data: {"type":"response.reasoning_summary_text.delta","delta":" a","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"LFiRia1ogHTg1L","output_index":0,"sequence_number":25,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":26,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" for","obfuscation":"D7VGcsfBXSvK"} + data: {"type":"response.reasoning_summary_text.delta","delta":" tool","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"84wM7PMev5Y","output_index":0,"sequence_number":26,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":27,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" this","obfuscation":"Te8DS1S87n9"} + data: {"type":"response.reasoning_summary_text.delta","delta":" to","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"LxOIHM9wu4NcB","output_index":0,"sequence_number":27,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":28,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":",","obfuscation":"Ltfq3FqZdGZPBDm"} + data: {"type":"response.reasoning_summary_text.delta","delta":" retrieve","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"rqaY5OK","output_index":0,"sequence_number":28,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":29,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" specifically","obfuscation":"RRt"} + data: {"type":"response.reasoning_summary_text.delta","delta":" weather","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"WSi2o76q","output_index":0,"sequence_number":29,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":30,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" designed","obfuscation":"H2Oepbo"} + data: {"type":"response.reasoning_summary_text.delta","delta":" data","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"6SdhVtOAAjR","output_index":0,"sequence_number":30,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":31,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" to","obfuscation":"YOEEdM5o4HMu6"} + data: {"type":"response.reasoning_summary_text.delta","delta":".","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"X5cO4fXeXOrZVhZ","output_index":0,"sequence_number":31,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":32,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" take","obfuscation":"otwy4nQJ4SW"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"0JPQnFY0hmzeLc","output_index":0,"sequence_number":32,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":33,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" the","obfuscation":"QVohITAnifu9"} + data: {"type":"response.reasoning_summary_text.delta","delta":"’ll","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"jzxGqJHusBmco","output_index":0,"sequence_number":33,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":34,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" location","obfuscation":"nCHirgu"} + data: {"type":"response.reasoning_summary_text.delta","delta":" call","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"D58DRKSnhYu","output_index":0,"sequence_number":34,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":35,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" as","obfuscation":"1oxHGAtqRypyR"} + data: {"type":"response.reasoning_summary_text.delta","delta":" the","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"mG6K2EhaRsEP","output_index":0,"sequence_number":35,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":36,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" a","obfuscation":"3uLeP2kJbW2yuN"} + data: {"type":"response.reasoning_summary_text.delta","delta":" function","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"pSXWDLc","output_index":0,"sequence_number":36,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":37,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" string","obfuscation":"NkiYI4gal"} + data: {"type":"response.reasoning_summary_text.delta","delta":" directly","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"3VGEHIG","output_index":0,"sequence_number":37,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":38,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":".","obfuscation":"iPK84iI57rqNrlu"} + data: {"type":"response.reasoning_summary_text.delta","delta":" with","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"6z5u1xksox5","output_index":0,"sequence_number":38,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":39,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" Since","obfuscation":"dtArqMpHn0"} + data: {"type":"response.reasoning_summary_text.delta","delta":" the","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"StybTL4U7S0y","output_index":0,"sequence_number":39,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":40,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" there","obfuscation":"q46iKUMq0o"} + data: {"type":"response.reasoning_summary_text.delta","delta":" location","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"fpg7yMG","output_index":0,"sequence_number":40,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":41,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":"’s","obfuscation":"H5jyxCJYeV4pyc"} + data: {"type":"response.reasoning_summary_text.delta","delta":" specified","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"ZcsBaJ","output_index":0,"sequence_number":41,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":42,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" only","obfuscation":"xWvgBOa9y29"} + data: {"type":"response.reasoning_summary_text.delta","delta":" as","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"4rD2twR8Y1xDB","output_index":0,"sequence_number":42,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":43,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" one","obfuscation":"gZm20XZ0MnSV"} + data: {"type":"response.reasoning_summary_text.delta","delta":" \"","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"bbYlCLQPmZRdSP","output_index":0,"sequence_number":43,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":44,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" tool","obfuscation":"cSaOumHhw8d"} + data: {"type":"response.reasoning_summary_text.delta","delta":"Flor","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"z3FtFuABMjT4","output_index":0,"sequence_number":44,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":45,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" needed","obfuscation":"Rk5LmSZnz"} + data: {"type":"response.reasoning_summary_text.delta","delta":"ence","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"cJVUZFnkwsep","output_index":0,"sequence_number":45,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":46,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" here","obfuscation":"dLjFGxaGQy4"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"G7me6gn7AEBcbTA","output_index":0,"sequence_number":46,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":47,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":",","obfuscation":"ohGyw10ipm9AKAW"} + data: {"type":"response.reasoning_summary_text.delta","delta":" Italy","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"UTUXRE9phA","output_index":0,"sequence_number":47,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":48,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" I","obfuscation":"eTqH2Mp1B7g9uz"} + data: {"type":"response.reasoning_summary_text.delta","delta":".\"","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"mX28WNfna1CDTW","output_index":0,"sequence_number":48,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":49,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":"’ll","obfuscation":"29MLpieYRKXgf"} + data: {"type":"response.reasoning_summary_text.delta","delta":" Since","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"XoTFci9ws0","output_index":0,"sequence_number":49,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":50,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" call","obfuscation":"APlYstxBHTs"} + data: {"type":"response.reasoning_summary_text.delta","delta":" we","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"coOYAK4iPUCve","output_index":0,"sequence_number":50,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":51,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" the","obfuscation":"TcsBlCiNVprh"} + data: {"type":"response.reasoning_summary_text.delta","delta":" only","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"TOhWPtanJ2m","output_index":0,"sequence_number":51,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":52,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" weather","obfuscation":"avvWR2K8"} + data: {"type":"response.reasoning_summary_text.delta","delta":" need","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"aXbzfLoaOSY","output_index":0,"sequence_number":52,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":53,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" function","obfuscation":"O1zxplU"} + data: {"type":"response.reasoning_summary_text.delta","delta":" one","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"50hZkZxdl4De","output_index":0,"sequence_number":53,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":54,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" with","obfuscation":"5D7hNVM9ZJX"} + data: {"type":"response.reasoning_summary_text.delta","delta":" tool","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"AB42OVpt9Jy","output_index":0,"sequence_number":54,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":55,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" \"","obfuscation":"0ADmV6WCq7LJhy"} + data: {"type":"response.reasoning_summary_text.delta","delta":" for","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"XHAzNy0FEbae","output_index":0,"sequence_number":55,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":56,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":"Flor","obfuscation":"Hft9t8FfJ2OT"} + data: {"type":"response.reasoning_summary_text.delta","delta":" this","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"WLjH1Ym4eAO","output_index":0,"sequence_number":56,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":57,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":"ence","obfuscation":"SxhbGyIH59Rj"} + data: {"type":"response.reasoning_summary_text.delta","delta":" request","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"lR1AkNg2","output_index":0,"sequence_number":57,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":58,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":",","obfuscation":"yrih8YHiYqhyJIM"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"JLZJWxaN7awUi3w","output_index":0,"sequence_number":58,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":59,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" Italy","obfuscation":"taxM0svrCN"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"UOUGDcA571cuq8","output_index":0,"sequence_number":59,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":60,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":"\"","obfuscation":"AXmtTJdHl0ct71U"} + data: {"type":"response.reasoning_summary_text.delta","delta":" don","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"NeUTjXvbpRr8","output_index":0,"sequence_number":60,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":61,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" as","obfuscation":"WMRLlJ2zfdWBZ"} + data: {"type":"response.reasoning_summary_text.delta","delta":"’t","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"wng0C359r6uDm1","output_index":0,"sequence_number":61,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":62,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" the","obfuscation":"Afw9DMHirE9s"} + data: {"type":"response.reasoning_summary_text.delta","delta":" need","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"eCrxS3ZW8bQ","output_index":0,"sequence_number":62,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":63,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" location","obfuscation":"LaWrtlT"} + data: {"type":"response.reasoning_summary_text.delta","delta":" to","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"G9qj9WnUjUniV","output_index":0,"sequence_number":63,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":64,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":".","obfuscation":"sMtk17vbSNlu9B4"} + data: {"type":"response.reasoning_summary_text.delta","delta":" worry","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"882iUYQUBY","output_index":0,"sequence_number":64,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":65,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" I","obfuscation":"zW2mIqooKFSvYD"} + data: {"type":"response.reasoning_summary_text.delta","delta":" about","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"oOntKVB9IW","output_index":0,"sequence_number":65,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":66,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":"’ll","obfuscation":"MrleqMeZG2uIW"} + data: {"type":"response.reasoning_summary_text.delta","delta":" running","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"ELwUWZDK","output_index":0,"sequence_number":66,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":67,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" utilize","obfuscation":"3UtSAyvp"} + data: {"type":"response.reasoning_summary_text.delta","delta":" multiple","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"g61kP6i","output_index":0,"sequence_number":67,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":68,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" the","obfuscation":"Id2PxWKevjQp"} + data: {"type":"response.reasoning_summary_text.delta","delta":" tools","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"5f9KwgE0aR","output_index":0,"sequence_number":68,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":69,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" commentary","obfuscation":"C1n9m"} + data: {"type":"response.reasoning_summary_text.delta","delta":" simultaneously","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"M","output_index":0,"sequence_number":69,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":70,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" channel","obfuscation":"JnqRB01s"} + data: {"type":"response.reasoning_summary_text.delta","delta":".","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"vF6nhUAb8wuvPeu","output_index":0,"sequence_number":70,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":71,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" for","obfuscation":"JZ4hLhjIedIi"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"shBGeDsEdE3JaV","output_index":0,"sequence_number":71,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":72,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" this","obfuscation":"TA2UVWLPUt6"} + data: {"type":"response.reasoning_summary_text.delta","delta":"’ll","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"XjaV18OeFaeo7","output_index":0,"sequence_number":72,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":73,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" call","obfuscation":"jUb5GFeErrf"} + data: {"type":"response.reasoning_summary_text.delta","delta":" make","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"PhOBGcdnp17","output_index":0,"sequence_number":73,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":74,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" to","obfuscation":"TeODaVrEwaolG"} + data: {"type":"response.reasoning_summary_text.delta","delta":" sure","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"0024BgFNds5","output_index":0,"sequence_number":74,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":75,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" ensure","obfuscation":"kWJCoasus"} + data: {"type":"response.reasoning_summary_text.delta","delta":" the","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"LdIMyglckry1","output_index":0,"sequence_number":75,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":76,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" seamless","obfuscation":"oiDGzIT"} + data: {"type":"response.reasoning_summary_text.delta","delta":" parameters","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"wfs2k","output_index":0,"sequence_number":76,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":77,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" execution","obfuscation":"CmnvwZ"} + data: {"type":"response.reasoning_summary_text.delta","delta":" are","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"CTTCjhZlZp0T","output_index":0,"sequence_number":77,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":78,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":".","obfuscation":"PvCPxbVr9AgEhtc"} + data: {"type":"response.reasoning_summary_text.delta","delta":" formatted","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"i2Rsd4","output_index":0,"sequence_number":78,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":79,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" It","obfuscation":"RibP4SWMIr9Os"} + data: {"type":"response.reasoning_summary_text.delta","delta":" correctly","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"GopIfg","output_index":0,"sequence_number":79,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":80,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":"’s","obfuscation":"xwkQTTZvDyliKz"} + data: {"type":"response.reasoning_summary_text.delta","delta":" before","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"GwaiQDSrz","output_index":0,"sequence_number":80,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":81,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" straightforward","obfuscation":""} + data: {"type":"response.reasoning_summary_text.delta","delta":" calling","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"z9XLGa6O","output_index":0,"sequence_number":81,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":82,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":",","obfuscation":"yPuwIjzMtPo6qaa"} + data: {"type":"response.reasoning_summary_text.delta","delta":" the","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"W6z5avP60X6g","output_index":0,"sequence_number":82,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":83,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" and","obfuscation":"ro0f5gmNp8Wn"} + data: {"type":"response.reasoning_summary_text.delta","delta":" function","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"01nyced","output_index":0,"sequence_number":83,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":84,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" I","obfuscation":"seWzdUEryqBWoW"} + data: {"type":"response.reasoning_summary_text.delta","delta":" to","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"LWRMOigFdOkMu","output_index":0,"sequence_number":84,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":85,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":"’m","obfuscation":"pM59Mrz4qiMm29"} + data: {"type":"response.reasoning_summary_text.delta","delta":" get","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"C60vGpZuOAFg","output_index":0,"sequence_number":85,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":86,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" ready","obfuscation":"4kuj1VyApb"} + data: {"type":"response.reasoning_summary_text.delta","delta":" the","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"ZJnmWEFyvAfb","output_index":0,"sequence_number":86,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":87,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" to","obfuscation":"yfPG0IKDaV5N2"} + data: {"type":"response.reasoning_summary_text.delta","delta":" weather","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"0n1INf1F","output_index":0,"sequence_number":87,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":88,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" fetch","obfuscation":"5cah6iIXM9"} + data: {"type":"response.reasoning_summary_text.delta","delta":" information","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"ATfU","output_index":0,"sequence_number":88,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":89,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" the","obfuscation":"ioGKWJfA1kyc"} + data: {"type":"response.reasoning_summary_text.delta","delta":" for","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"4eW36M82TANU","output_index":0,"sequence_number":89,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":90,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":" information","obfuscation":"4oaB"} + data: {"type":"response.reasoning_summary_text.delta","delta":" the","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"OrltIY8atna0","output_index":0,"sequence_number":90,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":91,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"delta":"!","obfuscation":"z2u9DnIpuLMulCp"} + data: {"type":"response.reasoning_summary_text.delta","delta":" user","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"13PvkpcDXRG","output_index":0,"sequence_number":91,"summary_index":0} + + event: response.reasoning_summary_text.delta + data: {"type":"response.reasoning_summary_text.delta","delta":".","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","obfuscation":"zbqk5UVXNUVyW90","output_index":0,"sequence_number":92,"summary_index":0} event: response.reasoning_summary_text.done - data: {"type":"response.reasoning_summary_text.done","sequence_number":92,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"text":"**Checking the weather in Florence**\n\nThe user wants to know the weather in Florence, Italy. I have a function available for this, specifically designed to take the location as a string. Since there’s only one tool needed here, I’ll call the weather function with \"Florence, Italy\" as the location. I’ll utilize the commentary channel for this call to ensure seamless execution. It’s straightforward, and I’m ready to fetch the information!"} + data: {"type":"response.reasoning_summary_text.done","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","output_index":0,"sequence_number":93,"summary_index":0,"text":"**Getting weather for Florence**\n\nThe user wants to know the weather in Florence, Italy. I see that we have a tool to retrieve weather data. I’ll call the function directly with the location specified as \"Florence, Italy.\" Since we only need one tool for this request, I don’t need to worry about running multiple tools simultaneously. I’ll make sure the parameters are formatted correctly before calling the function to get the weather information for the user."} event: response.reasoning_summary_part.done - data: {"type":"response.reasoning_summary_part.done","sequence_number":93,"item_id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","output_index":0,"summary_index":0,"part":{"type":"summary_text","text":"**Checking the weather in Florence**\n\nThe user wants to know the weather in Florence, Italy. I have a function available for this, specifically designed to take the location as a string. Since there’s only one tool needed here, I’ll call the weather function with \"Florence, Italy\" as the location. I’ll utilize the commentary channel for this call to ensure seamless execution. It’s straightforward, and I’m ready to fetch the information!"}} + data: {"type":"response.reasoning_summary_part.done","item_id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","output_index":0,"part":{"type":"summary_text","text":"**Getting weather for Florence**\n\nThe user wants to know the weather in Florence, Italy. I see that we have a tool to retrieve weather data. I’ll call the function directly with the location specified as \"Florence, Italy.\" Since we only need one tool for this request, I don’t need to worry about running multiple tools simultaneously. I’ll make sure the parameters are formatted correctly before calling the function to get the weather information for the user."},"sequence_number":94,"summary_index":0} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":94,"output_index":0,"item":{"id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","type":"reasoning","encrypted_content":"gAAAAABpA5oKJk2zG0lDqeI0Evg60Jdbqsockm-Jl0d20EuuYhKSrLthw6S2LqORlLNbSOtRN62ZQIGaL48JNu_xkyF2hnfugZTXA7mIUphauuphV5DSLLpWO60McWy7SaRkkAmt1BVk1aQM_1HFCXiNu8eJHHnC3c6y77FqCkaa4-YQupPehJW8ssfD4Dvwg2Bmmrcc15PDBDgJCLGEVBocxmTmjJ9AG5lpaHL3LW1G3jXEA2K1rHJzFbgjnfXv0Mi3_9Lynp0-BT-SAcGBrbilBCQojBgzQkpBLL7-k4_TGacZZ-2LsEn6u5qBoH3hE1FUu-rUEPBn2Yj8o3t_7Q16nbfSQspWvKWYjG0M_wrDpekEWblBejitBuqrpjAhBlTRG_scI_SSoIFwfD4YX01YW9k44AKg0nN9zS3_nKXVuSlOjUSewEJMwXsP5wfzSCT3RLv7wAcE2Y08sNHbckdSuERAtAalUHNCmBne3WV6AvUTBYEbQWwf9JKhEr_R8P-TzTp1bQonEAG5zmSDhIqS4APcAzbAEsIYA3k1rhvQXEfX2y_0dLgaxor0ww5y8FOemVyxt7CrEJ7Hggp34XPxwpjkLb2QZnFHBNJdNY_YN2pxgQ42hz3yD9GVSdMTqAVbi2bLc341Li7xgrjJPvRcUnWolxmVos_kqOB2avQ7trVPR3xZ3P8aj7hGuYqOd4aWbeNWKupjvY7rDSTi8Dq8k_k9rQ_srRKDRk6U1b6asLSZYCBXWLn0s_J_iD5-Gw6kaKZ6DdMtpn8YuQiM_n6UJDGD8Sh69Mqn9cBGigczYgYoZ8l2XSEqhXeJK8u4Xv6YgctE7-Z8i53o4iYmy3aaweJtbrWeZOODPZZrjSxLCx-NDCNOUZMATzXbg3HTbC4sbwDyc-xskMykOg3Da4bf6C7Vxd0aQQ4Vy9X6nqLaJc-lQyCRi5HpaVnj3cBn-4Vf1vw_hUW28BiK8r_P6-jCc5AF0zjxps-jC8ZJ8tYjke0sJXOMao7I9UKPvMhXWtvE1KgPulMEeNgXvd7mZT3qEUSp1YasJqZFVIpsbxubiiAjRtREpeFGADfggHjTU09xHRLg75si6jyMpFolFSCyHhRGTjbEI0oIyeqwDFXqdfX_Jhl69t7lXe2Keg7mfwx41EYV6_PCCKXOTSEi5MWJpsstpfAYCDQT6GOjrxK27lBNzGmRuny8PFlkrndbzy4on3yWGk-1vc7UZuJ5eibptpZwyU7SUt8H154TQOLtsaSfUooZoEOE73GDgdBuk_FCsi1ZP4KT30yv164Ln_HsyPHLYW0Qfg==","summary":[{"type":"summary_text","text":"**Checking the weather in Florence**\n\nThe user wants to know the weather in Florence, Italy. I have a function available for this, specifically designed to take the location as a string. Since there’s only one tool needed here, I’ll call the weather function with \"Florence, Italy\" as the location. I’ll utilize the commentary channel for this call to ensure seamless execution. It’s straightforward, and I’m ready to fetch the information!"}]}} + data: {"type":"response.output_item.done","item":{"id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","type":"reasoning","encrypted_content":"gAAAAABpsv-jnw-8k8joGbz9prEL9dInrQvwbBWXW0nxP4nK5UOuxwv18bg-W6PX9ub5V8zZPTj2oCgLEE-oAaysTT-9mJDXjQx5BwgZ4wAvS2_GqNjRbC8oBeZrPCrDhph7vW-iUMmIoNo8b4Nlw3OjQucXwKrOxFVsBLhG4dOuSs2qd5TGo5JUdNT-JPHJpT4HMQaHR2oIDr_jlrrnEn9GwGBpSclxtki0TYtUe1TEDVHaZBdt5Z9cnvWNmRmMDfyzgpqNgfymkZHMaix3lQmIWfAcGDj0kxrkwr30sgXeCrIainT1He1dlsSpn9la5B-XgbB8o7qJBYUQ1R5Ij4T2lfQZLprUkAwuQCqyU5MGsTOKGW0FtrY2J9emu00RMzZK3cHk7HlqZZIgurPs02JkuKDQwQuzuzk_EYLpCHUcRxbPbRhA8hwl2iYk0teY8pzczaWUa1wqSTZc8C5f9OufDwgbhDr5TELmG15kEIyHAhmDKfg53EkB0DwXWq7DBmzRM9HdDJxLzgFH2Fx0VCCwC74OnWLa7dB-FRtd-qCyNL26kmXXcqxZRLyxu9-3xZ_aDtlslwTSvt-xRlFeOChBYqQXGoNefSXBPHf-vLfE0fZoefNkUrSZz9K-9kSjd6weQTcUlyW9RdFdKMqWr-F9lXA0mAeT3GZ8SGr3_sX84TwkBqN1nkeXIszNvYJJ5dl3Piz-USPwrL9IuTf5LjYgEhu6b37yWLjReCa5H95WAv2vQ-V9i5E-Md9P1JVb7MOJ88VUaL-QlOuUXIx-1hxE_nJq1AoIeQo2WUfHz-txaOrr6URrl6XZXCdJCfMkrpQnX4AUlAR1iktFa2a5BICu0edcx5uu2Gr8xWSVIGgA4G2ptKiqaw7an3qy4Ax1Frdo7nCtoWHFRGmz3eLgdHBx0-pKlgRGYf9pA_I4pFLeoUv9GcBpkOSJUiS8Oz654LjBhm6vGUqeO4-lV1dymdHosYohhwaRofpkBM7ifvw8f_4YJVlq7vu-SLjIiGpmYCIrsoQiiFOz5cgxfakxq2jnO7GGTRuQk-GoazyieNSY81M1GLucxcBhGpp-UVQheY2h6jD92xabhqumBsvfjYmpHHrEnPk7kx62-eruaxNV9vxAiFCN7diCTrz6YdRF-KDkPaD9mSrSlorh7jOFVOlBOxIXcLCqkg-am4OeJ52oDbGDsQAZFSiNXryQ4FrC5c516Lt4I4KpH-Q4pVvbYwsWygIIWwkAum_SuY-ZxgEFB-ActdIqagx66ercXNw--rkkgM0YNX13BntoWYj4VS1bQIy7UHTwT1WWcW0H0wxE4YJCjq8dcxzojw4KzreHmn7uPZJqjrh_VqYoiMMew-8kgunmKzW7vD7-rNWJTVEiOnMHWId04ojT49qaMes0yE0eb9SB79nSFLZavsskel-3Yro8JNBjqUiXNCYT2EUk0sau8PhUkVyleTLTuPvxXI6Azo-okOOBmUxYYanxeNkae-5gu9u2JshdYY7k1c8aupW62zvuMR4poDCjCoPLpTUjeV_It5e1XHtc8FNmsMenpwsL3xFzman8wwYW_MZ__OYNmeDoLkt8TkHdyNN7Ne5UhiqMYL_1uZV1RHzB2l5X-WAjI48ZF5blgM-2rQsWNQXCyPJpBE1Fg1c26iED1TLlbwEax2Q2","summary":[{"type":"summary_text","text":"**Getting weather for Florence**\n\nThe user wants to know the weather in Florence, Italy. I see that we have a tool to retrieve weather data. I’ll call the function directly with the location specified as \"Florence, Italy.\" Since we only need one tool for this request, I don’t need to worry about running multiple tools simultaneously. I’ll make sure the parameters are formatted correctly before calling the function to get the weather information for the user."}]},"output_index":0,"sequence_number":95} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":95,"output_index":1,"item":{"id":"fc_0c9091ebd75b8c770169039a0ab6bc8193ba9f32d4efe182bc","type":"function_call","status":"in_progress","arguments":"","call_id":"call_2897d2a0YobhHQSGblq4C1iZ","name":"weather"}} + data: {"type":"response.output_item.added","item":{"id":"fc_04fcf497c9f5b8760169b2ffa378c08195bcc5eb704165237e","type":"function_call","status":"in_progress","arguments":"","call_id":"call_XjLMCgd17m2E4EOiIVoc4J91","name":"weather"},"output_index":1,"sequence_number":96} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":96,"item_id":"fc_0c9091ebd75b8c770169039a0ab6bc8193ba9f32d4efe182bc","output_index":1,"delta":"{\"","obfuscation":"pDyKXP24KrqBcg"} + data: {"type":"response.function_call_arguments.delta","delta":"{\"","item_id":"fc_04fcf497c9f5b8760169b2ffa378c08195bcc5eb704165237e","obfuscation":"nmq10hgv4z0jCI","output_index":1,"sequence_number":97} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":97,"item_id":"fc_0c9091ebd75b8c770169039a0ab6bc8193ba9f32d4efe182bc","output_index":1,"delta":"location","obfuscation":"d4lh3gRo"} + data: {"type":"response.function_call_arguments.delta","delta":"location","item_id":"fc_04fcf497c9f5b8760169b2ffa378c08195bcc5eb704165237e","obfuscation":"5gOII4M6","output_index":1,"sequence_number":98} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":98,"item_id":"fc_0c9091ebd75b8c770169039a0ab6bc8193ba9f32d4efe182bc","output_index":1,"delta":"\":\"","obfuscation":"CY3YstcoSUdbE"} + data: {"type":"response.function_call_arguments.delta","delta":"\":\"","item_id":"fc_04fcf497c9f5b8760169b2ffa378c08195bcc5eb704165237e","obfuscation":"gibBvxVc5aK3b","output_index":1,"sequence_number":99} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":99,"item_id":"fc_0c9091ebd75b8c770169039a0ab6bc8193ba9f32d4efe182bc","output_index":1,"delta":"Flor","obfuscation":"3fc8qTUcq8b6"} + data: {"type":"response.function_call_arguments.delta","delta":"Flor","item_id":"fc_04fcf497c9f5b8760169b2ffa378c08195bcc5eb704165237e","obfuscation":"h4dICw59Jwtu","output_index":1,"sequence_number":100} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":100,"item_id":"fc_0c9091ebd75b8c770169039a0ab6bc8193ba9f32d4efe182bc","output_index":1,"delta":"ence","obfuscation":"BvgjOXHTIqjA"} + data: {"type":"response.function_call_arguments.delta","delta":"ence","item_id":"fc_04fcf497c9f5b8760169b2ffa378c08195bcc5eb704165237e","obfuscation":"5KaojRMDvKNj","output_index":1,"sequence_number":101} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":101,"item_id":"fc_0c9091ebd75b8c770169039a0ab6bc8193ba9f32d4efe182bc","output_index":1,"delta":",","obfuscation":"cOCgEX9nSt6XKoA"} + data: {"type":"response.function_call_arguments.delta","delta":",","item_id":"fc_04fcf497c9f5b8760169b2ffa378c08195bcc5eb704165237e","obfuscation":"MuePvpyKek9OoK0","output_index":1,"sequence_number":102} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":102,"item_id":"fc_0c9091ebd75b8c770169039a0ab6bc8193ba9f32d4efe182bc","output_index":1,"delta":" Italy","obfuscation":"0jUswSFIUV"} + data: {"type":"response.function_call_arguments.delta","delta":" Italy","item_id":"fc_04fcf497c9f5b8760169b2ffa378c08195bcc5eb704165237e","obfuscation":"4l8OvQJrZk","output_index":1,"sequence_number":103} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":103,"item_id":"fc_0c9091ebd75b8c770169039a0ab6bc8193ba9f32d4efe182bc","output_index":1,"delta":"\"}","obfuscation":"BruFF5x5i3wI7H"} + data: {"type":"response.function_call_arguments.delta","delta":"\"}","item_id":"fc_04fcf497c9f5b8760169b2ffa378c08195bcc5eb704165237e","obfuscation":"Szejg8HJQHOQ2S","output_index":1,"sequence_number":104} event: response.function_call_arguments.done - data: {"type":"response.function_call_arguments.done","sequence_number":104,"item_id":"fc_0c9091ebd75b8c770169039a0ab6bc8193ba9f32d4efe182bc","output_index":1,"arguments":"{\"location\":\"Florence, Italy\"}"} + data: {"type":"response.function_call_arguments.done","arguments":"{\"location\":\"Florence, Italy\"}","item_id":"fc_04fcf497c9f5b8760169b2ffa378c08195bcc5eb704165237e","output_index":1,"sequence_number":105} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":105,"output_index":1,"item":{"id":"fc_0c9091ebd75b8c770169039a0ab6bc8193ba9f32d4efe182bc","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_2897d2a0YobhHQSGblq4C1iZ","name":"weather"}} + data: {"type":"response.output_item.done","item":{"id":"fc_04fcf497c9f5b8760169b2ffa378c08195bcc5eb704165237e","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_XjLMCgd17m2E4EOiIVoc4J91","name":"weather"},"output_index":1,"sequence_number":106} event: response.completed - data: {"type":"response.completed","sequence_number":106,"response":{"id":"resp_0c9091ebd75b8c770169039a06b7f081939b87f99a680e70b5","object":"response","created_at":1761843718,"status":"completed","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-mini","output":[{"id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","type":"reasoning","encrypted_content":"gAAAAABpA5oLoDdu1woYmtpDZQRsOWCRUusCH-qCyVJ9b3FmZBMnrySPvUB6PltEOiLG5lfwz7eHG0EX_4fMLSYMTGfzhNk1qVW2mj0N9NP-CYSOscKFGjqv8YwDR1qW3pQnhssfw7gOZql8puHJEoQ2roBJGIPibSLjQcUK8cUAb4w737IVqRfdCzALczFeFaNsBhOY4Cyb1dmq-zTb-tddKVeSz11qoMTU_PBg1wYyDJfrLql2RCFKCnpK0SxfZFwA4WijOwau3HeYqyQxYa8uL_iqQBP684hZOD60vwSj4eQy4dRxKEoFwu5giWCq2e6Y1fz8QKmHbVyNr2FGgDAxlhufXxC-BaP54wA4pKX6ee9UgPHkLalw78AITdu3zovYjzH3uVbGLJ3Y29icS2pCkku6sF61jeLM0OCncj9PcgdOuOHDqpVKjCU77b1JFUs7BqK3L-s3R9PCY8YtpzqbYbYnL6VbYbTgfw_zMCcYDllrZeEG8bN4oZ15pTLVmTO7Fzr9WZ4pGngT-DMx0AUkOL708kRUQP34nyh1xReKALUvk2OHkxUFvzh12oLCvSBJc6_KLFBTFGEi6nK2GnVsUbJXciWnPB0Ca2hnX48f46wXSX_7bqYCzvA7dohkUQ8-_5U2VzElZoDm34WhcqG3ITLoRTr2HftHvE1UAwa9HcQs3Hmm1hJtKRm0LM_9MlDOdzFR3V27oF2jp7YORZLYCqjrAgODeR6Jj45Bz7SuVY4m7QY6NoBiyEN9CDttDw7AoK9jvs4763lFAkVD5uEPdFCH0hI92YoDknwQcY97Tjt703qFO7hmE1RUp8CXqGLBrkfMDNyM8tpgLMXtuyDqjnBkTUKw7ZO0B86LCczzRoOIiOqDZpqPRk6CxaSYz4rpiIMn93OqPfHBVIxhhdoclVwHeNpPMj1CC2BVbEgm-YcDscW_ivZdSjFYdr83sWqR7aSN9O_GdBK4xcnX7P4xpM7I1E1WDwTxDMeB32goZBoC6-Pl457cKKM15rE5Vmwn-arXqsQGc5LeZunB0tt0wT73kjdr9YbKLpaFaBSjUH6KSvuajYge7I9RSi4haStGdA9hA78Q1oAU-cTpA7J81DhZveOnFTiIHK7xf1qI5kBkR0Wy_AqCtpj-tKtqH3_yACyAC6TnjSPy0EXmxYuWfNdjQUzfD3kEn2myMy-iYZyDU6riflxNw9WucDep_HGJ_YDlI8s7DCnoJAdKWpOSefzqvl_3AD6FINNO70eEc_EyYf7YPX_Q839bit6FU75DTkpXHv_drwtcAdPoSPb9rbMr-msB9w==","summary":[{"type":"summary_text","text":"**Checking the weather in Florence**\n\nThe user wants to know the weather in Florence, Italy. I have a function available for this, specifically designed to take the location as a string. Since there’s only one tool needed here, I’ll call the weather function with \"Florence, Italy\" as the location. I’ll utilize the commentary channel for this call to ensure seamless execution. It’s straightforward, and I’m ready to fetch the information!"}]},{"id":"fc_0c9091ebd75b8c770169039a0ab6bc8193ba9f32d4efe182bc","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_2897d2a0YobhHQSGblq4C1iZ","name":"weather"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":63,"input_tokens_details":{"cached_tokens":0},"output_tokens":86,"output_tokens_details":{"reasoning_tokens":64},"total_tokens":149},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_04fcf497c9f5b8760169b2ff9ff27081959917b8d19daecc20","object":"response","created_at":1773338527,"status":"completed","background":false,"completed_at":1773338531,"content_filters":[{"blocked":false,"source_type":"prompt","content_filter_raw":[],"content_filter_results":{"jailbreak":{"detected":false,"filtered":false},"hate":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"}},"content_filter_offsets":{"start_offset":0,"end_offset":71,"check_offset":0}},{"blocked":false,"source_type":"completion","content_filter_raw":[],"content_filter_results":{"protected_material_code":{"detected":false,"filtered":false},"protected_material_text":{"detected":false,"filtered":false},"hate":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"}},"content_filter_offsets":{"start_offset":0,"end_offset":1768,"check_offset":0}}],"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-mini","output":[{"id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","type":"reasoning","encrypted_content":"gAAAAABpsv-jBrQ4LVAC5zkrS3m_r00gmzK5Q_jjvymogbm0AhYvxWAB1U_bPm_VD-Hv-yDATwzPCxFMLGG4zHyU8pDWcK-qkmPCZVRzPtDIKxM1ZpvznQ-DdluoITRXf1OiH08HpjPmj15qlksMZTTiX3mwabpENCI_ZISGc3kBO-55bn4g5kPxXYirkrD5pNSIvqNkqA3TvrDmf2aEEBB2pMlO9U7MAyZQtZNr2p625yneHEqo_l8MAu5SvUP1WNEA4-TPWebRzvMReAIecbT_jNFmaZzZWZMnma_l6dkkZ6g7KbrG4F_wk_4McVxdde8vSRuLzxttatIEe0YF8zWiazBVJdTj3paF71ot8IQBfHJluGpzxGRSRA-Rd0S99KNlKa2-qbAuN7PkLrcNcBlcKE6t4mDDX4OU5jdNfCWpPI1quAd6y1nw7kgUS-fbtAO82VMlhHcbuaFhifjEVvKPiAGM9dXYho4IIxQylnAv3Uf1N2oiVm_LVgyEguPRUzP4dOUGAhKjHfqVziPzKQnG51ceduGxJKibcZhsEUltOcvhVr5uiQtIUMdF_AnldZB5Mo-rrDni16vzFTZ9A7cfHx7qIpCl1JuZ1LmIYdmI22uavQvXB9le5Sjb76m7zBXLR8akmxhkcq76G1JqglnG_DH-FT0dOlpm0vB0miqEIKlRhlsL4BxmxGOIqiiSkZGKEuMYKoluSCSxFVsroh1KTILwToRdU3MI27MfW9FbH3-7-feESZAOlbsPor6sqlaAsVNZB7lFXsxqLt3l_RQmkoUDXOhmWkdVHVRd2nefHyzzaf7oTpD3JQ7PO573WOWRBvAbK8SSKVha4D7ga47JHV2goKhxvPe_wqy1WSw7z_FKnOuYYMQA5tsiy5_98nPBHwCvOufmWwafInyquU2t4hJ6z63s9chFPjC_6WIYj0HsBs610LjWR_PfHs9jGTIkE66wVtA48KgQOItYL1Fyy9nKEpe7rJ-v9kvM5utTSrDqXuasTmLXQBSWHkPEG95gBeim3SVd1TkaPaJntSG1kozVKbRiBate7JH-kM6CyBNod8I2adX_bMInCZl5aLIGgGMsNO6M5WA5Xfi3BK_hej1-Dz2vfDi6PXf8CYysHNJmmhQmz7TYg8gZnoBvhBj_3Zfq_EJcooO0cl8tWFjlpXBidvZhfSg1yCpsHOwhccxfNMKyLu8rK1cIoV7RkTfM6m01cCIgI_Ovh64it8RQrx6L47edwwRSm3cHHCCiGolm4t9j-ncf6WPD9mNHDVV5zCjb3CFlrDjCQKJH0o8NhNEDLT4X6VDeXEIu3rcn6E3ddhmZw_7VPESit99IsSqiyEYeQAJBEFN6AqpWiGKl26tEGRKGToI2P_f0bL1d7aVAHwN7e6WRXrvj5NUmgCHWpysBE0vMbXbYxt5LqPu9HWwqOTvKFfjgLnWGKO2RwHy9G-i23j2SFFwwsdIokMS9RXYwJ8csSl1JVz1pEINBc1G-_8-5gbhWi-Fnkw4SCVSw6R15xy28GdCiRVsA7CTYXd26sVSGxj7YToQWmb1q5LDeR2xQKl2ggFS4zL62_5ASmyaTgyFzCz0TKA70mhmKVZh8NwYj7f6HLKMPTdzd8Mja5Fxa6VbxC7OZYQNrbJ-P_idjU6lJr0Ir1L0Ju1KNRGrByJgH","summary":[{"type":"summary_text","text":"**Getting weather for Florence**\n\nThe user wants to know the weather in Florence, Italy. I see that we have a tool to retrieve weather data. I’ll call the function directly with the location specified as \"Florence, Italy.\" Since we only need one tool for this request, I don’t need to worry about running multiple tools simultaneously. I’ll make sure the parameters are formatted correctly before calling the function to get the weather information for the user."}]},{"id":"fc_04fcf497c9f5b8760169b2ffa378c08195bcc5eb704165237e","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_XjLMCgd17m2E4EOiIVoc4J91","name":"weather"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":66,"input_tokens_details":{"cached_tokens":0},"output_tokens":148,"output_tokens_details":{"reasoning_tokens":64},"total_tokens":214},"user":null,"metadata":{}},"sequence_number":107} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 196.11175ms + duration: 329.587375ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2234 + content_length: 2252 host: "" - body: '{"store":false,"include":["reasoning.encrypted_content"],"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence, Italy?","type":"input_text"}],"role":"user"},{"id":"rs_0c9091ebd75b8c770169039a07341c8193ae5619f70d498e71","summary":[{"text":"**Checking the weather in Florence**\n\nThe user wants to know the weather in Florence, Italy. I have a function available for this, specifically designed to take the location as a string. Since there’s only one tool needed here, I’ll call the weather function with \"Florence, Italy\" as the location. I’ll utilize the commentary channel for this call to ensure seamless execution. It’s straightforward, and I’m ready to fetch the information!","type":"summary_text"}],"encrypted_content":"gAAAAABpA5oHfxppmLDktuWhr3oHJCbNjqjxJ0b13z0IfCwDZeMOhhO1IPpfxxFzdV-VYzhQunZ_yTOCappVChaMMcqXxDEi0PBgY6bgzff-D0uQMn8zwZ9MjnH5WXndf2bK-s3MSKIUiyi3T3lePqNtYgUYZPbpNnvYjiSlhdjUuoXrcI6__41YIE68jdYn5dbUp2qyjAcWylGSmZlWNxnYiHrXnvEQgVeFjUMVwbG0_Cl7btjafxmZoeTjSC7FowwBwmC24VTjcgqB3-bZpvjHOrvIivS7IFvA2vle60X12M0HQMgHpl3wVaYUCQ8SQ9HLjyOTetNCmzrFcq3S7G1bHaAhwbiM9WPvuDz4zTiL2-h7whrWydnnD0AmoPAtUkHVno_XePFL_2x7-ljDpM8QX0hR6BtMp3VHRcXHAImNwnuFJ4ivrBsIdxhYfNBaUEAdCJPzdGJf567PQDfXjE0MT2yODxkU6qkkSzfqzMrfwtSZmq_sQl7rkPX38QdnedK5U9IIFNa8Akc9ltRR_WEw-miMdfLYgNEAB9YJw6tG2uHSdVYx6SJuzrT6ZwERJ-2pdnD3H0pS5C6vSrhO_FiyeYdnP4-7G21uGPLBd65lYOG5ckHBYCOTgCSoS4udb6xGPeNh4AJEVp7h4U_kWq3WE2cfj-Zn5_5IGRpLuU2fkWw4q9stbyaTmjJUZcfv-CwAvhRww7HPSNyz7k_Ee-0cLv3SxBv_366eFSHb9LENqpWZikQuHl3-VF3gIcPVlsKHsctxGiAe_UmwJzFeDZY6rUPv6lIpSwfOJfpRf5XRjya0GTGCBiI=","type":"reasoning"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_2897d2a0YobhHQSGblq4C1iZ","name":"weather","type":"function_call"},{"call_id":"call_2897d2a0YobhHQSGblq4C1iZ","output":"40 C","type":"function_call_output"}],"model":"gpt-5-mini","reasoning":{"effort":"high","summary":"auto"},"tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}' + body: '{"store":false,"include":["reasoning.encrypted_content"],"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence, Italy?","type":"input_text"}],"role":"user"},{"id":"rs_04fcf497c9f5b8760169b2ffa108888195ba649a92a2f17e92","summary":[{"text":"**Getting weather for Florence**\n\nThe user wants to know the weather in Florence, Italy. I see that we have a tool to retrieve weather data. I’ll call the function directly with the location specified as \"Florence, Italy.\" Since we only need one tool for this request, I don’t need to worry about running multiple tools simultaneously. I’ll make sure the parameters are formatted correctly before calling the function to get the weather information for the user.","type":"summary_text"}],"encrypted_content":"gAAAAABpsv-hvjC3ll56K8M8nnWZrQ-hbWQLb5b_X52f7q23IBmVXDU0nN6VSIiV-o358MizEILazwWUyq79OIOkNK1okzmE7rhJseAha9MK_tchfBJKuhQjm6SyIHK8DHCKOJgI1EIxzcOVflMKmgAJPXLDxRQss9fK_3gJCAGeFh_wy5Ok9BgdJ106wJGU9Jn4LrE17vdXWDfrsCLDscLiVa1jMBV9G_Qmw0m0iquamPG-K492beGN3ISA40E1qln74_dcHjKoxzIL7-wrKnUPHewKWW3MaivcnCjY6OPlxsalOTBUng18_Xzh-Xin5cN5BRDpCbUgl16hMKpq8yUnyzkJa-3joOHbETytktwBhq_4fOhTzWsRogx_uw5Yz2yFvYSVtJFXB9xA64jMaTA3jxpdMyuDRPWXZ5x7h4exGddbP_ED0qqd_zCe3f1nWEywA7U-_KaRQjk1zG54FRWiqZ6nWsOnNWKtOttPUWzQBXU17pg3KyuDidX07RSRXFa-Qs3RtgUuwqRhfp1dmmCkDdct-W4QlT-F-bAf-Pq7dXpVGSZ4cUUQk1uBktBqjs_agHPgn6m7Lap4ALe08HM4lYsj3FUPPSn6pUmRbzEK85HNVhXcSX8JuE8yu0AeIGKIrKYcD4BAdo01DFzUjAQJCXTA4QVoJzCeDPoPFU8uZxVHiN7fW1V-UmqOv_isC2uySwEYdy-hCMH20bjxMIAAH0wX2YzeJtIYE0pqNeCIhxng6tOcZmBGT7GOXMzkycjPvEOSrBJ6MawLCfxpSVeeGMADWPMqkPQfW-AlMH5ogMnDWk_PXm4=","type":"reasoning"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_XjLMCgd17m2E4EOiIVoc4J91","name":"weather","type":"function_call"},{"call_id":"call_XjLMCgd17m2E4EOiIVoc4J91","output":"40 C","type":"function_call_output"}],"model":"gpt-5-mini","reasoning":{"effort":"high","summary":"auto"},"tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses method: POST response: @@ -375,824 +378,800 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0c9091ebd75b8c770169039a0b5cc481938e22c048a363f0af","object":"response","created_at":1761843723,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_04fcf497c9f5b8760169b2ffa40e7c8195ae65d7c591fdc71e","object":"response","created_at":1773338532,"status":"in_progress","background":false,"completed_at":null,"content_filters":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0c9091ebd75b8c770169039a0b5cc481938e22c048a363f0af","object":"response","created_at":1761843723,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_04fcf497c9f5b8760169b2ffa40e7c8195ae65d7c591fdc71e","object":"response","created_at":1773338532,"status":"in_progress","background":false,"completed_at":null,"content_filters":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","type":"reasoning","encrypted_content":"gAAAAABpA5oMHsXNUGdxaafKmCihHCaLUrFR2s-Ct867NBUh-2EwCSxNPZsPPFdqSGo0mIAAI8J2ULZ2eaCeP1MMNfRhSvC_OIrILnw3cqLBW5w-YJij1rVmaoAZo87m_BXcDvFrT89Dx2X3kjvMVpCh9rZLk4XaNyHLVrPTPVXuUOQYFgW1oLvnp-rAH3FM8Y8YYq36wGPJWIuhQuVJImQyYFqn-Oy9_JlinjL-FTuK8tl2yPiHoDOOliL6lAJT8Tor8NsGkBAk0snFkrDIFtjreOy8MIY3YZA8JCqFzb_6l39BKokNEoa-U7wnHy92dlbs8VSmQmIo_GN_BXNUz3gNhthOT8_WdPtz49CWo8j2-rk-76XZcM19DK4fnH-tm-5O_TPvqK6BIloSKouvjPQ3M-3XRwiHPtROvcybVULbfHlEQujP_wVFT0l80V3GnsWLPJznKI1ZI56i9F54JrunH2Qcos9_DzSRJOLBOBO_RtWw9xLJVDvBAWloKkw0n1ernSio8zg6KPb37qsk0q6PODLsoZARzlAPEPoBR-YRg7jNohLsHA30FstEwv6fmR6jspQFHThoe0_-RYr_281Xu2tv6J1YD1ywg1D34bF76RFZ7XYtn-cZJ9CaGGN_pacnhFUW24Wz4YQvTDzdSu9_YpVgvfAWYT5pTEe0H0hk7n-R1xTiIwbgUN7KCCiTFP0cMAzuoNuMJ5Kv8zdT_jxvyQAlEoHn0zkv2nefV-mKc0JyOY2RtJlv4asFxTNRRWdZFDginOCPwoOBfF4Pb-1sWqwPwgZYzwbDzr-5W0aW2tycKo68xaA=","summary":[]}} + data: {"type":"response.output_item.added","item":{"id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","type":"reasoning","encrypted_content":"gAAAAABpsv-k1nGYEw1BYCakjhhW3k6pi8eN7_hmaW3BhFclJn8JepxztXuN2IjpvuuD8EcMFTo6gurwhiC507CZ-0ZlBZ1fVcUaVZMTfCj--OpGg9kFpy9utCH-R3PqtfzVcuIQzIN8UuN5QtXHnqnEq-GhhL7qEir9EO8CgHsMY6LyCo2DHDrMeabp7wZMQudyCo5H1DLLQLFx6XdOZAZxvaE6IGW7yCImzpxb8y61Ft_D0oWEKVNoXAgqczxZz2XuTfbgSotNwH058S2wHFYHrHUdYouPU9hP3KInWZ28nREeD71oyxmGhDz8ZQacH2ZalI0hwbhZFX3RD_SyXXMiZkasHOcWMafnkbUnf60ux8_Eb3MgcamjlNLsbz7-N_3BP22xYd0CeDlSu48Rf1jpfYoRaCquw59Meg99LPmJVVG_9LHzb_DJU4ma3DDd6reu-fzVfwhB9nBQjkLV0zA6dRWe4_ZiPLx_HW9mva_kZhvTr4noizN7mg3Lvk2q6wbqfPu2bvyYXjd0_UKaqsepo-1hyO6ZZUfoQIApKEhttd6n3exVULCImwWWL1T7UD4aRMSVhvuDy1jXqo_LwQPJNdsxsuo5Tlhj7aPlEfQmzuJ8MxcuKL_KUuu8pb7Xf3ytSjfBWKFGwbpml2xEzt5r6C-V5TCTBAc-U1OPVL5mt-gHHuul23Ag6GwsxWZsy1Bi3F1NtptbeIsZd5gj6oj8IesFeHsoiziHGRlW9Rsz6jnBfRRwjXNBeoMAtmf2WshsQn91El2E-HjIrHFHZAQ_yWnn7oMZGUj-2KzQzuPqVUzwmAB1Dw0=","summary":[]},"output_index":0,"sequence_number":2} event: response.reasoning_summary_part.added - data: {"type":"response.reasoning_summary_part.added","sequence_number":3,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"part":{"type":"summary_text","text":""}} + data: {"type":"response.reasoning_summary_part.added","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","output_index":0,"part":{"type":"summary_text","text":""},"sequence_number":3,"summary_index":0} + + event: response.reasoning_summary_text.delta + data: {"type":"response.reasoning_summary_text.delta","delta":"**Analy","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"wK1fUrSZm","output_index":0,"sequence_number":4,"summary_index":0} + + event: response.reasoning_summary_text.delta + data: {"type":"response.reasoning_summary_text.delta","delta":"zing","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"SwitDHo6RB0j","output_index":0,"sequence_number":5,"summary_index":0} + + event: response.reasoning_summary_text.delta + data: {"type":"response.reasoning_summary_text.delta","delta":" weather","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"atmWUDnm","output_index":0,"sequence_number":6,"summary_index":0} + + event: response.reasoning_summary_text.delta + data: {"type":"response.reasoning_summary_text.delta","delta":" response","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"YqMb6mZ","output_index":0,"sequence_number":7,"summary_index":0} + + event: response.reasoning_summary_text.delta + data: {"type":"response.reasoning_summary_text.delta","delta":"**\n\nI've","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Glr60kHw","output_index":0,"sequence_number":8,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":4,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":"**Reporting","obfuscation":"5gQos"} + data: {"type":"response.reasoning_summary_text.delta","delta":" called","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"akxD8WC0l","output_index":0,"sequence_number":9,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":5,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" weather","obfuscation":"UwpJaPuA"} + data: {"type":"response.reasoning_summary_text.delta","delta":" the","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"pEkrlw9rb4SK","output_index":0,"sequence_number":10,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":6,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" in","obfuscation":"yqbS7YremyW69"} + data: {"type":"response.reasoning_summary_text.delta","delta":" weather","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"sqn10j8w","output_index":0,"sequence_number":11,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":7,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" Florence","obfuscation":"09p5ylF"} + data: {"type":"response.reasoning_summary_text.delta","delta":" function","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"zLL0ebC","output_index":0,"sequence_number":12,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":8,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":"**\n\nI","obfuscation":"1erPdWry9OU"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"DewsYPRaUOmdEE2","output_index":0,"sequence_number":13,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":9,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" received","obfuscation":"qWT2OUw"} + data: {"type":"response.reasoning_summary_text.delta","delta":" and","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"ffGfvIsPdEtK","output_index":0,"sequence_number":14,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":10,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" a","obfuscation":"G9vHw8GohXRwEL"} + data: {"type":"response.reasoning_summary_text.delta","delta":" it","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"ZiGvRyydUrS2M","output_index":0,"sequence_number":15,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":11,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" response","obfuscation":"nbPaQQh"} + data: {"type":"response.reasoning_summary_text.delta","delta":" returned","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"d9jWFsc","output_index":0,"sequence_number":16,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":12,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" from","obfuscation":"bMi1JyxHCzl"} + data: {"type":"response.reasoning_summary_text.delta","delta":" \"","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"1uG330J3PZqiA7","output_index":0,"sequence_number":17,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":13,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" the","obfuscation":"Ig8Zd7uv0LFj"} + data: {"type":"response.reasoning_summary_text.delta","delta":"40","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"LILlrV8Gyzy84f","output_index":0,"sequence_number":18,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":14,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" weather","obfuscation":"myTAJV8S"} + data: {"type":"response.reasoning_summary_text.delta","delta":" C","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"eeAXMqe3UT5GTH","output_index":0,"sequence_number":19,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":15,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" tool","obfuscation":"iucdAHkrfts"} + data: {"type":"response.reasoning_summary_text.delta","delta":"\"","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"uqB0Qsb9ot3QEMr","output_index":0,"sequence_number":20,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":16,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":":","obfuscation":"kXoDqAyXTUuPnzE"} + data: {"type":"response.reasoning_summary_text.delta","delta":" which","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"O8TxX3t5UG","output_index":0,"sequence_number":21,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":17,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" \"","obfuscation":"5eQf0bxhx5NLyy"} + data: {"type":"response.reasoning_summary_text.delta","delta":" seems","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"rthfykcbdU","output_index":0,"sequence_number":22,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":18,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":"40","obfuscation":"SZ4BBgFkUhpJOL"} + data: {"type":"response.reasoning_summary_text.delta","delta":" to","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"f29hsgmrU5NrD","output_index":0,"sequence_number":23,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":19,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":"°C","obfuscation":"UHwVFRt6tPSL9G"} + data: {"type":"response.reasoning_summary_text.delta","delta":" be","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"qQlO3K0P9o5jZ","output_index":0,"sequence_number":24,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":20,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":",\"","obfuscation":"2p9tOp1xAQQjyI"} + data: {"type":"response.reasoning_summary_text.delta","delta":" the","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Ho3Vc5rbB2YY","output_index":0,"sequence_number":25,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":21,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" which","obfuscation":"GomvtOQ4Gv"} + data: {"type":"response.reasoning_summary_text.delta","delta":" temperature","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"ZnqJ","output_index":0,"sequence_number":26,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":22,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" seems","obfuscation":"J9wuxMsTCv"} + data: {"type":"response.reasoning_summary_text.delta","delta":".","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Gokx09epE12SDB3","output_index":0,"sequence_number":27,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":23,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" to","obfuscation":"X2zmzbzM4oFda"} + data: {"type":"response.reasoning_summary_text.delta","delta":" Since","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"3EK2ELWSVz","output_index":0,"sequence_number":28,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":24,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" be","obfuscation":"ROjQI6ZXY6Ubb"} + data: {"type":"response.reasoning_summary_text.delta","delta":" it","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"rFriyQXq1euTf","output_index":0,"sequence_number":29,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":25,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" the","obfuscation":"nGYRWuCDJnct"} + data: {"type":"response.reasoning_summary_text.delta","delta":" only","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"wQJV2SHEWNE","output_index":0,"sequence_number":30,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":26,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" current","obfuscation":"KPwSg9rV"} + data: {"type":"response.reasoning_summary_text.delta","delta":" provided","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"MuPDE7w","output_index":0,"sequence_number":31,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":27,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" temperature","obfuscation":"37LF"} + data: {"type":"response.reasoning_summary_text.delta","delta":" that","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"vfv5glsdzMB","output_index":0,"sequence_number":32,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":28,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":".","obfuscation":"KpXirMiFrHjRSR4"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"iRKfYbOuxHKF6LU","output_index":0,"sequence_number":33,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":29,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" I","obfuscation":"ltWYJfcWvyGF10"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"4o7Y5uiRqFAOgB","output_index":0,"sequence_number":34,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":30,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" need","obfuscation":"hwqBl2ll59o"} + data: {"type":"response.reasoning_summary_text.delta","delta":" need","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"69rOfsET4hr","output_index":0,"sequence_number":35,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":31,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" to","obfuscation":"hBeGzZdt3KCC6"} + data: {"type":"response.reasoning_summary_text.delta","delta":" to","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"MrlmIYRMhpVdy","output_index":0,"sequence_number":36,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":32,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" communicate","obfuscation":"lmHV"} + data: {"type":"response.reasoning_summary_text.delta","delta":" clarify","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"LWH1kdoO","output_index":0,"sequence_number":37,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":33,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" this","obfuscation":"hfYRpzjT3Cm"} + data: {"type":"response.reasoning_summary_text.delta","delta":" that","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"JCrCarRZfJC","output_index":0,"sequence_number":38,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":34,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" to","obfuscation":"DAWciMuJfMHUD"} + data: {"type":"response.reasoning_summary_text.delta","delta":" it's","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"5bI5kGTjpwQ","output_index":0,"sequence_number":39,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":35,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" the","obfuscation":"NBFESvopGSzJ"} + data: {"type":"response.reasoning_summary_text.delta","delta":" in","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"8vKS1uOLjZOAY","output_index":0,"sequence_number":40,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":36,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" user","obfuscation":"DyOnP2Ay1qi"} + data: {"type":"response.reasoning_summary_text.delta","delta":" Celsius","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Gq2L8tHp","output_index":0,"sequence_number":41,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":37,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":".","obfuscation":"jGcGVed1ueHCrUf"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"vDZ7PR2CgPTIpVJ","output_index":0,"sequence_number":42,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":38,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" I","obfuscation":"xrdQUQ3fkzbEVu"} + data: {"type":"response.reasoning_summary_text.delta","delta":" and","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Gb6OEgmdriLN","output_index":0,"sequence_number":43,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":39,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" should","obfuscation":"VScWKYyzf"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"0shYzJ75WKqhVT","output_index":0,"sequence_number":44,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":40,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" say","obfuscation":"kvSuIAu1ytyG"} + data: {"type":"response.reasoning_summary_text.delta","delta":" should","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Ki8fOnsla","output_index":0,"sequence_number":45,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":41,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" \"","obfuscation":"SKs3i3BE16BamR"} + data: {"type":"response.reasoning_summary_text.delta","delta":" let","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"cvk1pGKoHoQX","output_index":0,"sequence_number":46,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":42,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":"The","obfuscation":"IinY2VnfKokdp"} + data: {"type":"response.reasoning_summary_text.delta","delta":" the","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"NmFj4yyBftmI","output_index":0,"sequence_number":47,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":43,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" current","obfuscation":"VSBMDVeo"} + data: {"type":"response.reasoning_summary_text.delta","delta":" user","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"AfmMAWNgH0d","output_index":0,"sequence_number":48,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":44,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" temperature","obfuscation":"2GDr"} + data: {"type":"response.reasoning_summary_text.delta","delta":" know","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"o5YiGhlCRTp","output_index":0,"sequence_number":49,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":45,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" in","obfuscation":"mJY4GlOIntEoL"} + data: {"type":"response.reasoning_summary_text.delta","delta":" that","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"46cLFQActJz","output_index":0,"sequence_number":50,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":46,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" Florence","obfuscation":"UFAPRWk"} + data: {"type":"response.reasoning_summary_text.delta","delta":" it","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Qu1d5nVOjjrIW","output_index":0,"sequence_number":51,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":47,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" is","obfuscation":"Y4OnrlWdlBEtY"} + data: {"type":"response.reasoning_summary_text.delta","delta":"’s","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"xo1xC6SYYcdtEq","output_index":0,"sequence_number":52,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":48,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" 40","obfuscation":"IS9pXmRzTxvcM"} + data: {"type":"response.reasoning_summary_text.delta","delta":" quite","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"b9jOG3z5HF","output_index":0,"sequence_number":53,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":49,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":"°C","obfuscation":"zKVUPB1SlvItXg"} + data: {"type":"response.reasoning_summary_text.delta","delta":" hot","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"WRDL8I4rmV3D","output_index":0,"sequence_number":54,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":50,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" (","obfuscation":"XoMglWuaflLGX9"} + data: {"type":"response.reasoning_summary_text.delta","delta":".","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"vfpB9TeM67GOYPQ","output_index":0,"sequence_number":55,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":51,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":"104","obfuscation":"rqTB5uyy3HgEC"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"IP2b1l90F16hgs","output_index":0,"sequence_number":56,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":52,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":"°F","obfuscation":"lXMfySda8WEpDc"} + data: {"type":"response.reasoning_summary_text.delta","delta":" could","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"gE0pTcrEWT","output_index":0,"sequence_number":57,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":53,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":").\"","obfuscation":"8F0gFcXYWL5T0"} + data: {"type":"response.reasoning_summary_text.delta","delta":" offer","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"WpueygSK8A","output_index":0,"sequence_number":58,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":54,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" It","obfuscation":"7ZgOIw0oq922R"} + data: {"type":"response.reasoning_summary_text.delta","delta":" to","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"H78TY21x5Exdq","output_index":0,"sequence_number":59,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":55,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":"’s","obfuscation":"zagMSMI8iZpLoS"} + data: {"type":"response.reasoning_summary_text.delta","delta":" provide","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"HXXMc68C","output_index":0,"sequence_number":60,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":56,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" definitely","obfuscation":"NSfq8"} + data: {"type":"response.reasoning_summary_text.delta","delta":" more","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"dxKAlMYACYD","output_index":0,"sequence_number":61,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":57,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" hot","obfuscation":"hrcK53KJShnX"} + data: {"type":"response.reasoning_summary_text.delta","delta":" details","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"SndUTnuv","output_index":0,"sequence_number":62,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":58,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":",","obfuscation":"YD25fDahFL6LJ0D"} + data: {"type":"response.reasoning_summary_text.delta","delta":" such","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"jSZ4rMWsTSm","output_index":0,"sequence_number":63,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":59,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" so","obfuscation":"KBEYwFhRe0shR"} + data: {"type":"response.reasoning_summary_text.delta","delta":" as","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"pM6rUgM5T9Lj4","output_index":0,"sequence_number":64,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":60,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" I","obfuscation":"onaKnofE27wVAP"} + data: {"type":"response.reasoning_summary_text.delta","delta":" humidity","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"lub8GaB","output_index":0,"sequence_number":65,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":61,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":"’ll","obfuscation":"6ZUdrW42KbUiA"} + data: {"type":"response.reasoning_summary_text.delta","delta":" or","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Fx7awQ2b1wpVz","output_index":0,"sequence_number":66,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":62,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" recommend","obfuscation":"FTuouT"} + data: {"type":"response.reasoning_summary_text.delta","delta":" wind","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"63AL80PrbnT","output_index":0,"sequence_number":67,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":63,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" staying","obfuscation":"yOAGUiey"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"U5J4ayXBo1E6bs6","output_index":0,"sequence_number":68,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":64,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" hydrated","obfuscation":"kSNmgSx"} + data: {"type":"response.reasoning_summary_text.delta","delta":" and","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"ec3aaI7Sr0oH","output_index":0,"sequence_number":69,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":65,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" and","obfuscation":"XTi4eJ2Q0Lq8"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"TPJprDLvsoiqsx","output_index":0,"sequence_number":70,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":66,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" finding","obfuscation":"sP768FSQ"} + data: {"type":"response.reasoning_summary_text.delta","delta":" can","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"kzYMoosMC4gm","output_index":0,"sequence_number":71,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":67,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" shade","obfuscation":"VvenwZXf90"} + data: {"type":"response.reasoning_summary_text.delta","delta":" convert","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"7EV3xiyF","output_index":0,"sequence_number":72,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":68,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":".","obfuscation":"rmEyh5b1Mcmj3cR"} + data: {"type":"response.reasoning_summary_text.delta","delta":" that","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"QzVhOCnfHfC","output_index":0,"sequence_number":73,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":69,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" Since","obfuscation":"TyqlAAFS3f"} + data: {"type":"response.reasoning_summary_text.delta","delta":" to","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"dGDTmXJXMW6IT","output_index":0,"sequence_number":74,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":70,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" the","obfuscation":"LlRdEhsRMHb3"} + data: {"type":"response.reasoning_summary_text.delta","delta":" Fahrenheit","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"kQIQJ","output_index":0,"sequence_number":75,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":71,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" tool","obfuscation":"f6p12JrND8R"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"mk93v17PuMxTJlM","output_index":0,"sequence_number":76,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":72,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" only","obfuscation":"d1I2nSpmIBS"} + data: {"type":"response.reasoning_summary_text.delta","delta":" which","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"HgwTxpuhG4","output_index":0,"sequence_number":77,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":73,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" provided","obfuscation":"EQ9BLBa"} + data: {"type":"response.reasoning_summary_text.delta","delta":" is","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"aY404Q7VuFN2z","output_index":0,"sequence_number":78,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":74,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" one","obfuscation":"9ZxPVBexaHKa"} + data: {"type":"response.reasoning_summary_text.delta","delta":" 104","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"xSqPhdG88OgM","output_index":0,"sequence_number":79,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":75,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" value","obfuscation":"vhTvlR83p4"} + data: {"type":"response.reasoning_summary_text.delta","delta":"°F","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"QPYPeBno8C18kw","output_index":0,"sequence_number":80,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":76,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" and","obfuscation":"xdmVZycS2Ylr"} + data: {"type":"response.reasoning_summary_text.delta","delta":".","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"MNlJaBAR1QNIARH","output_index":0,"sequence_number":81,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":77,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" no","obfuscation":"y40O9OeuBhg7m"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"059SIUQ9QeQsNj","output_index":0,"sequence_number":82,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":78,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" specifics","obfuscation":"sCr0So"} + data: {"type":"response.reasoning_summary_text.delta","delta":" need","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"mgnVakWPgjZ","output_index":0,"sequence_number":83,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":79,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" on","obfuscation":"HdoCRImDBs2DS"} + data: {"type":"response.reasoning_summary_text.delta","delta":" to","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"gfYRuigoNIBIX","output_index":0,"sequence_number":84,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":80,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" conditions","obfuscation":"GbmmC"} + data: {"type":"response.reasoning_summary_text.delta","delta":" mention","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"1zpHlURe","output_index":0,"sequence_number":85,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":81,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":",","obfuscation":"OAlBtHulWPzEalx"} + data: {"type":"response.reasoning_summary_text.delta","delta":" the","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"sQazXastqNSR","output_index":0,"sequence_number":86,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":82,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" I","obfuscation":"CtUT8i6m9hToSk"} + data: {"type":"response.reasoning_summary_text.delta","delta":" current","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Ar7ZzjBW","output_index":0,"sequence_number":87,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":83,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" can","obfuscation":"BAOpECzQOaTO"} + data: {"type":"response.reasoning_summary_text.delta","delta":" temperature","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"U0vv","output_index":0,"sequence_number":88,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":84,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" offer","obfuscation":"O24rtxx9P2"} + data: {"type":"response.reasoning_summary_text.delta","delta":" but","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"4PXoJmqA2d1D","output_index":0,"sequence_number":89,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":85,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" to","obfuscation":"42xBSJNVXrE9h"} + data: {"type":"response.reasoning_summary_text.delta","delta":" avoid","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"DzSvfjl6Mw","output_index":0,"sequence_number":90,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":86,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" give","obfuscation":"pV1icF1v8gj"} + data: {"type":"response.reasoning_summary_text.delta","delta":" invent","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"MTJxl4gE5","output_index":0,"sequence_number":91,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":87,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" forecasts","obfuscation":"VWmZOc"} + data: {"type":"response.reasoning_summary_text.delta","delta":"ing","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"a1FjshaPWjI1e","output_index":0,"sequence_number":92,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":88,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" or","obfuscation":"Pi4IUyyxHMKBe"} + data: {"type":"response.reasoning_summary_text.delta","delta":" any","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"4aP9eRi3nmbk","output_index":0,"sequence_number":93,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":89,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" advice","obfuscation":"BXXJDeNx5"} + data: {"type":"response.reasoning_summary_text.delta","delta":" other","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"NmQQmrRLbW","output_index":0,"sequence_number":94,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":90,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" on","obfuscation":"f6LgRvEityZy4"} + data: {"type":"response.reasoning_summary_text.delta","delta":" details","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"ZvgWT0Sf","output_index":0,"sequence_number":95,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":91,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" humidity","obfuscation":"uUo2LQz"} + data: {"type":"response.reasoning_summary_text.delta","delta":".","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"mWI9vWZ17LDvAGL","output_index":0,"sequence_number":96,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":92,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" and","obfuscation":"cE1pU6IIXFq4"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I'll","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"DTzBejqgiVj","output_index":0,"sequence_number":97,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":93,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" wind","obfuscation":"rRBZx4wWNso"} + data: {"type":"response.reasoning_summary_text.delta","delta":" ask","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"dmcVB5UNIWV8","output_index":0,"sequence_number":98,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":94,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":",","obfuscation":"hUOsIhEP83QN3GK"} + data: {"type":"response.reasoning_summary_text.delta","delta":" if","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"r7FMXtVlWtJLw","output_index":0,"sequence_number":99,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":95,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" along","obfuscation":"3wJMPpgOTE"} + data: {"type":"response.reasoning_summary_text.delta","delta":" they","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"s8JlJhzJvAo","output_index":0,"sequence_number":100,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":96,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" with","obfuscation":"UIDt9oAjKRT"} + data: {"type":"response.reasoning_summary_text.delta","delta":" want","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"ZfdSIjZ73vi","output_index":0,"sequence_number":101,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":97,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" potential","obfuscation":"lzNnY9"} + data: {"type":"response.reasoning_summary_text.delta","delta":" the","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"jo9rLrQee5QA","output_index":0,"sequence_number":102,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":98,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" local","obfuscation":"vdZi1cFeye"} + data: {"type":"response.reasoning_summary_text.delta","delta":" forecast","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"nplWiR7","output_index":0,"sequence_number":103,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":99,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" heat","obfuscation":"YWzkvP2kp3d"} + data: {"type":"response.reasoning_summary_text.delta","delta":" or","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"qZg6bjJXVRh5r","output_index":0,"sequence_number":104,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":100,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":" warnings","obfuscation":"SUgDlZi"} + data: {"type":"response.reasoning_summary_text.delta","delta":" more","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"VDw4qhpBJ34","output_index":0,"sequence_number":105,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":101,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"delta":".","obfuscation":"brFkCVHcYXqaROO"} + data: {"type":"response.reasoning_summary_text.delta","delta":" information","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"f5Bq","output_index":0,"sequence_number":106,"summary_index":0} + + event: response.reasoning_summary_text.delta + data: {"type":"response.reasoning_summary_text.delta","delta":".","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"semuSUSU7rqUUVY","output_index":0,"sequence_number":107,"summary_index":0} event: response.reasoning_summary_text.done - data: {"type":"response.reasoning_summary_text.done","sequence_number":102,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"text":"**Reporting weather in Florence**\n\nI received a response from the weather tool: \"40°C,\" which seems to be the current temperature. I need to communicate this to the user. I should say \"The current temperature in Florence is 40°C (104°F).\" It’s definitely hot, so I’ll recommend staying hydrated and finding shade. Since the tool only provided one value and no specifics on conditions, I can offer to give forecasts or advice on humidity and wind, along with potential local heat warnings."} + data: {"type":"response.reasoning_summary_text.done","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","output_index":0,"sequence_number":108,"summary_index":0,"text":"**Analyzing weather response**\n\nI've called the weather function, and it returned \"40 C\" which seems to be the temperature. Since it only provided that, I need to clarify that it's in Celsius, and I should let the user know that it’s quite hot. I could offer to provide more details such as humidity or wind, and I can convert that to Fahrenheit, which is 104°F. I need to mention the current temperature but avoid inventing any other details. I'll ask if they want the forecast or more information."} event: response.reasoning_summary_part.done - data: {"type":"response.reasoning_summary_part.done","sequence_number":103,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":0,"part":{"type":"summary_text","text":"**Reporting weather in Florence**\n\nI received a response from the weather tool: \"40°C,\" which seems to be the current temperature. I need to communicate this to the user. I should say \"The current temperature in Florence is 40°C (104°F).\" It’s definitely hot, so I’ll recommend staying hydrated and finding shade. Since the tool only provided one value and no specifics on conditions, I can offer to give forecasts or advice on humidity and wind, along with potential local heat warnings."}} + data: {"type":"response.reasoning_summary_part.done","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","output_index":0,"part":{"type":"summary_text","text":"**Analyzing weather response**\n\nI've called the weather function, and it returned \"40 C\" which seems to be the temperature. Since it only provided that, I need to clarify that it's in Celsius, and I should let the user know that it’s quite hot. I could offer to provide more details such as humidity or wind, and I can convert that to Fahrenheit, which is 104°F. I need to mention the current temperature but avoid inventing any other details. I'll ask if they want the forecast or more information."},"sequence_number":109,"summary_index":0} event: response.reasoning_summary_part.added - data: {"type":"response.reasoning_summary_part.added","sequence_number":104,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"part":{"type":"summary_text","text":""}} + data: {"type":"response.reasoning_summary_part.added","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","output_index":0,"part":{"type":"summary_text","text":""},"sequence_number":110,"summary_index":1} + + event: response.reasoning_summary_text.delta + data: {"type":"response.reasoning_summary_text.delta","delta":"**Craft","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"i537Zs6EK","output_index":0,"sequence_number":111,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":105,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":"**Craft","obfuscation":"v3lT9Lw58"} + data: {"type":"response.reasoning_summary_text.delta","delta":"ing","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"78m4bA40B3eHw","output_index":0,"sequence_number":112,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":106,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":"ing","obfuscation":"VUi4uixJQPPEm"} + data: {"type":"response.reasoning_summary_text.delta","delta":" weather","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"2VlSms28","output_index":0,"sequence_number":113,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":107,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" a","obfuscation":"QLh9wwvR8zL4Db"} + data: {"type":"response.reasoning_summary_text.delta","delta":" response","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"4YldZDO","output_index":0,"sequence_number":114,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":108,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" weather","obfuscation":"6U3Ev4bl"} + data: {"type":"response.reasoning_summary_text.delta","delta":"**\n\nI","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Z8hBuHtSstW","output_index":0,"sequence_number":115,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":109,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" response","obfuscation":"LiEP4YJ"} + data: {"type":"response.reasoning_summary_text.delta","delta":" want","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"rR94rkEAAnA","output_index":0,"sequence_number":116,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":110,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":"**\n\nI","obfuscation":"SFektGlMBvo"} + data: {"type":"response.reasoning_summary_text.delta","delta":" to","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Qfwryg6Wox2ap","output_index":0,"sequence_number":117,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":111,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":"’ll","obfuscation":"Kv4hggvEocdUd"} + data: {"type":"response.reasoning_summary_text.delta","delta":" keep","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"VDlCC9QGjg2","output_index":0,"sequence_number":118,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":112,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" reply","obfuscation":"355XhtSQr0"} + data: {"type":"response.reasoning_summary_text.delta","delta":" my","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"9cePE89fLdtx8","output_index":0,"sequence_number":119,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":113,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" with","obfuscation":"TvBDXURmpJG"} + data: {"type":"response.reasoning_summary_text.delta","delta":" message","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"oJzWZ6Av","output_index":0,"sequence_number":120,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":114,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":":","obfuscation":"1GJoMPHVMSXePVB"} + data: {"type":"response.reasoning_summary_text.delta","delta":" concise","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"qTHLItdT","output_index":0,"sequence_number":121,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":115,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" \"","obfuscation":"n5VFC6vrJ5zYY7"} + data: {"type":"response.reasoning_summary_text.delta","delta":" and","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"HLVOzzcVyoob","output_index":0,"sequence_number":122,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":116,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":"The","obfuscation":"MTC8iZh8LFkCI"} + data: {"type":"response.reasoning_summary_text.delta","delta":" clear","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"FdSnkHOEuA","output_index":0,"sequence_number":123,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":117,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" current","obfuscation":"nfCQCUa3"} + data: {"type":"response.reasoning_summary_text.delta","delta":".","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"W3gnxuTPP3940vg","output_index":0,"sequence_number":124,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":118,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" temperature","obfuscation":"tTBT"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I'll","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"WzfZGrgfM4R","output_index":0,"sequence_number":125,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":119,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" in","obfuscation":"HjvSLho41uChe"} + data: {"type":"response.reasoning_summary_text.delta","delta":" state","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"gsegsP8V5T","output_index":0,"sequence_number":126,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":120,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" Florence","obfuscation":"V0LmoS2"} + data: {"type":"response.reasoning_summary_text.delta","delta":" the","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"YqNBcYgtJj2U","output_index":0,"sequence_number":127,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":121,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" is","obfuscation":"lVSo2cezcapep"} + data: {"type":"response.reasoning_summary_text.delta","delta":" current","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"eLR5U8jj","output_index":0,"sequence_number":128,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":122,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" 40","obfuscation":"PYfEsYTuWRhsQ"} + data: {"type":"response.reasoning_summary_text.delta","delta":" temperature","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Rp3O","output_index":0,"sequence_number":129,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":123,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":"°C","obfuscation":"ImbxnkFzbKvhMV"} + data: {"type":"response.reasoning_summary_text.delta","delta":" in","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"ThUBELrGROqrZ","output_index":0,"sequence_number":130,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":124,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" (","obfuscation":"MjyYjtSMRwkO7B"} + data: {"type":"response.reasoning_summary_text.delta","delta":" Florence","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"IibS32n","output_index":0,"sequence_number":131,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":125,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":"104","obfuscation":"CSrXbM3ZbBfog"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"wylYFl8Q9s7Cwbj","output_index":0,"sequence_number":132,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":126,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":"°F","obfuscation":"BpaV9oyZ4cxfxM"} + data: {"type":"response.reasoning_summary_text.delta","delta":" Italy","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"zJHaeiblbC","output_index":0,"sequence_number":133,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":127,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":").","obfuscation":"CsCqaIPPphyvb6"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"uJ1saFaPZSjtEKl","output_index":0,"sequence_number":134,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":128,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" I","obfuscation":"n5XCuVIZCLFGKK"} + data: {"type":"response.reasoning_summary_text.delta","delta":" which","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"A44MbSlxT4","output_index":0,"sequence_number":135,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":129,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" don","obfuscation":"bUgCRoHDFNma"} + data: {"type":"response.reasoning_summary_text.delta","delta":" is","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"qCBT3kvsL8aG9","output_index":0,"sequence_number":136,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":130,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":"’t","obfuscation":"1Oo9jQ1Lviz8yz"} + data: {"type":"response.reasoning_summary_text.delta","delta":" 40","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"xRcdtgoIGXmgb","output_index":0,"sequence_number":137,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":131,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" have","obfuscation":"Ia0gc5AYZUT"} + data: {"type":"response.reasoning_summary_text.delta","delta":"°C","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"VOKCHKvf4Cde4F","output_index":0,"sequence_number":138,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":132,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" additional","obfuscation":"HuKIv"} + data: {"type":"response.reasoning_summary_text.delta","delta":" (","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"9DAgv7q8uufG20","output_index":0,"sequence_number":139,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":133,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" details","obfuscation":"rf57xXQs"} + data: {"type":"response.reasoning_summary_text.delta","delta":"104","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"O5cLzEvmfWB1w","output_index":0,"sequence_number":140,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":134,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" like","obfuscation":"zoRtsGNCpdc"} + data: {"type":"response.reasoning_summary_text.delta","delta":"°F","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"tF7x7wdtUgkFD9","output_index":0,"sequence_number":141,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":135,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" precipitation","obfuscation":"Qp"} + data: {"type":"response.reasoning_summary_text.delta","delta":"),","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"qXXDzRTa2MA8lV","output_index":0,"sequence_number":142,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":136,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":",","obfuscation":"YTuAfVimiDFoxFg"} + data: {"type":"response.reasoning_summary_text.delta","delta":" and","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"42fCPaCRQJiP","output_index":0,"sequence_number":143,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":137,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" clouds","obfuscation":"yXUF41WUX"} + data: {"type":"response.reasoning_summary_text.delta","delta":" let","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"cxnP7dzjkHyS","output_index":0,"sequence_number":144,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":138,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":",","obfuscation":"XDmoR1WMpYDYCS6"} + data: {"type":"response.reasoning_summary_text.delta","delta":" the","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"nPNHjyygMRFw","output_index":0,"sequence_number":145,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":139,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" or","obfuscation":"ARcgSEwQ1prmb"} + data: {"type":"response.reasoning_summary_text.delta","delta":" user","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"cC9HadSMl7f","output_index":0,"sequence_number":146,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":140,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" wind","obfuscation":"jCO0N6skNbE"} + data: {"type":"response.reasoning_summary_text.delta","delta":" know","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Xivz8zwuCeL","output_index":0,"sequence_number":147,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":141,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":".\"","obfuscation":"7ZNZvo70NJOW2s"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"nfo2OV7fplFu1v","output_index":0,"sequence_number":148,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":142,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" It's","obfuscation":"znHeawO0fFJ"} + data: {"type":"response.reasoning_summary_text.delta","delta":" don","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"nPhiDoRvBrN6","output_index":0,"sequence_number":149,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":143,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" definitely","obfuscation":"BQ9TI"} + data: {"type":"response.reasoning_summary_text.delta","delta":"’t","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"jb0OUEg72EUoNe","output_index":0,"sequence_number":150,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":144,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" very","obfuscation":"jrReafNEgKG"} + data: {"type":"response.reasoning_summary_text.delta","delta":" have","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"c3q9S4uy5xo","output_index":0,"sequence_number":151,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":145,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" hot","obfuscation":"ccDf9M1dwYcV"} + data: {"type":"response.reasoning_summary_text.delta","delta":" additional","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"c3x3d","output_index":0,"sequence_number":152,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":146,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":",","obfuscation":"tKTRhKI4f1NUgbS"} + data: {"type":"response.reasoning_summary_text.delta","delta":" details","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"kGSO3Kcu","output_index":0,"sequence_number":153,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":147,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" so","obfuscation":"5BYkzw7QzTOuN"} + data: {"type":"response.reasoning_summary_text.delta","delta":" like","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"WbamPPCjau6","output_index":0,"sequence_number":154,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":148,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" I","obfuscation":"7P5HGFoZK2LdAd"} + data: {"type":"response.reasoning_summary_text.delta","delta":" precipitation","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"4U","output_index":0,"sequence_number":155,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":149,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" should","obfuscation":"sf96y5onP"} + data: {"type":"response.reasoning_summary_text.delta","delta":" or","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Zc62q6QODW7j5","output_index":0,"sequence_number":156,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":150,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" advise","obfuscation":"pXuBeVaJm"} + data: {"type":"response.reasoning_summary_text.delta","delta":" wind","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"0722dyHStBt","output_index":0,"sequence_number":157,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":151,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" staying","obfuscation":"2mLddFly"} + data: {"type":"response.reasoning_summary_text.delta","delta":".","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"FMeXdaT9t9ANju7","output_index":0,"sequence_number":158,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":152,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" hydrated","obfuscation":"vHWJPko"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"H0QmsNqB23voMw","output_index":0,"sequence_number":159,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":153,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":",","obfuscation":"sA6etch6WftywUl"} + data: {"type":"response.reasoning_summary_text.delta","delta":" should","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"3RnBpLL9v","output_index":0,"sequence_number":160,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":154,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" seeking","obfuscation":"2UweHpo9"} + data: {"type":"response.reasoning_summary_text.delta","delta":" offer","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"vQaJMwnfj9","output_index":0,"sequence_number":161,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":155,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" shade","obfuscation":"B9w6TYk0Ke"} + data: {"type":"response.reasoning_summary_text.delta","delta":" options","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"b1kFYeqq","output_index":0,"sequence_number":162,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":156,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":",","obfuscation":"lDuxQqlRNyqeHqv"} + data: {"type":"response.reasoning_summary_text.delta","delta":" for","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"FriOzmWykMQP","output_index":0,"sequence_number":163,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":157,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" and","obfuscation":"ObORsgjVWUYb"} + data: {"type":"response.reasoning_summary_text.delta","delta":" more","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"giwSO34wKFe","output_index":0,"sequence_number":164,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":158,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" avoiding","obfuscation":"RTTO4qr"} + data: {"type":"response.reasoning_summary_text.delta","delta":" information","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"TrPz","output_index":0,"sequence_number":165,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":159,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" strenuous","obfuscation":"AckJpN"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Y4Z8Jle5Ibp37JQ","output_index":0,"sequence_number":166,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":160,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" outdoor","obfuscation":"LP3Qkxzy"} + data: {"type":"response.reasoning_summary_text.delta","delta":" such","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Qu7jny02j0S","output_index":0,"sequence_number":167,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":161,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" activities","obfuscation":"mvveT"} + data: {"type":"response.reasoning_summary_text.delta","delta":" as","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Xod4NsgvjlorN","output_index":0,"sequence_number":168,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":162,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" while","obfuscation":"Fa9ETGvRvN"} + data: {"type":"response.reasoning_summary_text.delta","delta":" today","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"rrcqEeYsJ0","output_index":0,"sequence_number":169,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":163,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" wearing","obfuscation":"DK4l1ukE"} + data: {"type":"response.reasoning_summary_text.delta","delta":"’s","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"J0ds8TPFTyqO4u","output_index":0,"sequence_number":170,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":164,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" light","obfuscation":"744PCnTN12"} + data: {"type":"response.reasoning_summary_text.delta","delta":" forecast","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"3ZuDDzJ","output_index":0,"sequence_number":171,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":165,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" clothing","obfuscation":"9P9Fqcf"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"GOTyG7eHhKfCDQn","output_index":0,"sequence_number":172,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":166,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" and","obfuscation":"NvZk96NvOisD"} + data: {"type":"response.reasoning_summary_text.delta","delta":" an","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"f3wgneOnXapGo","output_index":0,"sequence_number":173,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":167,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" sunscreen","obfuscation":"aTJmiI"} + data: {"type":"response.reasoning_summary_text.delta","delta":" hourly","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Eg8fiKfMg","output_index":0,"sequence_number":174,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":168,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":".","obfuscation":"MwRbmskoZqnPdsi"} + data: {"type":"response.reasoning_summary_text.delta","delta":" breakdown","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"yAZc40","output_index":0,"sequence_number":175,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":169,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" I","obfuscation":"UqfCe1lmvQkF0a"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"IXZSoJhCjfiUmTm","output_index":0,"sequence_number":176,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":170,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" can","obfuscation":"ghkSKMGvLYKs"} + data: {"type":"response.reasoning_summary_text.delta","delta":" or","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"tV50zA43UPOLO","output_index":0,"sequence_number":177,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":171,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" also","obfuscation":"ESGzyGD7Eqy"} + data: {"type":"response.reasoning_summary_text.delta","delta":" humidity","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"4mnLvDJ","output_index":0,"sequence_number":178,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":172,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" ask","obfuscation":"5DJZT0xXIBZo"} + data: {"type":"response.reasoning_summary_text.delta","delta":" and","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Nt01NAa2uNGB","output_index":0,"sequence_number":179,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":173,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":",","obfuscation":"5h5B8LYCBKJcBwc"} + data: {"type":"response.reasoning_summary_text.delta","delta":" wind","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"h660HjrtH5F","output_index":0,"sequence_number":180,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":174,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" \"","obfuscation":"yyTfa1pyRmPSYx"} + data: {"type":"response.reasoning_summary_text.delta","delta":" details","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"H2mzV4Gs","output_index":0,"sequence_number":181,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":175,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":"Would","obfuscation":"EQGJdKCv9Zk"} + data: {"type":"response.reasoning_summary_text.delta","delta":".","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"iCqyRdolq8p1EJp","output_index":0,"sequence_number":182,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":176,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" you","obfuscation":"tM8jm0vPQMLJ"} + data: {"type":"response.reasoning_summary_text.delta","delta":" Additionally","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"vTe","output_index":0,"sequence_number":183,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":177,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" like","obfuscation":"l8kNxSfLCWu"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"EjlT0ZpjcqthGqK","output_index":0,"sequence_number":184,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":178,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" a","obfuscation":"Wgoej4knJGyWAX"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"DobM1GSrRg4AWx","output_index":0,"sequence_number":185,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":179,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" forecast","obfuscation":"YdSnH4F"} + data: {"type":"response.reasoning_summary_text.delta","delta":" might","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"sZqkA0AmeV","output_index":0,"sequence_number":186,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":180,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" for","obfuscation":"0PpeJ6cZyjix"} + data: {"type":"response.reasoning_summary_text.delta","delta":" include","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"fwe5GeJE","output_index":0,"sequence_number":187,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":181,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" the","obfuscation":"m1mN3O1VagcY"} + data: {"type":"response.reasoning_summary_text.delta","delta":" a","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"OGZqYz5dOXPdRJ","output_index":0,"sequence_number":188,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":182,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" next","obfuscation":"hUL10Fx5BDJ"} + data: {"type":"response.reasoning_summary_text.delta","delta":" friendly","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Ktte47j","output_index":0,"sequence_number":189,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":183,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" few","obfuscation":"6k2PWl0vsDUs"} + data: {"type":"response.reasoning_summary_text.delta","delta":" note","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"iFkCBVbHVHh","output_index":0,"sequence_number":190,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":184,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" days","obfuscation":"fhnfdfopMr6"} + data: {"type":"response.reasoning_summary_text.delta","delta":" about","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"IfUIQD2CXk","output_index":0,"sequence_number":191,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":185,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":"?\"","obfuscation":"d0lRQhHFO43v6n"} + data: {"type":"response.reasoning_summary_text.delta","delta":" extreme","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"xiWvVGJ0","output_index":0,"sequence_number":192,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":186,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" I","obfuscation":"m3iOXLEUzo90wA"} + data: {"type":"response.reasoning_summary_text.delta","delta":" heat","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"cZsSsn1zVBd","output_index":0,"sequence_number":193,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":187,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" want","obfuscation":"WD68YwKNyEx"} + data: {"type":"response.reasoning_summary_text.delta","delta":".","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"TD0IbFRxuTxuKu7","output_index":0,"sequence_number":194,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":188,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" to","obfuscation":"6ioZS6nWR7j1R"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"CR55Lvsv0e4NMC","output_index":0,"sequence_number":195,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":189,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" keep","obfuscation":"FCZE1feVQsL"} + data: {"type":"response.reasoning_summary_text.delta","delta":"’ll","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"zNpxVrDXvTfDs","output_index":0,"sequence_number":196,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":190,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" this","obfuscation":"e72IQMlMM7H"} + data: {"type":"response.reasoning_summary_text.delta","delta":" ask","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"xGgVr8bgaVh9","output_index":0,"sequence_number":197,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":191,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" concise","obfuscation":"trTiq3Ro"} + data: {"type":"response.reasoning_summary_text.delta","delta":" if","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"7TtPMtzB40gTL","output_index":0,"sequence_number":198,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":192,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" and","obfuscation":"FlaC5lwefou7"} + data: {"type":"response.reasoning_summary_text.delta","delta":" they","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"84N7Ln9WAd2","output_index":0,"sequence_number":199,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":193,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" informative","obfuscation":"tRl2"} + data: {"type":"response.reasoning_summary_text.delta","delta":"’d","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"HRXeH77oMEZuwY","output_index":0,"sequence_number":200,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":194,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":",","obfuscation":"LVAuv792sDnEG9v"} + data: {"type":"response.reasoning_summary_text.delta","delta":" like","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"cdkPqeBGO9Y","output_index":0,"sequence_number":201,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":195,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" considering","obfuscation":"96AV"} + data: {"type":"response.reasoning_summary_text.delta","delta":" me","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"XpL7GJSTBUoBU","output_index":0,"sequence_number":202,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":196,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" the","obfuscation":"83bHZCQkeWKJ"} + data: {"type":"response.reasoning_summary_text.delta","delta":" to","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"PY58ZzGIAaDaO","output_index":0,"sequence_number":203,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":197,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" user","obfuscation":"8E3r91DsgX9"} + data: {"type":"response.reasoning_summary_text.delta","delta":" fetch","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"a6uFa765MG","output_index":0,"sequence_number":204,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":198,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" just","obfuscation":"GNTPSKBnBms"} + data: {"type":"response.reasoning_summary_text.delta","delta":" more","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"8CDyIhKSWvJ","output_index":0,"sequence_number":205,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":199,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" wanted","obfuscation":"doJgdTybb"} + data: {"type":"response.reasoning_summary_text.delta","delta":" information","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"QmMd","output_index":0,"sequence_number":206,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":200,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" the","obfuscation":"X4VgDMNE88cZ"} + data: {"type":"response.reasoning_summary_text.delta","delta":" or","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"9KTSzSLHxYs43","output_index":0,"sequence_number":207,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":201,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" current","obfuscation":"bXJjxZcU"} + data: {"type":"response.reasoning_summary_text.delta","delta":" convert","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"ZfBo8lPO","output_index":0,"sequence_number":208,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":202,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":" weather","obfuscation":"RdVQ78IM"} + data: {"type":"response.reasoning_summary_text.delta","delta":" units","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"G69iOi6RM1","output_index":0,"sequence_number":209,"summary_index":1} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":203,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"delta":".","obfuscation":"HqFL1VaceRoDB2h"} + data: {"type":"response.reasoning_summary_text.delta","delta":".","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","obfuscation":"Lbj3FxjNQ99W01P","output_index":0,"sequence_number":210,"summary_index":1} event: response.reasoning_summary_text.done - data: {"type":"response.reasoning_summary_text.done","sequence_number":204,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"text":"**Crafting a weather response**\n\nI’ll reply with: \"The current temperature in Florence is 40°C (104°F). I don’t have additional details like precipitation, clouds, or wind.\" It's definitely very hot, so I should advise staying hydrated, seeking shade, and avoiding strenuous outdoor activities while wearing light clothing and sunscreen. I can also ask, \"Would you like a forecast for the next few days?\" I want to keep this concise and informative, considering the user just wanted the current weather."} + data: {"type":"response.reasoning_summary_text.done","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","output_index":0,"sequence_number":211,"summary_index":1,"text":"**Crafting weather response**\n\nI want to keep my message concise and clear. I'll state the current temperature in Florence, Italy, which is 40°C (104°F), and let the user know I don’t have additional details like precipitation or wind. I should offer options for more information, such as today’s forecast, an hourly breakdown, or humidity and wind details. Additionally, I might include a friendly note about extreme heat. I’ll ask if they’d like me to fetch more information or convert units."} event: response.reasoning_summary_part.done - data: {"type":"response.reasoning_summary_part.done","sequence_number":205,"item_id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","output_index":0,"summary_index":1,"part":{"type":"summary_text","text":"**Crafting a weather response**\n\nI’ll reply with: \"The current temperature in Florence is 40°C (104°F). I don’t have additional details like precipitation, clouds, or wind.\" It's definitely very hot, so I should advise staying hydrated, seeking shade, and avoiding strenuous outdoor activities while wearing light clothing and sunscreen. I can also ask, \"Would you like a forecast for the next few days?\" I want to keep this concise and informative, considering the user just wanted the current weather."}} + data: {"type":"response.reasoning_summary_part.done","item_id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","output_index":0,"part":{"type":"summary_text","text":"**Crafting weather response**\n\nI want to keep my message concise and clear. I'll state the current temperature in Florence, Italy, which is 40°C (104°F), and let the user know I don’t have additional details like precipitation or wind. I should offer options for more information, such as today’s forecast, an hourly breakdown, or humidity and wind details. Additionally, I might include a friendly note about extreme heat. I’ll ask if they’d like me to fetch more information or convert units."},"sequence_number":212,"summary_index":1} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":206,"output_index":0,"item":{"id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","type":"reasoning","encrypted_content":"gAAAAABpA5oXkQkuZ7auEqNLWo98OBrRqShGlh1yVrv5vq_wbv5AbBwYKDsTICx2fHGZkbe05e2qcEUyQoaYCndRanglXc6qth-tpQdnFWq_DNbIx8RHek4qtLk8QmayDxrQCK_DQlt4-hEtxFA9SuKCacwVxL3hHvW_48umG7zVD3vT3j7EXFwtQzpzRkPAnpGnJ7axx7SXi2hHzbUo6RZ_gPJQPrAhmrA9IOiqqTj9DeAT-nNu0gr-xAt6X7l6q0dD--ndngnf3eXPNaH8J3NrSpg9NEmQo-zvpDTTPUDWjkqs8ggnbXcqrv_EVl6dGIfNKapwsmBPeASD9MUmUnu2DhH3xW9HB0B64lm2rYgECwqel2zgzY64KkpaeX6tVpPHGW8Bzd8ftfco9kiJzDYPqrLrrbh0E3Xf0reF-IiWTGjE5u8jmoxweCACuKKNGo4vvCZV5Il3W3217H8MmpBFIoBax_Nu9sHcKJd5VA-7xR8xFO3_UGkk3RGbfwBmw_X4yt6rIx-z2_kuC6BhURq_wmf57KkFhXjDkLp9XFDqm6QXOGjIvRf61Y7OVHvx9FBd6SLjj_0WcmAfSLG8vtsVGJ_aF7sZljT-dtQNvZTJCEOZ-O3dbH3SlJWC4kTdNRPVq6_HWYsZng6DIjWlXH6nCX0qB9QsffZoJ4Ji0LXZ6XKTgZOp0kpGhaYYRkFPiumKjJgHZtY-8_OW-4ETpUu-UGvwYysZFd4grTbQ02x459JExPae6FMo6uTfDQ_-jHi14bq99D7Vmo7w_4mItfjAgd4GONo-0YKkiFYb6SSEqceCa5tJbevqs5mj-blRMjzWV1CT7xCAl3KkYA82E_oPtzVjzhp4gji7nCAL0hK69CmUfwt4iWyqecvtSZMHr0dcupyLjyHFlTB6LSViKz7bMgqt6Vo9sRXMhMsqS_7SD4fUtjrEQ5tXwTybPxY9ROesMdgUkMPjp_l3eLg--BIRlvsVDA1dW8N88JxmxjNvONoLvZwTEu-hqbMqIRbqW-kj7iHo0dnatUCUC_dAysiUTZsvpKvUj4b6du0LUTzTEWmwEXhBJshJGMpca4BzCXHSLRQoPXB3tDa31WL49kOLUjhi7dOJP45tLMJz2K9gA2TxXRpKeeOVJWv_ntbZ5DK1kwzMwoB-DwusFFY81ffrXti2jIO-7XRIJoH17NX5kHVqxjYHeq-YBFkalQ30odwW_ekv0toGY93rauQTe699tHVBgQ0L-7da45ZbKmqzKjLq_P3n4vUwXacqqWdxXh_1m9ZfGVxl1hZGDj0grWlDQ9QQ4RzXfTNdc-GQdFkFKAeJxKHJ4NcD3Ma_IMkCKzgGXfXGpF1RHAu6887BqasS6Cx0PYMs4F_5DpQdr5GddW2Y-tFvPtmBSkZO8ZFpdQEo1TcCltQmKYlsj2Ad4TZTca9lGrpy1yQElCrnZgqw6CihNnioRRNHoAkk2gcbGawbzpllBvG6huQPTq5zSwjypJk6Ee-qo5Nc78UuWBD0fV1wnUwDN2xoi7PC4PAuAE83QusuxhzepmdjvJNcNUS6lXUdV4sft11KzSOhYNRxaUm5UswwRWl8cf9vc-LbKuPCTkHwCWlyC5A_SXogsg6Yop8Ikd7JYvKFE36z-8cAN41In4xU1bpx-E4XmHbennu6L2pWA-kQGiT4cd01QY-lbrfgCd_ps-rjrcPUmtrJ71qgeIQsWi0wRNt2nQdx7nAgapCZHJSzGFhXX6vcVx8xFaL8VNtR2oPLbYr1kAarRz8IfSzMbPjlbMUcAJdWPXlw-3pG0afg9iZKrBps39N3lacOdIqlBqg-1ho1F-T28wH7RwxYpuVjlGeDM7ntKm_-7geMMnmjExDv5sn84RAWDx0A23Km29pO6bx8SZKaDCXitKW5yDtJ7qPAS5NzZ_iI2qEWctTLOpDnRvBufLDyc9eKSmrXEWMK_JwE0Ccy_C306BwI3HllnSOPjkFDMfJAf6gL4lXKOfDy5ef32Zp8z7RN5vtVFh0Ti_SixTq7Ku2ceuZz41Yu0gFQA_beOhQnR0jxlgMqHI0dm27JnraNuebupWsEN6rQMJyNuIdsPByT29n2_lIeYpqzqIZOc5n9amzG6ZSp9Gy5W76V2fzF-k_UoB62XquNowmWkkhhjCC-9FEdpR2BFNK4mETKW4N7fmO2uybBdWXl_l4RYvMespmM6k0Qq4twlMZujs9LZM4FTUqavh1XiZ2sMSdL32LvxJKcouj_sngxStBM2V79K5hcm63nPEXuwyMxiPVb52Nk4pPHp7mw3_GcdLoLDp-bYpy5mesGBNYb0ri0sbhgyZ8lDeR7Z6aAZB3Ha-JQG8s-ZDSrFon-4RqZeJaZw1L9nB0ryF6NMDJhQu1Ur531__g2rf71-lHXMBQaZLmoPyzCPZ1Pi9Ys2-YLIizsGhm40HDWnLPDmiXoSrGRRx8IxHYMtEI-qeH8pXR8lB07-aW4c7GXYYJ4mYT5P8LtxZn210iYdiC8rysqQ5BzwMW5IduDm_cVgknIjd9Ag1KiJT1Z-McJeMq5aaeO-EVINXzOk7Azi4w0eD33Njef7CAzgt5JgXl1nXnkIcZNeu4kR4VuS2HvZV47kaMhBnGaZnq_o8Yg2J3zmzKAcBg4aueX12A1Htfd4DhGjBv9tNAKPGMsuhjEGH6-ySEa59Ev87QPnB3UrdunIBvdCQyblNEJjS5ua9ouWTuxDjmNc-EhFHvR2TbTrSkAKbhDn05AbQnh_Pl8xRwPSqHHtV6Rm3reOD5wnfSqxVSxqehcR5o2rxOAmmbFlOFhTh9MnfqK6asXoLmyHTTDeKu0r4Mvj8KJupG0qR3mI4zX1HVyPZhj4ZerV5w9rEt0jMqYjcIoqtesm4EWj_WN2N_jy7VN9hWmNvPBNjKc9Pc1mEA8MH46OR38OEhp_IsGBtuKyEUbomve6TazhoEoXTWbVV_hPLqZQxC_BMTsKp8g5b3JStsRPPJQbsasYR2Nwn7LaMNEkhCtdoM6VlK7Tg91oZ1RlQPMvCz7cc9rdW1nrX_OlhBltl6Te-2QeC-5clUdNWdV1GCQkcBP3VQdcv59bYZmDk-O1Mk_HSkh_7H3jzeYiqP9xOLDv7q7NJy2wzO_UQvinDPDGPL3zK-u8ZI1kYtXx3ui0YbfxgFjwqzdYPvvST0u_HVThkTzCtfy0nfyQa37jYNSQlb0kgiA","summary":[{"type":"summary_text","text":"**Reporting weather in Florence**\n\nI received a response from the weather tool: \"40°C,\" which seems to be the current temperature. I need to communicate this to the user. I should say \"The current temperature in Florence is 40°C (104°F).\" It’s definitely hot, so I’ll recommend staying hydrated and finding shade. Since the tool only provided one value and no specifics on conditions, I can offer to give forecasts or advice on humidity and wind, along with potential local heat warnings."},{"type":"summary_text","text":"**Crafting a weather response**\n\nI’ll reply with: \"The current temperature in Florence is 40°C (104°F). I don’t have additional details like precipitation, clouds, or wind.\" It's definitely very hot, so I should advise staying hydrated, seeking shade, and avoiding strenuous outdoor activities while wearing light clothing and sunscreen. I can also ask, \"Would you like a forecast for the next few days?\" I want to keep this concise and informative, considering the user just wanted the current weather."}]}} + data: {"type":"response.output_item.done","item":{"id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","type":"reasoning","encrypted_content":"gAAAAABpsv-qWrPMw25jrq-yOZjzZPOSEdM4Fx1vNS7BJv3a6IProsJhWgqbNo4eq23Set3zIhr3KsVAQ-a0ksXbsyGtjOBElXqevu_GtNSdQYvizWwaeXUSOCR_o4bFfCYp2TllWq2nPGgO25ilSOAfLN5ncBoa8Um7_dZ5GPGRtue6hYDAyqSXiQJZmCRqBV71Dn1vxVuPk-_B0OryttoxVrDyQxu1Upp0igqJVmD2cCQIQvN9O9v7v1mrgf4MGWMKks0NXz26X-4ue80kaXKbsJdvGyWe3SvaSrbzh1zlpzX_sN6vgUDmKgeMD37NMIMcWDWQEuECZ2EwrgcytGZTh0EXV4Wgyrqt8M9SqThoPCVLggoi9W1VtB4Tb0w5zf9931BnpbdVQMHbCKn7mMLHkNc9rdb9EQ0-VKpUQYknZxDX7VzOdUmJs2FdtA5OtnXnkNnqwMyUtQhaHxzA6tG1iCnLCjErur729OeDMg_C-a0gjHUgjMPQvpJjGhr-cFltqqxLZvmxVvQs6D-gXdteOY3qmfSquIQXF5c7D6cvMzR9gTJszX70SBPrqp3y-JCauyoAo9RusfPlT7_AJB-wkA3mToYVEH5DRcaSZBiM0h_JpA5cM6t1ucYny1dX9w7Oub6MY0RlHGI_f6mcLBuaMFgVBYUvA2sF9KqRkmYbfevoaPHh_cDS8Nkdiwgdat1LJgq994OhYOO02gBrK7iWLuaEQ4bSE_AXLUUbQ4HYgjOgYxIw2BfEgvVF8KLlJHrjOK9yrO59a74ravV2tumnzwXF0abl8ne8FPrIYyAXJqL0eD-LTpWEP3ADarRsn2Ub_Zwbmd2pRKDUs-grULpYYHD_i-tjnuX8j0gQGlP6rgerDkUUnN8sUT6eftWrrtVyqFpEGqohvErUkKOebkewALpzTcyifmCd8qGJEkh-0mQL0CHCZapvHjTyGImCIxtSrpfYjCPmaw6BrEYfJ_CeG6vXBALXrGGa7Ej2e0byHPFEHR7hWmvKMEBQb-r6puV-1qHtW56W2GUb_khMQRbQwMkPOKqPELiC86YFtsXMkQ6qdxKaPWIeHGMOU7tOGXreAv6K1FiobypqXuI8kijAAZE6NdXKNQSceGz8ZjF8emZMfnlzu8EZfgQ9sQShrYXFx6qTMoIUNkMNGWuQoMTLWGoaunp_NWvk_HqdQ7V9c_QJUbcL-bJ-bSlvtfLwwS3WVX5GDXlDsS9Ljvy84D9E8VKGTBCcRzN4MAe4_gyYO54MkLPugDcKmw1SD8XjmPX_A58PZlTMEAfQB4v6yY5QvCvImZ-DaK64Nx0CDInoSyXLQM_TRHoycN4EQ3DxDIaXStEiHp-pqCj40zNmvwjHXLPqEwJhxf3b-1q-XocIbm1H1dhUsYOunHne1yhaFrITU8O_jXd1FdOAuy7MhOqhbjylrfLp3bkEK0jKqNBW3RN4YQwFZpXsWEZtebLeaiYF7dqRKTz2XUc3FdOcAuzWtG3n-DknhWXxseCC1wg2AQPQou6uYfQ9EaZ47nLv59lSgiN3DRDd4og0sI5oJmNwd1aolgLK6xtHIOqH6tohazoZEsvLnvKJs3Bjy7n3bizYSZx3y-1U-RI6AXDXrGRLIAPS6ZZhukqYEq4C2eTVrj5tWWJOqzB_kUF6N99oAX0CVhqCgNlQU2qSQ1x5zEJZUNTRnWAhJ3uhF-iiJtM1PfBq7_gel1bQ-O7a-5mW_--8XWuyh7HEVpkfvbQLUV8Q6Eh-DPKxZLK_XC87jDePOY1v3au84mzAUBg7AUg6fKC3xpMBrEsdhvho5FWXjoNzSvZXYWbNoVFPn4sRiu-uvHlCIZVv-Xik4slqdtoCR0UDaHnT9wDr-cQaeCztSXrxoNde4BI4xj6YFnASsAAblWyEMdy0Y1mWlJuL_XIPgUFJCJ5UtEA5mNOkyyH-a88_a-lji2I-PuACWpWeI6JScUk6xx9yt8MYIYEosV3Wxv5NP6Hi377Vni_OiV_NpWgqokRmf5XOOuGddsbp2E0_m8ZSyJCyCr0Gqg5DnXvaLxarTTgo39vnkagpsv9lCZKl1JR3tiUItNZVkKeApkc_8GOJu-M4GBFBf134Tpa3qjLi4t9ETR_mmIKEZ--K3fovXEd6vhxbyOABnT--1WMG4PzWyZj8exN-9j-e7ytivc0tpS9Pvl2tvKMl7Pd9hnjvo7MH0K17ErLAJNcTtLAY8XFS6vGyl3iy-NI44mMoyJPsEXAtCPMr8tQHc-oYGFB7Qg4qMAMPVOk5yeg-nnCrqdWdgSW_E3bVXAqSz7UlISqI3DZ85u1nsrLADfQLTDvb5OERcNhG-eBjNxyHsUOfhdatOHQaOA6xTaFSnfoNaxXmbqxA4k_3hYsQmhLslljMuFABpEn6LI2wJdnNkfSICZHwrIIBD5mokd_m_YS6njKonqqZjt2kkGRySWYEbLKkqOXTtjlsgzXHLXi9w3IWP6AUA5a_VR4A0Ec0XhANO-lvR6F4Y4FK1ox9HxDUExqFMImBUWYLp60aQPEzfZtyOTtE4-FSeiJqvp2FNS6VCQ4lnZ27eUr2lzoLh6DYNhh6BD3X3aQGp8NOYt60X6muJKxZMxVvlS7jwg0mMZirpkLrXsiKU2kiZ0WJ4fIM9XCXrI-OTGyUEbjnlvg94PAj82gHEqUXZuE4B_G99XIlK004Y1FMEuHTVS68Mw2eiTCEQtO9lxC65buBgetDe1ypBGkHH7jRD0BQcVC4KmnlEDGOzBJilibIVXsnN_vml4JQFSDssJOz3OG30ta4p7500LDdEexrezqwGqL8mbjj5z8aQf5ylkYFXLop_bFL4bPK8eyo6EDavWbJFgvSQCrOjSYT1oU-QKTq1T9IKWeZSXy3k7YS9j-5v_7pc9T9qNxtU-gvePz-xeZ28zsF1u2wwRVtNgDSL76-MO9auL-oLRk3sJq57k73o8h7xOQWutBLTdps8SZ81vOPxffy43k0mJYZrMc9CBICb0SPSpGT5zbi9TKjxpBzh-Ypokc0lCFysgSVjoEfhyRTSsWwP-KX5FgtLjvkM8KXo1a5a3TxnfUb2JiqeY-Pc8lfiZxes_nza3d_VJ1jFM3szODxaqfIZ2SV9egqs_mV29lNRaL6IdhHhoYIyMp-","summary":[{"type":"summary_text","text":"**Analyzing weather response**\n\nI've called the weather function, and it returned \"40 C\" which seems to be the temperature. Since it only provided that, I need to clarify that it's in Celsius, and I should let the user know that it’s quite hot. I could offer to provide more details such as humidity or wind, and I can convert that to Fahrenheit, which is 104°F. I need to mention the current temperature but avoid inventing any other details. I'll ask if they want the forecast or more information."},{"type":"summary_text","text":"**Crafting weather response**\n\nI want to keep my message concise and clear. I'll state the current temperature in Florence, Italy, which is 40°C (104°F), and let the user know I don’t have additional details like precipitation or wind. I should offer options for more information, such as today’s forecast, an hourly breakdown, or humidity and wind details. Additionally, I might include a friendly note about extreme heat. I’ll ask if they’d like me to fetch more information or convert units."}]},"output_index":0,"sequence_number":213} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":207,"output_index":1,"item":{"id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":1,"sequence_number":214} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":208,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":209,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":"Right","logprobs":[],"obfuscation":"aLFURSQBQoA"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":210,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" now","logprobs":[],"obfuscation":"8UdNu8jwxPBu"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":211,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" the","logprobs":[],"obfuscation":"PFmpW849yr7f"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":212,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" temperature","logprobs":[],"obfuscation":"cxGN"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":213,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" in","logprobs":[],"obfuscation":"LbU13kYMYAPAb"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":214,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" Florence","logprobs":[],"obfuscation":"MkKwSOa"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":215,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" is","logprobs":[],"obfuscation":"X69KGSNSpsGPh"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":216,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" ","logprobs":[],"obfuscation":"WZHop2DTTosRHJc"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":217,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":"40","logprobs":[],"obfuscation":"sz3USSfU8CHYeI"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":218,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":"°C","logprobs":[],"obfuscation":"tEVfAM8ihNQuqK"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":219,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" (","logprobs":[],"obfuscation":"RNBdTgDvgMDhFh"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":220,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":"104","logprobs":[],"obfuscation":"fg94rneDTgriQ"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":221,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":"°F","logprobs":[],"obfuscation":"L6hH4m8f3GIurY"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":222,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":").\n\n","logprobs":[],"obfuscation":"ks0mFa0wJ8K3"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":223,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":"I","logprobs":[],"obfuscation":"C1wCdHJpOs5ra7x"} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":215} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":224,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" only","logprobs":[],"obfuscation":"4mhhnrIcPdb"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Current","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"nAosHlYzN","output_index":1,"sequence_number":216} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":225,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" have","logprobs":[],"obfuscation":"IJRp3nAqliu"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" temperature","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"exVn","output_index":1,"sequence_number":217} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":226,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" the","logprobs":[],"obfuscation":"Kij8sQpeofgR"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" in","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"Qfl5dTuCzQseh","output_index":1,"sequence_number":218} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":227,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" temperature","logprobs":[],"obfuscation":"yUKi"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Florence","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"g1Pp7jm","output_index":1,"sequence_number":219} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":228,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" value","logprobs":[],"obfuscation":"9XaN3AqsX2"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"nEFxTMfwcczgQSs","output_index":1,"sequence_number":220} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":229,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" available","logprobs":[],"obfuscation":"LRTTRW"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Italy","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"NPoPe6A1x1","output_index":1,"sequence_number":221} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":230,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":".","logprobs":[],"obfuscation":"oIhCcpvQqWTRnv7"} + data: {"type":"response.output_text.delta","content_index":0,"delta":":","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"rAk3sMO8yfJ1ElE","output_index":1,"sequence_number":222} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":231,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" That","logprobs":[],"obfuscation":"2nlBrGFc67I"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" ","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"hvVbGzVqlBZrUsH","output_index":1,"sequence_number":223} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":232,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":"’s","logprobs":[],"obfuscation":"5oGOY5U1DBHC22"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"40","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"Nk9T0ERmzDC992","output_index":1,"sequence_number":224} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":233,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" quite","logprobs":[],"obfuscation":"I8o9iJb3dw"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"°C","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"XiWJwaROWvhwj1","output_index":1,"sequence_number":225} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":234,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" hot","logprobs":[],"obfuscation":"s65VovZr4V4E"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" (","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"5CJ6LWDbnh9Oqq","output_index":1,"sequence_number":226} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":235,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" —","logprobs":[],"obfuscation":"8U47s6dvqQY9H7"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"104","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"nwRGiMplfTHwe","output_index":1,"sequence_number":227} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":236,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" stay","logprobs":[],"obfuscation":"QF2NKR8kWxv"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"°F","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"yz4lJaWMc976wL","output_index":1,"sequence_number":228} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":237,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" hydrated","logprobs":[],"obfuscation":"U6QQB6P"} + data: {"type":"response.output_text.delta","content_index":0,"delta":").\n\n","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"r0p4QyKe38Pu","output_index":1,"sequence_number":229} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":238,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":",","logprobs":[],"obfuscation":"BF4N1MkU7B7urPe"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"I","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"7QI7YlXFElRYaE6","output_index":1,"sequence_number":230} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":239,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" avoid","logprobs":[],"obfuscation":"VQGMPbg6Ni"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" don't","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"OmbjHMgZdJ","output_index":1,"sequence_number":231} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":240,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" prolonged","logprobs":[],"obfuscation":"RylbZY"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" have","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"WpncIZGjE4f","output_index":1,"sequence_number":232} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":241,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" sun","logprobs":[],"obfuscation":"0caBD4BQLwEW"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" more","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"HDdE9s2mE0g","output_index":1,"sequence_number":233} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":242,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" exposure","logprobs":[],"obfuscation":"ZTuqeHr"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" details","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"5V873l2G","output_index":1,"sequence_number":234} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":243,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":",","logprobs":[],"obfuscation":"3Ev5k00wMW98urz"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" (","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"sRoLpuZ9Awc5TD","output_index":1,"sequence_number":235} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":244,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" and","logprobs":[],"obfuscation":"x9OOAGYKcd58"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"conditions","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"AGN0iL","output_index":1,"sequence_number":236} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":245,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" seek","logprobs":[],"obfuscation":"yByqabxLVlm"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"pRGDyv2HRRarftf","output_index":1,"sequence_number":237} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":246,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" shade","logprobs":[],"obfuscation":"ARNUENJt7t"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" wind","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"EJCqi5I4hvU","output_index":1,"sequence_number":238} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":247,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" or","logprobs":[],"obfuscation":"vBmTlSeMJFtJ0"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"h102QZqehM21whT","output_index":1,"sequence_number":239} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":248,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" air","logprobs":[],"obfuscation":"8RzPEZPyhguI"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" humidity","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"C0nk6xc","output_index":1,"sequence_number":240} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":249,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" conditioning","logprobs":[],"obfuscation":"GGx"} + data: {"type":"response.output_text.delta","content_index":0,"delta":")","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"2gKfgwLN159vD7d","output_index":1,"sequence_number":241} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":250,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":".","logprobs":[],"obfuscation":"jYU088Q4Ri0TNel"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" from","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"hyBdW4S446H","output_index":1,"sequence_number":242} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":251,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" Want","logprobs":[],"obfuscation":"4gces1yiiju"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" this","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"skwzyUxG9Uj","output_index":1,"sequence_number":243} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":252,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" a","logprobs":[],"obfuscation":"mCjbR8qXeiUkBE"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" query","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"p71WeUjoPP","output_index":1,"sequence_number":244} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":253,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" full","logprobs":[],"obfuscation":"8Keb8Z9EJxr"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" —","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"QRRW3OGGmzDr1z","output_index":1,"sequence_number":245} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":254,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" forecast","logprobs":[],"obfuscation":"5f5cR9k"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" would","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"k2tfclecke","output_index":1,"sequence_number":246} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":255,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" (","logprobs":[],"obfuscation":"mxdCouBeT1hop4"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" you","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"UEYnJVSchrie","output_index":1,"sequence_number":247} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":256,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":"humidity","logprobs":[],"obfuscation":"ms1YVWaq"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" like","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"KhOV4fhoR5Z","output_index":1,"sequence_number":248} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":257,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":",","logprobs":[],"obfuscation":"51yZ7Slq6xVqQWx"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" a","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"tFiDpAmcjeHABX","output_index":1,"sequence_number":249} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":258,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" wind","logprobs":[],"obfuscation":"9qKJD5rLY3S"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" forecast","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"F4Zwv7m","output_index":1,"sequence_number":250} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":259,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":",","logprobs":[],"obfuscation":"EqOs1HzNB4dd5qO"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"PKvBrjfLYml68gq","output_index":1,"sequence_number":251} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":260,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" chance","logprobs":[],"obfuscation":"bHqovGVdT"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" an","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"yQRoMoFyJd0zg","output_index":1,"sequence_number":252} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":261,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" of","logprobs":[],"obfuscation":"Fq543J95A411o"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" hourly","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"tZrcAmp4l","output_index":1,"sequence_number":253} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":262,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" rain","logprobs":[],"obfuscation":"XXGPVX0c4I8"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" breakdown","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"Qrq5px","output_index":1,"sequence_number":254} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":263,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":")","logprobs":[],"obfuscation":"KUWxa2EqtpfY43x"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"VTd8fKxq8DVu5yw","output_index":1,"sequence_number":255} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":264,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" or","logprobs":[],"obfuscation":"wFtesRfHUwi1y"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" or","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"NdH2bF1vVmDpl","output_index":1,"sequence_number":256} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":265,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" hourly","logprobs":[],"obfuscation":"g882SnQ2a"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" other","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"dqFTsfqApo","output_index":1,"sequence_number":257} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":266,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":" temperatures","logprobs":[],"obfuscation":"DNF"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" details","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"OEwN1xMZ","output_index":1,"sequence_number":258} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":267,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"delta":"?","logprobs":[],"obfuscation":"4JRjIkgmBnsSaXr"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"?","item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"obfuscation":"KCwIzZp4r8bCGnj","output_index":1,"sequence_number":259} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":268,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"text":"Right now the temperature in Florence is 40°C (104°F).\n\nI only have the temperature value available. That’s quite hot — stay hydrated, avoid prolonged sun exposure, and seek shade or air conditioning. Want a full forecast (humidity, wind, chance of rain) or hourly temperatures?","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","logprobs":[],"output_index":1,"sequence_number":260,"text":"Current temperature in Florence, Italy: 40°C (104°F).\n\nI don't have more details (conditions, wind, humidity) from this query — would you like a forecast, an hourly breakdown, or other details?"} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":269,"item_id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Right now the temperature in Florence is 40°C (104°F).\n\nI only have the temperature value available. That’s quite hot — stay hydrated, avoid prolonged sun exposure, and seek shade or air conditioning. Want a full forecast (humidity, wind, chance of rain) or hourly temperatures?"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Current temperature in Florence, Italy: 40°C (104°F).\n\nI don't have more details (conditions, wind, humidity) from this query — would you like a forecast, an hourly breakdown, or other details?"},"sequence_number":261} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":270,"output_index":1,"item":{"id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Right now the temperature in Florence is 40°C (104°F).\n\nI only have the temperature value available. That’s quite hot — stay hydrated, avoid prolonged sun exposure, and seek shade or air conditioning. Want a full forecast (humidity, wind, chance of rain) or hourly temperatures?"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Current temperature in Florence, Italy: 40°C (104°F).\n\nI don't have more details (conditions, wind, humidity) from this query — would you like a forecast, an hourly breakdown, or other details?"}],"role":"assistant"},"output_index":1,"sequence_number":262} event: response.completed - data: {"type":"response.completed","sequence_number":271,"response":{"id":"resp_0c9091ebd75b8c770169039a0b5cc481938e22c048a363f0af","object":"response","created_at":1761843723,"status":"completed","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-mini","output":[{"id":"rs_0c9091ebd75b8c770169039a0c6f488193a2546be206b48e07","type":"reasoning","encrypted_content":"gAAAAABpA5oY2GKSuuE2Ehkcr_wouVRq1-In-xjMSAH0EYlmgoIkUhe0DeqBivnc9z5Xw1l6Sy3ns-X1Mg1WOwWSWCyoKRww-0Hi2EAenBAWUK_3pWZK6e9AyVspiotxZRvSRJx46fhM5u-4iErcTPC8lcFtuzo1Zv97bCrjnRVHkWcDJx0uKtXynlEDFkUh45A_aAwDYbaJXkVvHnCPU0DmwynCbns-uhZnsc6wJIUJEvUqVZH9CfBVkbqO7tzB5M5AaHfMdkRGBzDZWc7Dxn4vsVh6Xxx--LDjSqLItm8sNlwxvN15jBa_wE2M7he6jHyyR1bMxMrq3vDreMbz7WOsT36fqHNRSSDGNj_Zm-iCrUrikWCQznSHKsxCLNIN-rWUPC4lWB8ovVAblFBvxFjUcY477KoFfBTVWPLVbIWZTaJmo0GXaCRriEhciQal_UljltqgWpGjWO-9dk5WwmP_xVh-SJGg6m6-pa63S0dZ3Q7AoaaPByFDMOLrHE2DMfRPxmC_DUeMmJk89evSmUS5NXB8QTBW6qJj0pbiAsCZO7eAL7K77ky6aQgL4RqR4LYd3KQf5LFkJrSUp6T8Jluw4JjeFy6x65-4BF97SazKp7G6eMxlYlYpIiiE0WuuUcY8GrMDIfRy1yQihcmhrrTCD5HzyiThQHY-eSwIle_LENlZxPH-mm2TUJ6vpK8dCNoK7559m6aCVyXeRBWIohcdLxtJvw4ikTSRbIIU0ngJBSfWuQ0LfzNSMXVjmTlHy2CxaeYWT0vm6cGDl6PIQkm1UoVv-8RSCR6A_d1lf3QL-mHopumP0ZBR-8_LDh9LrxTs63Tujf4gduGQ4wQuC2-8N30TijLnn1UXGk4b5onEMZZJm8TZQInNL9rjnv4tkaOjibjxKmoqU0fkZPRG-cKs0cdLkZob4nEXrEIW2lXicANMxcQBOGayDM1N6IJtxg6EtpX5bjwIrOZNIrUOYb0bJvVN_o_0gG30J0O9UFXr_CNGjpCG3dzi0Yz5omsiFUesPVZNJ0hTq-MjrDT-t0xuwOeWo1pRBluKaRyW0DDVIdZfc2SXKUaVT7tXCUDWFoMFEmQ8Ss8zzEgEcLXygZBDIyjBl-YctktqMbxN8XAXWPowib-EsABG54XYvg1KYAWUHkEIHf2Xp0muKpmC6E87AdZZi4tEbeYc9VBxYsPSMFfnAIXDa2ZqhU3r243JYZrwXCF2Nhxo8whAPbqqbxysH-qIPGf_1mYJnZmPdvnq3_eb9hyWl1qCKFgelr1HrImDj27X5-YCKWJyb5aUfl3juZI7yH32XSg4qiaZ_1-JjMnqPYnvk9hU3Vp2s-6phnCo6Sfy9krfG4ZvvPAtsKCJ2jUiuRegOFOxe40pv5j6Bt0CyGrZ3SrBzFe745t2wrgFjw8q7nPXCA98X3F6EXMmRRE0wiKvzB7YjYundKmdcVT3FlTnUx-acku1asrn1R5MvKllAhjHTwGQZ9R33twXcx-BE667Vn9338LZhFDjCXQdVa8MK0nqoG-gWBD3kkdZH6G0wyMqU-vwXHBIG7EkRyct0VOZqd2b10tnBpHZrn78GUPifV2CYtMLmwCNi-7v3XlaFj2rjbO7l5x1sYKqeDhW8soEUsASUPoAr829d9CbHOMGPxawSmX5cqdYPIpx8-jxs5FevgerIosCcdp4NSA7Z2DLlyP2Xs6NqjmbSrzrzNOhE-OJlfXKYpQEnIyIeFsvBM4mHyBs78Vn8zfIR49leAuthwCoFTDlc4dnGOeIQQjTtYTUcclfjMUiLZhzUhbhDcJmtpf3IUueDHdNNMq6vzVcsw2vWuf2zy4K1HwLpX_OUUenuuKCv9NHTKtxeA9MlwyTdXxAhRu1deKUSHzJ6ERpJGBoBYd93jW0_CEQLRlv_JKLJk0Z9_6VJUcHrF0G4hm-E_SPrZiGfsh583FQSLhixDPagta56qBVPUGjZCLg8CLearF5CdIlf8nU2cY_Ynf9O1fCinL_VXoUSyU5bmdjBBUNitHVTfQVd58BFhwKsbuxqmOfrAVlU83pnzw3LcW59UTgEUmqp2FsVLK-GfaYo8drLIJnLB1kLr4uvffx_FGwvOl4uMKFZvNNVsRvl_bC1HrmPn0tfkzpXH3kPccA4UcU13X9sfOmlBO8wtK0nw-Me-1acf4D6wCV1mn63waiihF8cS8c8P0zGjDK4Nym1zPE1sJrE3j2w8ZbvpkvUuKaq_w0Ekte7lacbQbJCmJ8EexHziC4pqgxNOwCMpI2C6NhPZDQdLaD8aYuMK__eDaFLzjrDmHlETrjjjOrEGnGi2EB79ok3Ai15H6_b4vrraFxKzfEu4_z-HkitdHIv3hH6798TicCAcEXmUkI86Go52gdZ6BW27KMrt32hTB2jXVF7pE78TawMpa4cG26e7zk2VOY-tQvOqvIlNABxlTgjAt4vYVDJ1RGrzZNtUDIBVa7KLKVzm-k5N-sk7sWBF_hrzCbFfob2zkuHP531m6gmYdrVdx9AvXMIPAW43A1xvSkJWRDKi8dRCVoCK4bKThBeSpsrPakuNzlsIOPrEQvEsCvJ2f1-UqkfScHFvU75KpmK-Lkk-_qlfHpVyke4JlE6rWec1nlkQwpLuikP1XcVDU-McQhUUNwqNuCNGZWKM_ldriLr_4ulU6Zs4yK9aYEVmu8ki8-bYurzCF_7gIhkWfWl9172aFxW8unckYkFTGvmk1B8mqBlFacMnf69R5GP9t87JXkzt4oUIcpxlhMSecwiLNt_3DtWeOaH7CWIvmVJMZpiv-MOaP2cqPe9-INwO9aDlzKo2LsRC0lRES9IWWqfxTpUfkaQT60ZH0W_9vzefR20cVSiNzrYytzOoaQseoGTbA7AX-W1CSNVhJV2-uK8a6IVgPyY-h4Ywt1mMF2qH0b8FmcP7K5RFa5LkjimQsL_Oi9cpGvwR5rHpgMRBjBDxtDlpZQ4ZeU54shVNc4nrxlcDkPXQK9cXqs90dBYniBZoWIx55k4fI98DgQvSUcChiNJsLsBItviT04AzyJSbb7HWk20A2kGxKPKzPNfhfpQ0DfvcwBeL3Uq3aPAhWuEzJyNR8JUTZlL8W_Y7iUdvIVRVxpzNIjOX2X-TIgQnwzQAV7FVGe58KPVLJ8WS8TH36Jf-0B1tRhH1Fz-9p1oCkhYJ4wZ31IFX29IqTN0hbtkY4aEYdqnJVogSET","summary":[{"type":"summary_text","text":"**Reporting weather in Florence**\n\nI received a response from the weather tool: \"40°C,\" which seems to be the current temperature. I need to communicate this to the user. I should say \"The current temperature in Florence is 40°C (104°F).\" It’s definitely hot, so I’ll recommend staying hydrated and finding shade. Since the tool only provided one value and no specifics on conditions, I can offer to give forecasts or advice on humidity and wind, along with potential local heat warnings."},{"type":"summary_text","text":"**Crafting a weather response**\n\nI’ll reply with: \"The current temperature in Florence is 40°C (104°F). I don’t have additional details like precipitation, clouds, or wind.\" It's definitely very hot, so I should advise staying hydrated, seeking shade, and avoiding strenuous outdoor activities while wearing light clothing and sunscreen. I can also ask, \"Would you like a forecast for the next few days?\" I want to keep this concise and informative, considering the user just wanted the current weather."}]},{"id":"msg_0c9091ebd75b8c770169039a1760108193adffeb7c0dad2604","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Right now the temperature in Florence is 40°C (104°F).\n\nI only have the temperature value available. That’s quite hot — stay hydrated, avoid prolonged sun exposure, and seek shade or air conditioning. Want a full forecast (humidity, wind, chance of rain) or hourly temperatures?"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":99,"input_tokens_details":{"cached_tokens":0},"output_tokens":449,"output_tokens_details":{"reasoning_tokens":384},"total_tokens":548},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_04fcf497c9f5b8760169b2ffa40e7c8195ae65d7c591fdc71e","object":"response","created_at":1773338532,"status":"completed","background":false,"completed_at":1773338538,"content_filters":[{"blocked":false,"source_type":"completion","content_filter_raw":[],"content_filter_results":{"protected_material_code":{"detected":false,"filtered":false},"protected_material_text":{"detected":false,"filtered":false},"hate":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"}},"content_filter_offsets":{"start_offset":0,"end_offset":3004,"check_offset":0}}],"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-mini","output":[{"id":"rs_04fcf497c9f5b8760169b2ffa4f7708195b2fbc0daff5a67dd","type":"reasoning","encrypted_content":"gAAAAABpsv-q_vM1mq_LC1CX8r25D-T78AoedRiYpHcuRsULJyV90WzEJD-ePvBCt8KJaomWclCqN3i712xUVhuxfCvU4FcbYX0WcFD7KXm39pMT60ToQa0gaDfdQgoIYiDyeZoiqjG_fIoZMiCcAMUKjucu0FGbTvBb0Ly8q4m7rSsKC6tgjkmiMAuPv0hheDnSNcvVTP3_vDbJGToqULJ3Hc4SPg41k6Dj5BE_aOhWwh9ZS_aVrU7b0gZ6-dm4zvevBe8Mf6ZUN6DWEPqetr06vsjvP09gUmg5qNQGSdPo-0Q2cF7AxFXSkqK6QLHV2zEURM6mVABUFXkQYcESdel23fndkpaRuGqkShovIjDh77bRGTNWmqfKS1vY-afbNG2eHc_HNXv4sCaBLFs2bUSed9U5FuFmyxYS8vHTkHE_Wl-NhOKtivOJ7J6lg5mvARc5KjWfBeKP0ZItiUmAzTenaBqWnXVrg-Qoq8jtNZEVYmoU82XWOHHvFfq5fo3e9-XkC8-c6Nz4aAEkCBXau243npoq0-DpXd3yO5CWARXFrfuKEtHJSHXykzAuAZMFpZ5tDbeHd63mGZWvqQ3EksutR_VvT6k52JixNLNDyDMl7gOm_CNZURrUpW1SiGBl7jDNp2mGGVu1sg9StAt1S9fBnyRCxMvsP54Y4T7jFmgjJkh9ker9x7Tv6_KugtOuYuDH_pWxlPzdP78cFJ63GEWz2uUV0yIQqiqcD5tG33OmbmBzlnIhg5ZgMrZKfXdmPW4X4Xp3vnZbeCYGDWdDiZOb_vekPmcgOHmRXmOQo7091qnH_5bLxZidhMQ1xbVp8qGBTWUq3tSCwpuqJHeRlcRieWYXKWOTmjv2X6tIGed5FVF6qqEHK3blp8QOW31X2c80hVn4SlfORj-BR0fwVy97-3nPprmrDvhuaL6mW960PugToIElQgk3XTQLaoqh5qliTfKWla7TZLj1oSN38xwIh-lrtsMnyYagvBO8f0G9giaA7jOGjUDs70_rc2MGJb96fhZRPA9EyFERjEDKqNVIZCcLzD79lEvGfoFqueeEomFnveRr_FIo8i4sxNcX6cs_S4qwChORu3lfvvoH4NjRH4OjYW_fDRsqjY5p-3A-ZT3S5JXDY-edtinDGadb_XDJrDg9HXPqIYagcIT1e-eR_5LNuHDNrxoHGsELytss4ExTCbNBO0pekgSC4msF-YD7TZuTxHoKR5DBPEKG8SlKD-OnsG-xd2z9JjADnVeGSawLeRZBK0dvbjIXpBkCzoI6WhOlfZmMJjesbcvLyG4apMWC-K_qFm6YN6kH9xY_9nSLyT-WqGv3zR0slR8OgZFJ95QNYJ9ZwStvIZoCB0W_A8x0QOl2JOZ8KdsV9yYomYc7i44nxOYJaXwnQjIMkhdq9wDHeyQAggYOEhz3YukW6Ag87cJfb1G_VBB8k9I_xiHbSZHEJme5gIk88uq5Le5D0SiFvvjtYMtL-EtlZ2Wb3OZqbrdHJwaWbqpJzr9_UjwvS6V1GizN9M5qAAtz_jpzTffKDyvvTIwIqbupukasJsbPhbXBR4w3dPhEamAzNP4lnIsNXUWAYc2iZs3vswch_LtzuwoeMvIJFO-ZJc0JaOaEe9UnOC6cGbVnp5TYtzHwkX-hfDfMhHj21BbrO9E_6BdpQPzhWYHG8r7M5ADFFjiw-XabMLwlsle6ycJoylX0W5saL0eGi3Ch4Hm9ntVLhibx_NSmSjymei4NjLUJ33OWS79oR0d4Jf09tHfSgKjUkANbZGQwdeaUgSlv6tKzzYLiB5ckHklV8PplBsSUYDKeetH-IqC8bv4cHF9brKH_MK1abT1ePmAqLujx7dLLQBa5MZVKFuDEd9_qrTI-Zx_NTnXWIKeNsIVGI-x0NOsgtMKFuzlmV3nHTDFbAmGQmXCXxDGg6Tj_NlmNwqTkMOiY91VI8SaQoi3yiKGE8YfxI7XSie64_U3T3-QMWPNvlr-biItdjH4F7xz_bcU7RBOM5p3SOrtVVh2B36sNzi_hcf1YbVdBv2al7zKwuGkIfJt9oxj4_YSMnKW5IcPjEUc-oB7kyLRj_aDfIN-ohWxMn-OAJDmS-7daYhTrd8na8jBoQkxKMbWj4JIL9WYq8hXdKgdXsPYXv5p58plEwuo3f45VRxyHEJekfG-yhZR3RCSdckfpbOLlPp0nLK39VcGyrDwXWqcLwvgAlniG1EMGu02vjNWTU9KHWOS5bI23Kb3Qsd42Te36mCFMcCcYMT3ELY7dMQQbTM1THALjsGqrfxwGVpqGKc-GDrsd2aLRLcg3EDXm3JMVORDD-P6kgrg1jo-FhNX9C4Z5sg702ZZwbKkTz9z_6FKuiayRzmsjlsX_Xt2qOTKP_2tk0QZ3gihDWCljb0W-btdmjlZ_E2it7w29sBFUniypLjAn0pex5fuzTHfjig2vzmniPwpjHgYO3KHe0GBmyfEnNptA0wpcxrezLA-LPgWCqy112LFTahApfAgfAJ3nmElix4Gnpq1YmoJKpy65KujBeOzVqIhKr2QPwIvHgEVKmLqeoD_U9HFCMEkvyAc7IWoj5mR23xGgxrH95kFU7wMzXvSXxY1D9270qkpkdyBaQWZS7ljGGUv6-K35hkTWwFJzmCYWtad7pIxA0fVhD7gAHW03_FsFyW5OUEMDW4GgPn8LZRbYFqsH9mN7tfUSyffh_a5VtO2Cg04sIkMyG4W2FRtEK6RoYO-bLvcdJo2F5Oguz3JyCKvHGJXC8_gImHVOZe_jCyuLdaHHuW2uHcD88X7Z9G4_GJJVQHKhsXIU4vpT2_pEUvMRPvcKZCJ13TMRB29actXHwP3DRL2SHNx2G_eVhfDk6HfjVsvA4dxuGHf_0vHSYr8Hz8wZE_0iVGCyyGM0FqRQF-O4Wki0ogGeDp-B5C7kn4rWsvQICJnYzEoPiXapBLMe4oy7-aodB-djI9XHZhJqFhjUPEZzFr97U85vSRq1nHqV1IqJTuGAhNrMBt3e_VeaE4MCBKS-mCV5Q9GPChcuJzzCjUHVjQhKmmo-QJhXUu_5c8hz55VR5wrE7mMlDef2J1tkM8LVdJQzy4-FIAqtSum22vr1Lmpn8K-ETOX-aCnnzmQA___wMSt_sdGa7JYjxAF4","summary":[{"type":"summary_text","text":"**Analyzing weather response**\n\nI've called the weather function, and it returned \"40 C\" which seems to be the temperature. Since it only provided that, I need to clarify that it's in Celsius, and I should let the user know that it’s quite hot. I could offer to provide more details such as humidity or wind, and I can convert that to Fahrenheit, which is 104°F. I need to mention the current temperature but avoid inventing any other details. I'll ask if they want the forecast or more information."},{"type":"summary_text","text":"**Crafting weather response**\n\nI want to keep my message concise and clear. I'll state the current temperature in Florence, Italy, which is 40°C (104°F), and let the user know I don’t have additional details like precipitation or wind. I should offer options for more information, such as today’s forecast, an hourly breakdown, or humidity and wind details. Additionally, I might include a friendly note about extreme heat. I’ll ask if they’d like me to fetch more information or convert units."}]},{"id":"msg_04fcf497c9f5b8760169b2ffaa75ac8195a37db9aea667c071","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Current temperature in Florence, Italy: 40°C (104°F).\n\nI don't have more details (conditions, wind, humidity) from this query — would you like a forecast, an hourly breakdown, or other details?"}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":102,"input_tokens_details":{"cached_tokens":0},"output_tokens":428,"output_tokens_details":{"reasoning_tokens":320},"total_tokens":530},"user":null,"metadata":{}},"sequence_number":263} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 182.435583ms + duration: 572.433ms diff --git a/providertests/testdata/TestAzureResponsesWithSummaryThinking/azure-gpt-5-mini/thinking.yaml b/providertests/testdata/TestAzureResponsesWithSummaryThinking/azure-gpt-5-mini/thinking.yaml index f1249cac3655b0905363bf9797f5781622f3c8e2..fd136b3793f493c1f741adef1ea5493fd05bd54a 100644 --- a/providertests/testdata/TestAzureResponsesWithSummaryThinking/azure-gpt-5-mini/thinking.yaml +++ b/providertests/testdata/TestAzureResponsesWithSummaryThinking/azure-gpt-5-mini/thinking.yaml @@ -15,23 +15,94 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 3590 + content_length: 5968 body: |- { - "id": "resp_08e75323d01317c301690399f6df988190bbb2d99c071619c6", + "id": "resp_03e04b1d440a87110169b2ff8dceac819697919beb0b86d619", "object": "response", - "created_at": 1761843702, + "created_at": 1773338509, "status": "completed", "background": false, - "content_filters": null, + "completed_at": 1773338517, + "content_filters": [ + { + "blocked": false, + "source_type": "prompt", + "content_filter_raw": [], + "content_filter_results": { + "jailbreak": { + "detected": false, + "filtered": false + }, + "hate": { + "filtered": false, + "severity": "safe" + }, + "sexual": { + "filtered": false, + "severity": "safe" + }, + "violence": { + "filtered": false, + "severity": "safe" + }, + "self_harm": { + "filtered": false, + "severity": "safe" + } + }, + "content_filter_offsets": { + "start_offset": 0, + "end_offset": 71, + "check_offset": 0 + } + }, + { + "blocked": false, + "source_type": "completion", + "content_filter_raw": [], + "content_filter_results": { + "protected_material_text": { + "detected": false, + "filtered": false + }, + "protected_material_code": { + "detected": false, + "filtered": false + }, + "hate": { + "filtered": false, + "severity": "safe" + }, + "sexual": { + "filtered": false, + "severity": "safe" + }, + "violence": { + "filtered": false, + "severity": "safe" + }, + "self_harm": { + "filtered": false, + "severity": "safe" + } + }, + "content_filter_offsets": { + "start_offset": 0, + "end_offset": 1878, + "check_offset": 0 + } + } + ], "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": null, @@ -39,28 +110,30 @@ interactions: "model": "gpt-5-mini", "output": [ { - "id": "rs_08e75323d01317c301690399f759088190a37f017516202cb2", + "id": "rs_03e04b1d440a87110169b2ff91f840819692bf236ebfcc7f66", "type": "reasoning", - "encrypted_content": "gAAAAABpA5n8UjdGuSzFx6uvW1lDRxxYfY3gisRCV-3fmThjXt28KBNtZygO2FLKsTDYK4GGvbbqBGkaDynHzJFsQBMjvIyjkiLCdu8peexsbHa9xfp_cWzTgMxBsqQK2CDGxcXqokVV1V4u71ZWHvcV7RzevmhbxOn48CoA7FjOZBvyk2C9uCUh2NJs-GQeWP1zXFjDTcJS-_jZOUNxAw4COewYXTv0FHblhMbM9B61tnoflu6S4Xm_7qrWAuBtP9KSqEJQNCRCkRUtVfVThnG7u33pTQJGnd1YcPehJDKkOOMCliIgIaJLyg5gUeLLma2fcecXmM5Y-mjtIvmwgS84ym08-jhj_hYr2P4YpsGIzT1cIsm83Uq9xtfeo4J1r-OUQ7FxE_syhAjvbFxMuhHQ36wr-kx5JLL7RsyaxXmeWVrG26-c5hgS_pzR-XtSConurdr-kr3KeqUhXYjhebrajzZaVh-fmT38K1iB3r7gJF_YNOONQlJyiw4i6vTOWRNIuhQNL10ujSL5UXB3a8i0CZLPO6kQ4ICflbRE-E-Bhi4iehyL28mCE00CNLr2iJkrmwHeYhn2zDCqKHk_sj2BgWmyTsXLdGwNPIG0LI0KTC1CY41PimKaVKOVruI_OaJe0XAu5YLPuCS3cvSSGFDzhLJkANUMr8rzfCNKyb_tHQbyT8FlC5Cga2Un5iNHThjxCN1kiiWbyT53kHghqWRwFcMZrWWt6KF8WYhMF31YXON7ZetPwK4AP2MQyOng7_UY4-jT3G0k0CPSz8EU87dfaWpZDrtuqsTNF3C2fzHyyXYreIC_K7g1Io3pVKoHGx3kzTrZ8SqjMgl3U1bUlt1swDqFf9rozlv-qxLCGPZcwLRv6ZlgU6Cy78B9bliMXz9O-GmSUEzOsEdDrxBXDzNkQ5LZwgTIIdulV3Ti2YpKMWltkgF_ugV-Nlx8BmXto13n6qqGWvKWNrO7cVXKBeXmF4_OnVk8eHTqBzO2DJWl6jaMuWGiyIhqG7TOSi9G97k0tB5LWWFcyWQodr6iBqbZ5Kf0ERpXd20URrHpyumjhV2bH_w1sDiBFFtliUhJPX69LxHPn_23xIZAn6mJsLxptH_RawP87M2m0Hs91cysbWePBmio8JeUI3bdxalBCnl4cRJhNMQ4yoaEkLe-BIWKxcDUXfbBWovyMYnVzK1tUNMKXBKVtiE=", + "encrypted_content": "gAAAAABpsv-VXwrkiA2LGZS81tv6gXmlZFltBSfylmK7DeO9bnDg43lIoU7T_Dmcxg4SHjIsSOAt1-QnNyApcix2-vjt8aim5NX85sGG-DOFbsikMl-eSyXc4B98LXjP9nS0XxNAakLhhBMObzmIFlf7CwMGSyn3z9VT9Z0oizw6BP5TiEVXSJKZcnzPW4CDfVlGzrBk60NnS2ugDpkWUd6krcc_vU_CudDFDAbFVs4HGEGJDSAXnms0XEWemEnkbjL1dLhesjW-MX-W4uQEGXNJqcVoaC0z0LPu6G7T9SdKEZbrNI5GQu-bL67pjdFfddv6VrrSWovs7-D0X6lr5ZAjuDkqPLQo1uyJDAoOUgx-Z2z7tACHEkG7jqCenTJ3fwQe88KdDcoJoZ59s6VqL-msbnAZpiTKdMyM0wR5jQSXwtaVp9yhNgqjRWDW-RlJc7RbY_4x4j5xL3p1vyF1ioFjo2z7u5Lb9tsBLHOXRDpb9BFGXQbxOmP4VpvMN_93CcszyIRd6mPp3taVpnJPlLTSVW4uBXfGX2RKLAcT0DsYicB3O0sjjfWpGLQuEvmCWSrCHBwYAy-PGDPAQgcsGjsE9alwXOhHXONyq5BkiIs4cQ3ZWCibDTqg2CEVsCuXZPHL50SjuQOFRmFZkXRbnH8xXTAhDNGqFsISgHCeSV6EPEUL72n1SPeJPdxHc1x1ZZL7HdqHMQUfPnE-eMW4IKapOU3MJ5rxXui6ye5aYBHtRFVJgv6xf-lYpWQXLjJWqulelZPST5gLeAl9NPcPwpz3frgoWH9GpB6glNgavPVWQ2cJwYTv85gJ0I3kLATYBY5LRegYAqBvKGBE0ZDR55neZwn83uckMcEh37diCV3SbPFQMUbxw9gkFVobB3jC3r0OetBTXc0rBcO1bN2s1pRf_493hP1uG4r1Q40_kJubyq6KjaJm_aOl6-X9aGVV6VmTmcvSPzrfga7_sXoS23Qxgo5qfyqj6ERnsSUHvqofb7XRUZDbpMSYUyQ8MonZSYs8OuZT7ZoFI0F2WNqZEOBfbYCMeCimlPYmdwgb_3LJMf5ivUbuRq9uG94TrZXxLG2MprIvNHJAxVVt3eRHOzMIo0kgwRYtHd-MdIyeo6nUmv_JPZIRJvnJ5w4GRCvcX9V6j2Yq2CV39NM7QFhSkoSTDz2dKvXwQY3gzhCQM651-mINb86qiL3L-vVtGzZe2ZL5z6VBDON-QOiQyZV7fLH8S5ECKgoK_X81fEjxBAuRkBZGAB-HiuIA6DV_B2O_zE-z09a0ObdBztRd68qMMBNQEuTGZx07C1nVLNZPKro-qT_mx9IbAUwQClw2QHhT6vWIvuWdFWdod44rFDtv-zTImkWtMxbQOjc7dWSPZN6dN-7TCQtVR0DIPl0aouEtgRu3eSWKeHOjTUKBa8D0izB2UQYGHpkyL5-FlTc7NplZRbWMjBDsio-63EV4a_ZISrt2AtacO7p1Tk_H-7atZdWYi1Y0aBg8qf1QWtKzdef-EdgkGPcmUr4rqkH67LrOiNncq-tiqiZhRQ1lHduosIB2dN-Of5NFPe3N5oRD0cSlwhMWJjgC3zkA7ECx8kzKjFsJNPFSqh738KQRxwpaZbqLBIc_FA5WzgSByt_7mLpNKTqQHss_RtU2YMe2JH0VO8V7Waa_mpqELoHcMjHfaIKci-srsOtheWV1x8VSE38ouhV16xaE5WieXL5vtrUJGjdKLsKbm7wYrSnIuU9nr_Ms9nGx5dqdEguJkjKbuNkrZFuUk_Ld5s0Dyg9loLcagD_rRJ8wswmH9xRY-4P1zNZMFKwULj92Xw==", "summary": [ { "type": "summary_text", - "text": "**Checking weather in Florence**\n\nThe user is asking about the weather in Florence, Italy, which is a common request. I know I can use the weather tool directly, specifically with the location string \"Florence, Italy.\" There's no need to complicate things with multiple tools for this task. I'll just call the functions.weather tool and then present the result to the user. It's straightforward!" + "text": "**Fetching weather for Florence**\n\nThe user is asking for the weather in Florence, Italy. I see that I can use the functions.weather tool, which takes a location string. I could use multi_tool_use.parallel, but since I just need one tool, it makes more sense to call functions.weather directly. The tool expects a JSON format with the location specified, so I'll structure it as {\"location\":\"Florence, Italy\"}. Now, I\u2019ll go ahead and call this function to get the weather." } ] }, { - "id": "fc_08e75323d01317c301690399fc62bc8190b80c10a99849920f", + "id": "fc_03e04b1d440a87110169b2ff9482d08196b9611b538400d9b0", "type": "function_call", "status": "completed", "arguments": "{\"location\":\"Florence, Italy\"}", - "call_id": "call_Frvkxe2RXaW1CTvkYPyl0U68", + "call_id": "call_58ZCzgYxpwaBCsl2an3OWjkQ", "name": "weather" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "high", "summary": "detailed" @@ -100,15 +173,15 @@ interactions: "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 63, + "input_tokens": 66, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 22, + "output_tokens": 171, "output_tokens_details": { - "reasoning_tokens": 0 + "reasoning_tokens": 128 }, - "total_tokens": 85 + "total_tokens": 237 }, "user": null, "metadata": {} @@ -118,38 +191,77 @@ interactions: - application/json status: 200 OK code: 200 - duration: 6.70119525s + duration: 8.094597125s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2549 + content_length: 3250 host: "" - body: '{"store":false,"include":["reasoning.encrypted_content"],"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence, Italy?","type":"input_text"}],"role":"user"},{"id":"rs_08e75323d01317c301690399f759088190a37f017516202cb2","summary":[{"text":"**Checking weather in Florence**\n\nThe user is asking about the weather in Florence, Italy, which is a common request. I know I can use the weather tool directly, specifically with the location string \"Florence, Italy.\" There''s no need to complicate things with multiple tools for this task. I''ll just call the functions.weather tool and then present the result to the user. It''s straightforward!","type":"summary_text"}],"encrypted_content":"gAAAAABpA5n8UjdGuSzFx6uvW1lDRxxYfY3gisRCV-3fmThjXt28KBNtZygO2FLKsTDYK4GGvbbqBGkaDynHzJFsQBMjvIyjkiLCdu8peexsbHa9xfp_cWzTgMxBsqQK2CDGxcXqokVV1V4u71ZWHvcV7RzevmhbxOn48CoA7FjOZBvyk2C9uCUh2NJs-GQeWP1zXFjDTcJS-_jZOUNxAw4COewYXTv0FHblhMbM9B61tnoflu6S4Xm_7qrWAuBtP9KSqEJQNCRCkRUtVfVThnG7u33pTQJGnd1YcPehJDKkOOMCliIgIaJLyg5gUeLLma2fcecXmM5Y-mjtIvmwgS84ym08-jhj_hYr2P4YpsGIzT1cIsm83Uq9xtfeo4J1r-OUQ7FxE_syhAjvbFxMuhHQ36wr-kx5JLL7RsyaxXmeWVrG26-c5hgS_pzR-XtSConurdr-kr3KeqUhXYjhebrajzZaVh-fmT38K1iB3r7gJF_YNOONQlJyiw4i6vTOWRNIuhQNL10ujSL5UXB3a8i0CZLPO6kQ4ICflbRE-E-Bhi4iehyL28mCE00CNLr2iJkrmwHeYhn2zDCqKHk_sj2BgWmyTsXLdGwNPIG0LI0KTC1CY41PimKaVKOVruI_OaJe0XAu5YLPuCS3cvSSGFDzhLJkANUMr8rzfCNKyb_tHQbyT8FlC5Cga2Un5iNHThjxCN1kiiWbyT53kHghqWRwFcMZrWWt6KF8WYhMF31YXON7ZetPwK4AP2MQyOng7_UY4-jT3G0k0CPSz8EU87dfaWpZDrtuqsTNF3C2fzHyyXYreIC_K7g1Io3pVKoHGx3kzTrZ8SqjMgl3U1bUlt1swDqFf9rozlv-qxLCGPZcwLRv6ZlgU6Cy78B9bliMXz9O-GmSUEzOsEdDrxBXDzNkQ5LZwgTIIdulV3Ti2YpKMWltkgF_ugV-Nlx8BmXto13n6qqGWvKWNrO7cVXKBeXmF4_OnVk8eHTqBzO2DJWl6jaMuWGiyIhqG7TOSi9G97k0tB5LWWFcyWQodr6iBqbZ5Kf0ERpXd20URrHpyumjhV2bH_w1sDiBFFtliUhJPX69LxHPn_23xIZAn6mJsLxptH_RawP87M2m0Hs91cysbWePBmio8JeUI3bdxalBCnl4cRJhNMQ4yoaEkLe-BIWKxcDUXfbBWovyMYnVzK1tUNMKXBKVtiE=","type":"reasoning"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_Frvkxe2RXaW1CTvkYPyl0U68","name":"weather","type":"function_call"},{"call_id":"call_Frvkxe2RXaW1CTvkYPyl0U68","output":"40 C","type":"function_call_output"}],"model":"gpt-5-mini","reasoning":{"effort":"high","summary":"auto"},"tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}' + body: '{"store":false,"include":["reasoning.encrypted_content"],"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence, Italy?","type":"input_text"}],"role":"user"},{"id":"rs_03e04b1d440a87110169b2ff91f840819692bf236ebfcc7f66","summary":[{"text":"**Fetching weather for Florence**\n\nThe user is asking for the weather in Florence, Italy. I see that I can use the functions.weather tool, which takes a location string. I could use multi_tool_use.parallel, but since I just need one tool, it makes more sense to call functions.weather directly. The tool expects a JSON format with the location specified, so I''ll structure it as {\"location\":\"Florence, Italy\"}. Now, I’ll go ahead and call this function to get the weather.","type":"summary_text"}],"encrypted_content":"gAAAAABpsv-VXwrkiA2LGZS81tv6gXmlZFltBSfylmK7DeO9bnDg43lIoU7T_Dmcxg4SHjIsSOAt1-QnNyApcix2-vjt8aim5NX85sGG-DOFbsikMl-eSyXc4B98LXjP9nS0XxNAakLhhBMObzmIFlf7CwMGSyn3z9VT9Z0oizw6BP5TiEVXSJKZcnzPW4CDfVlGzrBk60NnS2ugDpkWUd6krcc_vU_CudDFDAbFVs4HGEGJDSAXnms0XEWemEnkbjL1dLhesjW-MX-W4uQEGXNJqcVoaC0z0LPu6G7T9SdKEZbrNI5GQu-bL67pjdFfddv6VrrSWovs7-D0X6lr5ZAjuDkqPLQo1uyJDAoOUgx-Z2z7tACHEkG7jqCenTJ3fwQe88KdDcoJoZ59s6VqL-msbnAZpiTKdMyM0wR5jQSXwtaVp9yhNgqjRWDW-RlJc7RbY_4x4j5xL3p1vyF1ioFjo2z7u5Lb9tsBLHOXRDpb9BFGXQbxOmP4VpvMN_93CcszyIRd6mPp3taVpnJPlLTSVW4uBXfGX2RKLAcT0DsYicB3O0sjjfWpGLQuEvmCWSrCHBwYAy-PGDPAQgcsGjsE9alwXOhHXONyq5BkiIs4cQ3ZWCibDTqg2CEVsCuXZPHL50SjuQOFRmFZkXRbnH8xXTAhDNGqFsISgHCeSV6EPEUL72n1SPeJPdxHc1x1ZZL7HdqHMQUfPnE-eMW4IKapOU3MJ5rxXui6ye5aYBHtRFVJgv6xf-lYpWQXLjJWqulelZPST5gLeAl9NPcPwpz3frgoWH9GpB6glNgavPVWQ2cJwYTv85gJ0I3kLATYBY5LRegYAqBvKGBE0ZDR55neZwn83uckMcEh37diCV3SbPFQMUbxw9gkFVobB3jC3r0OetBTXc0rBcO1bN2s1pRf_493hP1uG4r1Q40_kJubyq6KjaJm_aOl6-X9aGVV6VmTmcvSPzrfga7_sXoS23Qxgo5qfyqj6ERnsSUHvqofb7XRUZDbpMSYUyQ8MonZSYs8OuZT7ZoFI0F2WNqZEOBfbYCMeCimlPYmdwgb_3LJMf5ivUbuRq9uG94TrZXxLG2MprIvNHJAxVVt3eRHOzMIo0kgwRYtHd-MdIyeo6nUmv_JPZIRJvnJ5w4GRCvcX9V6j2Yq2CV39NM7QFhSkoSTDz2dKvXwQY3gzhCQM651-mINb86qiL3L-vVtGzZe2ZL5z6VBDON-QOiQyZV7fLH8S5ECKgoK_X81fEjxBAuRkBZGAB-HiuIA6DV_B2O_zE-z09a0ObdBztRd68qMMBNQEuTGZx07C1nVLNZPKro-qT_mx9IbAUwQClw2QHhT6vWIvuWdFWdod44rFDtv-zTImkWtMxbQOjc7dWSPZN6dN-7TCQtVR0DIPl0aouEtgRu3eSWKeHOjTUKBa8D0izB2UQYGHpkyL5-FlTc7NplZRbWMjBDsio-63EV4a_ZISrt2AtacO7p1Tk_H-7atZdWYi1Y0aBg8qf1QWtKzdef-EdgkGPcmUr4rqkH67LrOiNncq-tiqiZhRQ1lHduosIB2dN-Of5NFPe3N5oRD0cSlwhMWJjgC3zkA7ECx8kzKjFsJNPFSqh738KQRxwpaZbqLBIc_FA5WzgSByt_7mLpNKTqQHss_RtU2YMe2JH0VO8V7Waa_mpqELoHcMjHfaIKci-srsOtheWV1x8VSE38ouhV16xaE5WieXL5vtrUJGjdKLsKbm7wYrSnIuU9nr_Ms9nGx5dqdEguJkjKbuNkrZFuUk_Ld5s0Dyg9loLcagD_rRJ8wswmH9xRY-4P1zNZMFKwULj92Xw==","type":"reasoning"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_58ZCzgYxpwaBCsl2an3OWjkQ","name":"weather","type":"function_call"},{"call_id":"call_58ZCzgYxpwaBCsl2an3OWjkQ","output":"40 C","type":"function_call_output"}],"model":"gpt-5-mini","reasoning":{"effort":"high","summary":"auto"},"tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 5385 + content_length: 7839 body: |- { - "id": "resp_08e75323d01317c301690399fcde608190a0fecfea7cd36d21", + "id": "resp_03e04b1d440a87110169b2ff95e7e881968351190f833d9929", "object": "response", - "created_at": 1761843708, + "created_at": 1773338517, "status": "completed", "background": false, - "content_filters": null, + "completed_at": 1773338527, + "content_filters": [ + { + "blocked": false, + "source_type": "completion", + "content_filter_raw": [], + "content_filter_results": { + "protected_material_code": { + "detected": false, + "filtered": false + }, + "protected_material_text": { + "detected": false, + "filtered": false + }, + "hate": { + "filtered": false, + "severity": "safe" + }, + "sexual": { + "filtered": false, + "severity": "safe" + }, + "violence": { + "filtered": false, + "severity": "safe" + }, + "self_harm": { + "filtered": false, + "severity": "safe" + } + }, + "content_filter_offsets": { + "start_offset": 0, + "end_offset": 3357, + "check_offset": 0 + } + } + ], "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": null, @@ -157,18 +269,22 @@ interactions: "model": "gpt-5-mini", "output": [ { - "id": "rs_08e75323d01317c301690399fd3850819098dd485846bdffdb", + "id": "rs_03e04b1d440a87110169b2ff9728608196a7633ffa976a82d9", "type": "reasoning", - "encrypted_content": "gAAAAABpA5oG_ll7ThMwW-18Yqi-ei4hs-px3XUGHH6dTl3eCweNP0omlO0V4VGombiAXb7GT_ScFOlhCGpQOY75MRsi2MvZrQ7HyAezH7dgX6YHPxYf_x9ryT028XZh82ZCjgnGj0xV6b2AhLZCo1sVIh3swqeNGgb8mnh5Ia1IByHnHXUEX7rZ525mvIUYhnwFh-AyE_cRbwC48d4dY8LwW_DBAjaHwkFKrL0Xc8Fwh6E9I8J2dDorTV6lbyNmhedpKcEUv9fHXQabANFFkubpOCDALvLPDsrDDRaTiGQw4WyePEPB531bqVZ0DXtlLsO6pyT-Cll4MM3WqMhEAIiEasnfbaidPeXXQzugFagSs--PBcoJ4Y616lc-kMELAuo27Gm2C1gNPWxGHePry7zCMj6gxouUZsxuOpCozOg1XRFlT2BctxSdGOU36swqyW4jjpyDDH0I21iSeRI6HY-wkjMrq-iaQRkrZm_WmVj8yInYLMb_g6THvjgzTeUWIxrFJYUk3NhOT4OaZ_b6NcLp0GatfLDQb_aXyPu1vjLX2oJhHjb7TWSrQYZiYmRR4qoTd9o3TMquC-M85vgsz-DkHlHN0fJUs3CXtwEzPPbupl0Wiyu4CF4EPvF3vxSYQf2tCLkbybVnJrdfPmmFPSzgeYFtf6T-M_Z26hUjJD2eRQ8qeMJurvDPE2TL_w6XSJPyFj0Tlzl_BcHVjkt3BvWP6SgKd4xxhde6O1cfU_gOlL91w879D-Z3OHDYCpkhN1f9GfdnH-CAGkmcLfAXcvPh5lHvLzpY1k2TXWeDwEsI0lj_ravjBNBjoXBIEZl3DG4VoWPrpLib-vhavHxNtwm-TEM8NOvy-fYtucz_yGMKFxhwWkcMcSNM9UpWrXcpp7iaSiXcbgZZgmuFXEqhaSQEKEeMOATMH_6CYzAh6wuRKRVisGOn6ZHsFvit0dMQxTPGc8zh1R-69kepkTNjLKC7U4cs1geqBQQyaO-A9hgUQX89zGXTdkmPRSfjOgShS3LQo90s7UGkUMlOBwCMESliwfjY_lwS8dSJ0t-qkYahcYAVzNqGkUh92eSuwwk94WDYGXTBZvKUUQKKJWb7xP2tyLCXflv4BGtO19_44tyLG68YmU-r82b-z_U_Rj77m1Wsz8TIuYY2fX4DrqSE5aV3Wbn2AYbAHAmNRz_UI3rEezN6wERgb9fyvcmzl4EV5YmsZuh_D28paVc8w56Qhki3VfnFQvPrGlCqdukBIWCByU2NhjUYix_n6-Iv2BfMmZTANDQH49m4eEOs0rxvy0hNBaa-wrAMCPBDJU6NF7FnaV7DYzXChz2dv8f8p3MndlD_e0JvCq3EnQdPIF0dmwK-gka_WZf45QrIX8gMlQLeeeDj-7uA1DpzjZsV44bK8mshVJJ_wz1WMTF23bxhJ3ADdpQPOWUJD9Ol3qUurBrA0NbtF1clZt2tdiuVOUMwEcs5jLy0Y8PUql_-9Uw8izYzwGWnwqLb8VBPfLTVnoRMnMVEP07Nhno3_L4yHJFPEWLKdawNBk6cDusX-lk0V-BdkYygJN7tPq04PP3puq5UccHkxh8ECBxwscKXtCUiBjYtGAVy3gcW2xgDBvkm42Aij9Z3ICftjlJIZLp5TFFGtb_PwpgCDSVSl31untlw3O2HkyVaj1IqWBx7Yvy3g7SMhRvtEZCzwIMFNAy7xnYOcvXjOgYk2btpt5vjrp8vnjkRsSx7VaIMRQsAKLIINDkqXgXjt0AkU90mF8__p_str-PfI1MyTyKE4E_VzlFSKcARe9v5oSVjBH39gwVd6PZW0E7hBcYybeasmnvWRoIfkqbagIumUHg5aCdDpqOrU4gisyw6r5b6ezBSP7lh4KceR-NNVdDcPI3vn3k7MiElIwEfUjwwh9AmsPCloh1et8d9uepGCFP6ehEtGUKvRbil17TZcUOq8DDGCfXAGKSRui8W_GU5hhOJBrDpjxZGvmH-29hfviPHZGtPNTi6zQWqcCxSpxDRyeNWmvp5IMf8Kz7ej6Ve6wHahVOBm_wM-8zwZI5yEazSWZRTYqaWY5vnPs--SsnS2R0lOd1oLHybGZTKW0-YXmqWDrIcnrA0fq7UsCkuNBgzew_9fZg2NIGvukMfBAtBTq-FQ9DM2-mnDPlNXvMRswTga-uV_Z2UQNjvEnY8xn_7ZnUGeGpVWjbHg4GXW5zV9f5aAdtV452YKqQ55JzvR5yJ47lg3EphgHR-5_vOvr-Bl-kEm40oEo8zvNquBcxJ9mvZ478WGGbvGzhOK065YN-nZD91JNUQcALSO_hF_FE4Tk_VvZmFztcRU3nOnF3mHXWe-wJ30UCzKuLNkL9keemUUiAylMvkec0_gR-SxmPyzYvI9XuYc8TYV1xrEWx37wI89fihJeXfS5fmUJEPkPpFq-W704mdXqdG873I15fr-HGx_hcqH1QA6x-8-JtwN-5Se9Pi-iq4UN10T5K95XVgadJbeehLim4Fjxf_SZSyb0rYVnP57h-u1Orh-mwlNNLcf4J_5OQ1h7MWE5DV_gQKhv4Myr3zHVmN6mweUx22fwW6H9AMwfpaEwA5B5feOz8Op94hSgQvmmA6mk5I2CuRZ3H2d0i1b4su4oCcVnW7", + "encrypted_content": "gAAAAABpsv-fpb3rS7-bQl4c_t4hmXUOwnwmGym7XB5QpPIRXiNgCXQVpiKPvvmqEGMhzrlTx0S1pxIn8cuyWLmsQnI76mv63_LRfNGBZekDfsfFDa2ZNTGW8WiWq3LMbP3CZz24Ld9x0rp83M90cKY4tWrWERKfsii6bX4b41p42leowZQMa9QAbuJH2z897shfIVbmwLsG8vUuD0OsrCcLfQcqHoTQJBE0Xme2H9o79idNBOf5mbrG8JhF9OxUHtwjH6LRuubx3fFtyfDAS53sx5oKtYZHbQoG0YMbD1oSqlWgO9DEqApKNb848RvGoXOp1_Yu2Pq4hLNBaH-I2VfR_3HEWupf5GJ1t85Sc3Ag69Ix_RcL2x46y1fpCaSrxw1dPZ0XlPX55cOVErQ4-3hNc3EdsQ4Qi5XWT-LYvophKrSzd02pFWYj4T86KiHX6ROteeGTxDkRZtf7v-3lO-QC1uNlsE5lHuPYsunES_ZXoyCc9n_mKrKxQlXyjVONQavgkpZz3BLNHQSFWPJ4ajip3aYHDjzdHtRp5Z3g7AWPC9_isbZ9MHx3IoR9gcnAEjYmo-yIJffbSEnPVyBCgiGpX9dG3KFue11g-uM9wzkQ_PvLnSeNCiXrP1JXEukQRJic9gQ7KvmRCzjNmGcbQnCvDt6iFmv9gut9HEPEj5DqLDnA5ntX2u_0vCJtCUGeL0iT0cChchvrLlA48XWwgYCmH3UyifNa7gh7NQ2Vm3vyMFcOmcWDFUYSYkTytc33Xr48yzPZKjxmkRtsxJqpF4h8v3z8N3hfRRq-fDsQZsmKW8soI03yuAW1bsVvabnEmdpu8Olk88HCD4NdBeEKHqA4-FiKYnXd6-KT2KZVvMejaCMPYYYE3FsTXpjMlBihDvl2Ajclc_izAD0KKhaGlHQ6VEzuVBDbxvleoOYsDGQwCI9bZXcneqeSSUxUOotJOHyt8gGISVuWkKuM8hLGMqn2gIOyuQERcwWwj1WkxwAaNSNdWszbwlmpSjFSdc9K6knWQna5R2DqlEh9-WQcHSxNtsWo8rGPWb3PbbuQMvaPfD1zVntCfTO3UssmXwwIWwnkMdgZylRDhaQqIln4Xsgx4DYhiK5eYN4Es9bXEXugi5cOq0OEOVj_A9C5-Aj438k9luAAnm09q1xZOIxI5amDblv80zleGijt1r2qsLpdsGCejr44GDFZ-S1Py9pWURzDQ7kfXsqv18Sw1TjsrewP2GwRmJQ4aYSpbsjZRUa82xoHb7kxdLz9j27Fyxi6I9HmnZf-bCcMzy7f8WzGmmCWgGQDRpE5iy7fMxTI0hML0sZpfxAxRWwFtMp7Emr4m8zjDzCgLFjp3S47wRtGJHft_JaWkBXbpjkiJknz0Wo_72Tshqk64PopsGyYNqU_sk2wBL98aHgL-tsrd7XJ4Xjzm0padS9iJ0NqkIX4pQyZ8cXyZa1kXoMb1_JWK2DEJSj1o34iZbxnKPKhgt9tM4yHJrmSX5wgbmeTYjPQVkmx5yiN8FygqyFaeSsCulS1HAfcwoQs59QWcj-vJS_a6ffpYJ336RMpodQ2PgloXTEdJzNvoSWEeZOPML7WKQsGHqjVfAzeENW9Psd2T3IuMjgfoE3xM8opHGd7PFIIS-5FPaWzE16vFWXT9vJDeZaeCOuTetYJjtxs-qaj5uBfQ-OknsSLposZcyYty__eagFdxfPKR_iFcy_AdBPp1mufM71OrN4CyRdQ2QCnPcLFNVzlXVR6LRKwBNCOkUq-gBei474FLheWLh0psuaUy9rxxo8y_hLjxn0_Z0LwAbdYKF2Siz9E18W8YmjGVD9iD1lcraodYs6Xl2D4J2jFKL4dmopw0P9-U143P46HXplpTANifxEGW_RnKG9HpgpUfv6Gp9vPPrL-GeBW-51JDAq-y0BCD0e4SFEHWSDT7b16c5BQpYul2K3XviYHGxjGAI8rWNS03Lac96eAmzuCn8KzqBvOHJcFyZ54PfcEitmhCzOZ03UXEQwduMbRnCCW1Gp-WZGloWpTxbJNQYpLH01nqSJn86wzsVj-g0DLQWSsC1pcOIh_wsslvp15HRqLD3fUtEFc_ls3BDciXoIkNG8O0wZ9HVQJcLm1k08hYvU-5W7X_LW8-cOa3-kBaW6oU0yqk9sNrzl-rAdl90U2j0L0oQF3lufR6A6K8ZJf67MzAWpXcazPOVN58gVu9ZvfR_KbraKjyTkIsQQmFBecWoptOMbxgD_uCOhsHtFzeS5SVFfg77Woxo1BFLqy2PUbw-IpDsTJ4ssJ241Ycyjg1KY8XDSl24AiyCaw70QIksSrcc__dAIUaE-lbHQlQRwRCFu3BHKgHHbwkgFbH2ar9xo_dI7v-uriY0gVxvzwVrnCnKKA6phKGJZs9nVb9fLupHBm5IiueakkoIWTpsGcl6nfZCnSAy3d1SpZJZ9OGHhR0yD_8uP6RvVeT3B5nebw8ko-LF6CWI9Wlb_T0m0yuzgwXqliYlHEVqT0u3IDFbpQ4yAUpIa9PFYatuYX6IEr_a5pfUbrnW63Z-1H3iz7iKJdDKdvrPbje1mvf70ZmRv7esI6BphFj2VRH9A4yJukCx5Kv_w4OYNfk3D7KCQ858p5V_JcUdVGxpOXP_s1PCJe7eZtpdywewNfcH_25mdK70IkAOEPSFsvA9tVmR0KJzYRycs5Nqpsd111HGylZIdrRSAiuxrBc0OiZP7dVsxBx6MeQhG7j-hUh0nk9iMenbyY4yA45R4jalCvR6yjuvJJ6Dgx6E1ePqFEfnISHPZrYTPXjqZtLZUnyD3zKbpF_kxpMlxA930Gi4-_qPNDtQm00TwraPvXkWTmTFHLtxGEh3D_btbymaRxRPkIfwi0myHkJNS-tsa3CUd4QfzvOAYMB5rB-K1dKSr38j_m4l0ZnhfZ7fCSHYgDcSZUWye5f2f3khFuPG5_xrGz_h0CIzugDxTCZI3BNUYQeO7u2e1XeovICoUspkat_BVE-pP2Hm6OSX2ZUNiVemI00bPoxjpxPhriAgzjAlxwz-hPbnc8cAkm6PZNMH4HeNfxJdeYFrtmES86AGW9lYCY8oxIjFsXXnxFhDDFtal1-5bnCSpi1EnsGmP5WmbDKUkj9vqWi1NUk0WrwnjsefvnOGwkvneoP8Yp6Dn4nLPQJl_e-L-cbjNInGf3FS2vdFtNEOMm7VbI-J4qIBnk3UQoTL8jCxct7TQvSEkFwZE-HO-oSFz03KPyWk4X2j2-A4xfUnGCuQOZOSyvIhh6BcJBsU1OwhqC3G0CZMwAj1-hWBvb3QPg00e-zqAADusg2ggkekD-fbopAG8x4rejhRBvrob2IA6Oroig69H1_WnpLuPHgJ9-TYP25iler8R66zuHkX60LKNN-D6B-ff6ymmQ_kF1zVGg2ufjfQ5xlkR302PCLKrb8IhVe5vBsTJEWERR2WehtdCvoqySNgh3u7C2t2thPV4mHN0xA5_HzOk6Zz7AqMLnnW-0m1-eKxWYDic=", "summary": [ { "type": "summary_text", - "text": "**Crafting weather update**\n\nI want to offer the user a gentle choice: \"Would you like the forecast or hourly updates?\" I think a good response could be: \"Right now it's 40\u00b0C (104\u00b0F) in Florence, Italy \u2014 quite hot!\" I should advise them to stay hydrated, limit outdoor activities during peak sun, wear light clothing, and seek shade or air conditioning. I\u2019ll ask if they want a 7-day forecast or hourly temperatures. Keeping it concise is key!" + "text": "**Reporting Florence weather**\n\nThe tool returned \"40 C,\" which is pretty hot! I need to provide the user with the current weather in Florence, Italy, but I realize it only gives the temperature. So, I should clarify that it's 40\u00b0C right now. It's extremely hot, and I want to remind the user to stay hydrated and seek shade. I'll keep the response concise and ask if they\u2019d like more details about the forecast or hourly conditions." + }, + { + "type": "summary_text", + "text": "**Summarizing Florence weather info**\n\nI want to provide a comprehensive yet concise update on the weather in Florence, Italy. I\u2019ll tell the user the current temperature is 40\u00b0C (104\u00b0F), along with safety tips: stay hydrated, take breaks in the shade or air conditioning, and wear light clothing and sunscreen. I might also ask if they want a detailed forecast or hourly updates. I need to avoid claiming specifics about weather conditions since the tool didn\u2019t provide that data." } ] }, { - "id": "msg_08e75323d01317c30169039a058e308190a79d0f0c4e834ad2", + "id": "msg_03e04b1d440a87110169b2ff9ed2a8819688f2b28a2cdba9a8", "type": "message", "status": "completed", "content": [ @@ -176,15 +292,17 @@ interactions: "type": "output_text", "annotations": [], "logprobs": [], - "text": "Right now it\u2019s 40 \u00b0C (104 \u00b0F) in Florence, Italy \u2014 very hot. Stay hydrated, avoid strenuous outdoor activity during midday, wear light clothing and use sun protection. Would you like an hourly forecast or a multi-day outlook?" + "text": "Current temperature in Florence, Italy: 40\u00b0C (104\u00b0F).\n\nThat\u2019s very hot \u2014 stay hydrated, avoid strenuous outdoor activity in the midday sun, seek shade or air conditioning, wear light clothing and sunscreen. Would you like a full forecast (conditions, humidity, wind) or an hourly outlook?" } ], "role": "assistant" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "high", "summary": "detailed" @@ -224,15 +342,15 @@ interactions: "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 159, + "input_tokens": 248, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 313, + "output_tokens": 489, "output_tokens_details": { - "reasoning_tokens": 256 + "reasoning_tokens": 384 }, - "total_tokens": 472 + "total_tokens": 737 }, "user": null, "metadata": {} @@ -242,4 +360,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 9.847531375s + duration: 9.999820417s diff --git a/providertests/testdata/TestAzureThinking/azure-gpt-5-mini/thinking-streaming.yaml b/providertests/testdata/TestAzureThinking/azure-gpt-5-mini/thinking-streaming.yaml index 07ed45a777aca766e628880b66d87848c018c201..307021c8eee0a4d6111e6be1da4ad55121585d67 100644 --- a/providertests/testdata/TestAzureThinking/azure-gpt-5-mini/thinking-streaming.yaml +++ b/providertests/testdata/TestAzureThinking/azure-gpt-5-mini/thinking-streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -24,29 +24,29 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]} + data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"detected":false,"filtered":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]} - data: {"choices":[{"content_filter_results":{},"delta":{"content":null,"refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"","name":"weather"},"id":"call_IXyDXemyXlFWVdGVguHr5Sbe","index":0,"type":"function"}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"uaMd1T9RcrzY1","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":null,"refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"","name":"weather"},"id":"call_ftDSBiJDv090pGPsMwdpJCtX","index":0,"type":"function"}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338592,"id":"chatcmpl-DIefIEkVhFvGxEin3iF87MkAmNHJ9","model":"gpt-5-mini-2025-08-07","obfuscation":"Bd5X0KXpyjlWz","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"7hL","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338592,"id":"chatcmpl-DIefIEkVhFvGxEin3iF87MkAmNHJ9","model":"gpt-5-mini-2025-08-07","obfuscation":"csp","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"location"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"It5BrwApZDAmaZ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"location"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338592,"id":"chatcmpl-DIefIEkVhFvGxEin3iF87MkAmNHJ9","model":"gpt-5-mini-2025-08-07","obfuscation":"O0PONDnbp4c5Hc","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\":\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"r","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\":\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338592,"id":"chatcmpl-DIefIEkVhFvGxEin3iF87MkAmNHJ9","model":"gpt-5-mini-2025-08-07","obfuscation":"J","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"Flor"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"Nc","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"Flor"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338592,"id":"chatcmpl-DIefIEkVhFvGxEin3iF87MkAmNHJ9","model":"gpt-5-mini-2025-08-07","obfuscation":"cI","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"ence"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"7r","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"ence"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338592,"id":"chatcmpl-DIefIEkVhFvGxEin3iF87MkAmNHJ9","model":"gpt-5-mini-2025-08-07","obfuscation":"Qc","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":","},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"MGNaY","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":","},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338592,"id":"chatcmpl-DIefIEkVhFvGxEin3iF87MkAmNHJ9","model":"gpt-5-mini-2025-08-07","obfuscation":"HN6gr","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":" Italy"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":" Italy"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338592,"id":"chatcmpl-DIefIEkVhFvGxEin3iF87MkAmNHJ9","model":"gpt-5-mini-2025-08-07","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\"}"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"t4l","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\"}"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338592,"id":"chatcmpl-DIefIEkVhFvGxEin3iF87MkAmNHJ9","model":"gpt-5-mini-2025-08-07","obfuscation":"bPJ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"5GHK","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0,"logprobs":null}],"created":1773338592,"id":"chatcmpl-DIefIEkVhFvGxEin3iF87MkAmNHJ9","model":"gpt-5-mini-2025-08-07","obfuscation":"7QRm","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"3b8TlKRFFcjm","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":90,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":64,"rejected_prediction_tokens":0},"prompt_tokens":145,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":235}} + data: {"choices":[],"created":1773338592,"id":"chatcmpl-DIefIEkVhFvGxEin3iF87MkAmNHJ9","model":"gpt-5-mini-2025-08-07","obfuscation":"Tz31GYPbIe","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":154,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":128,"rejected_prediction_tokens":0},"prompt_tokens":145,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":299}} data: [DONE] @@ -55,7 +55,7 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 3.489423709s + duration: 3.215603542s - id: 1 request: proto: HTTP/1.1 @@ -63,14 +63,14 @@ interactions: proto_minor: 1 content_length: 767 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_IXyDXemyXlFWVdGVguHr5Sbe","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_IXyDXemyXlFWVdGVguHr5Sbe","role":"tool"}],"model":"gpt-5-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}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"call_ftDSBiJDv090pGPsMwdpJCtX","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_ftDSBiJDv090pGPsMwdpJCtX","role":"tool"}],"model":"gpt-5-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.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -79,133 +79,249 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]} + data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{}}]} - data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"hqlJnDYyrDUmTx","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"3HA95RAPHlb47h","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"Right"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"5A80nHsvZg0","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"Current"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"3lZYzxdxp","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" now"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"pX2s8jfZcU1h","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" temperature"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"IR2O","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"1ybxhw06Hfpby","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" in"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"hf61kw5fihC9r","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Florence"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"gcR9DkF","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" Florence"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"cBAqvSw","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"D2DmY7D1iKZkzEF","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"LZzsFvANKrPDY9k","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Italy"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"pA3OdoLbWX","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" Italy"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"UPx7joizNn","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" it"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"FVQsr3xpMeReg","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":":"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"KS1lFB31kSgahXB","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"’s"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"PSNGyio1hHOhNT","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" "},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"KQb9BSzkd76WpfQ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" "},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"iE6VePqqFACIeLn","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"40"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"V98DUYwI77olOk","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"40"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"Rs3BzgW1wLZNIW","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"°C"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"MNV1doW2YxhPbs","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"°C"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"ugO91Rmooib7wK","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" ("},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"G61DJZVe1kruMD","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" ("},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"5EcQG5MstC1H58","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"104"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"AtXm0iSsUlA0t","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"104"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"ebUiPqCHw4PW4","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"°F"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"tFmr05pIN4XALL","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"°F"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"XyYWjrDdGjX7mS","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":").\n\n"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"yGlHIxzaTO","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":")."},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"iH7YF3pg3D3L33","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"That's"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"NpML0LaEvM","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" That"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"I5GoUtCaHEX","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" very"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"Oz2n9fWEzbK","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"’s"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"xjoz4yMu3sXGBP","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" hot"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"Re3ztFBtrU9d","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" very"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"QHiSfUaVvzE","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" —"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"q270QaM8TlUjZ2","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hot"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"wPV94GSdXzr7","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" consider"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"vdRSPxt","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" —"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"84lO5nXdrFIp5G","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" taking"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"KMgRdS5DI","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" stay"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"CDQaPucwRMR","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" precautions"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"k1Xf","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hydrated"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"fSP3D9L","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":":\n"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"LcJukybnAchRk","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"qtHg6eRLgch21pn","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"-"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"xxdLhXgbfF5AZMU","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" avoid"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"wCkXcTtorp","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" Stay"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"vBbWTn5J9TP","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" strenuous"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"hgC8ML","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" hydrated"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"G9fDK8C","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" outdoor"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"M23NRD0u","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" ("},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"WgesnM091I11iu","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" activity"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"ApabYQB","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"drink"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"b8M8X6dwX0r","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"Aenr53JRRPDdr","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" water"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"17EbcRltbt","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" the"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"kTm47OyAiKTS","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" regularly"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"K5gjjk","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" midday"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"AlKC23Znm","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":";"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"vzi4ah92xFpkKVx","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" sun"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"gIzjaYM1QWwj","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" avoid"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"lUFlzE5Mue","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"QtnqPe70AktHxrM","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" excessive"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"gxUm6X","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" and"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"h81EcsaVsSqI","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" caffeine"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"6GfoRSB","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" use"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"SvOxON98klvJ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"/al"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"qJvfdpkzGzQzh","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" sunscreen"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"qMRVqU","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"cohol"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"7BvEM0oby2R","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" and"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"RDjFdl1tTlRm","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":").\n"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"sEnjTxu8aZJE","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" light"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"bQGdkZmkH8","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"-"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"gg83nI6a8OVWWB2","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" clothing"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"BZ9Sltx","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" Avoid"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"wCazZFUWOK","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"."},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"ZSpi8mAFjtobvtl","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" strenuous"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"pI7nk8","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Would"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"UbQ3B1FFbN","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" outdoor"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"jZJDpM0i","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" you"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"e8oaxQDtn0fW","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" activity"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"9Cszq4h","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" like"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"QqzM2MPGian","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"ccx7Ow0IgtpKRD1","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" an"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"S5u4WZAvtcvxb","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" especially"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"2q59F","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hourly"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"qR1WcP67Z","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" midday"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"nLfpqjLOz","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" forecast"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"G3efZ8d","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" ("},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"mZwrDDsIpZnKOF","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"AvIShW11ecSB5Kb","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"rough"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"bgzZlzVmUD2","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" a"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"HNipO50l8mXVi2","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"ly"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"sVrx9LJLa95fV3","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" multi"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"YSpm46cWkO","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" "},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"JVnsFaYsSispVif","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"-day"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"yYbxPZ7Hsog4","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"11"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"scHk7bnoLA7c6S","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" outlook"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"4USPZhVo","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":":"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"pIurC5WMYJab12D","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"hyfnSPDzog3tKEg","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"00"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"8bb17wRArdn4pz","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" or"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"y3IpD0w7NTJBT","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"–"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"C77OHlgIkSKrEy3","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" tips"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"vEkBNMqMIAt","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"16"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"PJ22SgwN35SduS","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" for"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"WBu1A17CzN8A","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":":"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"vM7HBGiuIw5tYYa","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" staying"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"jDUk3NdM","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"00"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"Lt95YSM4Dccobl","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" safe"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"KF3kOIenFqY","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":").\n"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"EuiI8g49irMp","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"ROhDQwfK2fAse","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":"-"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"PSn5gk7EBnlyk1t","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" the"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"iU4K1xyEir5W","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" Use"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"TZOUKZuHeD2O","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" heat"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"p8izEBCrC84","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" air"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"yWD1Utojb18F","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"?"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"WBHU0VQw0fnm21S","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" conditioning"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"Mkc","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"QL3mWfmvPv","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" or"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"kvlRVgKP3dF7l","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} - data: {"choices":[],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"X2xZyK0wIK","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":518,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":448,"rejected_prediction_tokens":0},"prompt_tokens":176,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":694}} + data: {"choices":[{"content_filter_results":{},"delta":{"content":" seek"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"3snzq59ocoB","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" shaded"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"1XcUdqYi7","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":"/c"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"G3H2fjm4SsNN0M","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":"ool"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"lIE9Q0yANtdw1","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" places"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"yeWSaLkIc","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":";"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"P4gbCIzvVWcTXNn","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" wear"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"lBzyJ5Y1vu7","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" light"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"tvKUydxX24","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"CiLADG6u9W0y9Ny","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" loose"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"zZbZ003Kmw","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" clothing"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"b2F7Yv6","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" and"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"oL6XzhfGeEKR","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" sunscreen"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"cxpaPx","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":".\n"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"UjAspscjahlZV","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":"-"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"gyErmdS4HJWhm4h","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" Watch"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"2oqx9TBaMS","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" for"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"83pdAcwrFAET","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" signs"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"GfQbzNZ79r","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" of"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"ePYA2av4fUnKv","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" heat"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"I31dCFKc03i","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" exhaustion"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"KI3FK","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" ("},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"XdLQoex728Y3in","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":"d"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"wdVPV5Mn8JpQ9cx","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":"izziness"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"jJ0JN8GD","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"fKBwZodXuj0M1WV","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" nausea"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"7H3X4j0ve","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"0HziLlEZZG31QHl","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" rapid"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"NH9cZdH5kP","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" heartbeat"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"ct7tjI","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":")"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"u0Gq3rGyayIhTm7","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" and"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"MHFTkmVNfMGT","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" get"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"oLC04FtMnRqC","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" medical"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"1bYM6Z7r","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" help"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"mWyRN5A1q7Q","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" if"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"b7oENnAnzvefa","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" needed"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"GtsZxxIz6","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":".\n\n"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"ZwkG3302DKJ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":"Would"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"BFbIAOPU3uF","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" you"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"nqzoyQqOUkxS","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" like"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"oJmE14F5Mg5","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" humidity"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"mJFQ2aL","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"MJbQC33saVLkOpG","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" wind"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"Un7cO6xCzjB","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"6WThy9JMuIp5iTx","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" an"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"3umW3YHCmpGWz","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" hourly"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"EgxzCunmM","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":"/"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"mzW4bPhTrnoGT9f","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":"7"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"6RextvWkHuBzotP","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":"-day"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"6oVzPZWkAxFP","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" forecast"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"UAzLWos","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"NSIJAX6I2xRkfPA","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" or"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"MReFZDCAc2xIZ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" local"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"Yi0pDPc68L","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" heat"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"ZXR59ClOzXH","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":" advis"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"N3gxsFSiev","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":"ories"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"sdSgAdqH2rX","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{"content":"?"},"finish_reason":null,"index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"IGZljoU8VDJ67FU","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"Vkn6FkKRSk","object":"chat.completion.chunk","system_fingerprint":null,"usage":null} + + data: {"choices":[],"created":1773338596,"id":"chatcmpl-DIefMU7QYydJPYOz1gjK0J4yGNF5L","model":"gpt-5-mini-2025-08-07","obfuscation":"q3RUBjZgnh","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":704,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":576,"rejected_prediction_tokens":0},"prompt_tokens":176,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":880}} data: [DONE] @@ -214,4 +330,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 10.8719895s + duration: 9.105651958s diff --git a/providertests/testdata/TestAzureThinking/azure-gpt-5-mini/thinking.yaml b/providertests/testdata/TestAzureThinking/azure-gpt-5-mini/thinking.yaml index 395f807abfb5d8649ecf2f94378b8dea07390f25..bfb597752320dca83f2b21abdba95d63a8053f0d 100644 --- a/providertests/testdata/TestAzureThinking/azure-gpt-5-mini/thinking.yaml +++ b/providertests/testdata/TestAzureThinking/azure-gpt-5-mini/thinking.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -24,13 +24,13 @@ interactions: proto_minor: 0 content_length: 1051 body: | - {"choices":[{"content_filter_results":{},"finish_reason":"tool_calls","index":0,"logprobs":null,"message":{"annotations":[],"content":null,"refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"id":"call_DUlGZ00SpDPsuwZGXVWQyFFW","type":"function"}]}}],"created":1761842994,"id":"chatcmpl-CWQ8Q4JDZwBrx3DQx4ZSZHRxmmDZC","model":"gpt-5-mini-2025-08-07","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"system_fingerprint":null,"usage":{"completion_tokens":90,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":64,"rejected_prediction_tokens":0},"prompt_tokens":145,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":235}} + {"choices":[{"content_filter_results":{},"finish_reason":"tool_calls","index":0,"logprobs":null,"message":{"annotations":[],"content":null,"refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"id":"call_KB8H788JpPZKWXYN0zoeGVSO","type":"function"}]}}],"created":1773338582,"id":"chatcmpl-DIef8vKdF3DsLvy32GOOYsrusK8ew","model":"gpt-5-mini-2025-08-07","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"detected":false,"filtered":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"system_fingerprint":null,"usage":{"completion_tokens":90,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":64,"rejected_prediction_tokens":0},"prompt_tokens":145,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":235}} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 3.366893959s + duration: 2.01810125s - id: 1 request: proto: HTTP/1.1 @@ -38,26 +38,26 @@ interactions: proto_minor: 1 content_length: 713 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_DUlGZ00SpDPsuwZGXVWQyFFW","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_DUlGZ00SpDPsuwZGXVWQyFFW","role":"tool"}],"model":"gpt-5-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"}]}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"call_KB8H788JpPZKWXYN0zoeGVSO","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_KB8H788JpPZKWXYN0zoeGVSO","role":"tool"}],"model":"gpt-5-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.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 1344 + content_length: 1502 body: | - {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"protected_material_text":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"finish_reason":"stop","index":0,"logprobs":null,"message":{"annotations":[],"content":"It's currently 40°C (104°F) in Florence, Italy — quite hot. Stay hydrated and avoid prolonged sun exposure during peak hours. Would you like the hourly forecast or the outlook for the next few days?","refusal":null,"role":"assistant"}}],"created":1761842997,"id":"chatcmpl-CWQ8TuzLOjG9vatDbmlnZ6mNdo29i","model":"gpt-5-mini-2025-08-07","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"system_fingerprint":null,"usage":{"completion_tokens":309,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":256,"rejected_prediction_tokens":0},"prompt_tokens":176,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":485}} + {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"protected_material_code":{"detected":false,"filtered":false},"protected_material_text":{"detected":false,"filtered":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"finish_reason":"stop","index":0,"logprobs":null,"message":{"annotations":[],"content":"Right now Florence, Italy is about 40 °C (104 °F). That’s very hot — take care.\n\nQuick tips\n- Stay hydrated and drink water regularly.\n- Avoid strenuous outdoor activity during the hottest part of the day (late morning–mid afternoon).\n- Use shade/air conditioning, wear loose light clothing and a hat, and apply sunscreen.\n- Watch for heat-exhaustion/heat-stroke signs (dizziness, fainting, rapid pulse, confusion); seek medical help if severe.\n\nWould you like humidity, wind, an hourly forecast, or a 7-day outlook?","refusal":null,"role":"assistant"}}],"created":1773338584,"id":"chatcmpl-DIefAdzHB1dLXMwJrTWf7ykG5PGE9","model":"gpt-5-mini-2025-08-07","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{}}],"system_fingerprint":null,"usage":{"completion_tokens":771,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":640,"rejected_prediction_tokens":0},"prompt_tokens":176,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":947}} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 7.677985209s + duration: 8.376763541s diff --git a/providertests/testdata/TestAzureThinking/azure-grok-3-mini/thinking-streaming.yaml b/providertests/testdata/TestAzureThinking/azure-grok-3-mini/thinking-streaming.yaml index 754d7faaaf7c2e2b619005ad9af6ab680e26af9a..64f16c78ee7b3a18aef9c830342a09e4b6f136db 100644 --- a/providertests/testdata/TestAzureThinking/azure-grok-3-mini/thinking-streaming.yaml +++ b/providertests/testdata/TestAzureThinking/azure-grok-3-mini/thinking-streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -26,645 +26,645 @@ interactions: body: |+ data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"First","role":"assistant"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"First","role":"assistant"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" asking"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" asking"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" about"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" called"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" called"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" get"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" get"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" description"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" description"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Get"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Get"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" require"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" require"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1773338612,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" string"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" string"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" describing"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" described"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"In"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"the"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" query"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\".\n\n"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" has"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" has"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specifies"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clearly"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" both"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specifies"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" country"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" country"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" This"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" This"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" matches"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" sufficient"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" infer"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"All"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" value"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" don't"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Since"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" all"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" infer"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" anything"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" else"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":";"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it's"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" straightforward"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it's"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"According"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" instructions"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" query"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" addressed"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" using"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" JSON"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" within"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" all"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e\u003c/"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" or"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" obviously"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tags"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" infer"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"able"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" trigger"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e{\""},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" JSON"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" within"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_name"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e\u003c/"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_input"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tags"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" {\""},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"parameter"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" logical"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" next"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"argument"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" step"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"}}\u003c/"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e\n\n"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"For"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" case"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" with"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" action"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" action"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_input"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" make"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" my"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" verbose"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":";"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" keep"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" with"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" value"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Since"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I'm"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\".\n\n"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" don't"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" don't"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provide"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" any"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" add"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" additional"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" extra"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" text"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" text"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" unless"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" before"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" necessary"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" instructions"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" say"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" use"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" instruction"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tag"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" only"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it's"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" when"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" deciding"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" logical"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" next"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" step"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1773338613,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" concise"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" case"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"After"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that's"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" appropriate"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"After"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" were"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" multi"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-turn"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" multi"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" conversation"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-turn"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" conversation"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" might"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" might"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" handle"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" handle"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" but"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" but"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" system"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" prompt"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" now"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" says"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" continue"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" immediate"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" action"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" functions"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" until"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fulfilled"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Function"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" However"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" once"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e{\""},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provide"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_input"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" so"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" {\""},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" might"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" only"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" needed"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"}}\u003c/"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Finally"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" ensure"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e\n\n"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"That"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" output"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" seems"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" correct"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" verbose"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":";"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" don't"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" keep"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" ask"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"So"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clarification"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" because"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" my"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" matches"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" just"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"id":"call_79034109","index":0,"type":"function"}]},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"id":"call_59730831","index":0,"type":"function"}]},"index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0}],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9","usage":{"completion_tokens":27,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":317,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":288,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":288},"total_tokens":632}} + data: {"choices":[],"created":1773338614,"id":"6dbdc2de-84d4-497d-9536-e643fcc3f981_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9","usage":{"completion_tokens":27,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":317,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":288,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":288},"total_tokens":632}} data: [DONE] @@ -673,7 +673,7 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 244.989833ms + duration: 412.644917ms - id: 1 request: proto: HTTP/1.1 @@ -681,14 +681,14 @@ interactions: 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_79034109","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_79034109","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}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"call_59730831","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_59730831","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.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -699,963 +699,791 @@ interactions: body: |+ data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"First","role":"assistant"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"First","role":"assistant"},"index":0}],"created":1773338614,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" asked"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" asked"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" about"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" about"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" called"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" called"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" retrieve"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" get"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" given"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" requires"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" string"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" described"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"In"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" query"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clearly"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specified"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clearly"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specifies"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" So"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" all"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" country"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" so"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" all"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" infer"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"able"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" present"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"According"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" infer"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"able"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" instructions"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"According"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" system"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" query"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" prompt"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" addressed"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" using"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" query"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" addressed"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" all"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" using"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" all"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" trigger"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specified"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" trigger"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" JSON"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" within"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specified"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" JSON"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tags"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" within"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" already"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" did"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tags"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" my"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" initial"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" already"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" made"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e{\""},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" my"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" previous"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_input"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e{\""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" {\""},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_input"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"}}\u003c/"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" {\""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e\n\n"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Now"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" simulation"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"}}\u003c/"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" there's"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e\n\n"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Now"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" from"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" from"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Function"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" given"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" C"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" This"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" means"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" C"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" has"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" This"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" been"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" seems"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" executed"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" returned"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" result"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" result"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" of"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"My"},"index":0}],"created":1773338615,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" role"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" indicating"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" helpful"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" assistant"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" After"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" degrees"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Celsius"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"In"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" multi"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-turn"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" conversation"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provide"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" continue"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" based"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" relevant"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" on"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" functions"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" result"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" needed"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fulfill"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" instructions"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" say"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Keep"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" However"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" your"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" was"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":";"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" please"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" get"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" do"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" make"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" your"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" verbose"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"!\"\n\n"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"So"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" has"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" now"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" now"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" use"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" ("},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" result"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" C"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" from"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":")."},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" So"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" answer"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" likely"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" directly"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fulfilled"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" system"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" returned"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" prompt"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" says"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" C"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"continue"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" relevant"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" assume"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" functions"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" means"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" advance"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" degrees"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Celsius"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" until"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" either"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" into"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fully"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fulfilled"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" or"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" concise"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" you"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" more"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Since"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" multi"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-turn"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\"\n\n"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" conversation"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Since"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" has"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" continue"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" been"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" advancing"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" retrieved"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" don't"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" was"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" any"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" more"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" functions"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" now"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" now"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provide"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" so"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" non"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"verbose"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fulfill"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" with"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" don't"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" another"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" prompt"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" also"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" unless"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" emphasizes"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" more"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" needed"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Keep"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" your"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" isn't"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" case"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" here"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":";"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" please"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Final"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" do"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" make"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" your"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" verbose"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"!\""},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" verbose"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" So"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Something"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" like"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" concise"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Additionally"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"°C"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\"\n\n"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" C"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" use"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" straightforward"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" exact"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" output"},"index":0}],"created":1773338616,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" but"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" from"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" present"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" but"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" make"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-friendly"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-friendly"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" way"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Response"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" perhaps"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" structure"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" confirming"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" After"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"My"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" handled"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" include"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" any"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" respond"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" more"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" with"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calls"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" unless"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" needed"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"The"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" weather"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Here"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Florence"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" no"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" more"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Italy"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calls"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" is"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" "},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" necessary"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"40"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"°C"},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Final"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"."},"index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} + data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0}],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" structure"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":\n"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Since"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" has"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" been"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" made"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" responded"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" output"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" result"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clearly"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Response"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" direct"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" e"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".g"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".,"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"°C"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\"\n\n"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" C"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" assume"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" means"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" degrees"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Celsius"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" use"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" standard"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" notation"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clarity"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Ensure"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" verbose"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"The"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" weather"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Florence"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Italy"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" is"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" "},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"40"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"°C"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"."},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"} - - data: {"choices":[],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9","usage":{"completion_tokens":11,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":466,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":332,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":332},"total_tokens":809}} + data: {"choices":[],"created":1773338617,"id":"26d931dd-a83e-46a8-a258-90c71a6a05d5_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9","usage":{"completion_tokens":11,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":380,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":332,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":332},"total_tokens":723}} data: [DONE] @@ -1664,4 +1492,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 264.74125ms + duration: 511.548584ms diff --git a/providertests/testdata/TestAzureThinking/azure-grok-3-mini/thinking.yaml b/providertests/testdata/TestAzureThinking/azure-grok-3-mini/thinking.yaml index d74c80036f3128dc7000199f1173f5599ba78d8d..104f16e29e95bc7c4ee4f83c5c10b750bcb4f439 100644 --- a/providertests/testdata/TestAzureThinking/azure-grok-3-mini/thinking.yaml +++ b/providertests/testdata/TestAzureThinking/azure-grok-3-mini/thinking.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -25,13 +25,13 @@ interactions: content_length: -1 uncompressed: true body: | - {"choices":[{"content_filter_results":{},"finish_reason":"tool_calls","index":0,"logprobs":null,"message":{"content":"","reasoning_content":"First, the user is asking about the weather in Florence, Italy. I have an available function called \"weather\" that can get weather information for a location.\n\nThe function description is: \"Get weather information for a location\". The parameters require a \"location\" which is a string describing the city.\n\nIn this query, the user has provided \"Florence, Italy\", which clearly specifies the city and country. This should be sufficient for the \"location\" parameter.\n\nAll required parameters are provided and inferable. The location is given as \"Florence, Italy\", so I can use that directly.\n\nI should call the function if it can advance the user's request. Here, calling the \"weather\" function with the location will directly provide the weather information, fulfilling the user's query.\n\nThe response format for function calls is specific: I need to use \u003cfunction_call\u003e tags with JSON format, like \u003cfunction_call\u003e{\"action\": \"function_name\", \"action_input\": {\"parameter\": \"argument\"}}\u003c/function_call\u003e.\n\nSo, for this, the action is \"weather\", and the action_input should have \"location\" set to \"Florence, Italy\".\n\nAfter calling the function, in a multi-turn conversation, I might need to handle the response, but the system prompt says to continue calling functions until the request is fulfilled. However, once I call this function, it should return the weather data, and I can then respond with that information. But the function call itself will handle retrieving the data.\n\nThe prompt says: \"You can call functions to retrieve information or perform actions.\" And \"trigger a function call in JSON format within \u003cfunction_call\u003e\u003c/function_call\u003e tags.\"\n\nI should not make my response verbose; keep it clear.\n\nSince this is the logical next step, I should just make the function call without additional text, unless needed. The prompt says: \"Keep your response to user clear; please do not make your response verbose!\" And \"If there is anything unclear, ask the user for clarification.\"\n\nIn this case, everything is clear, so no need to ask for clarification.\n\nMy response should only contain the function call in the specified format.\n\nFinally, format it as: \u003cfunction_call\u003e{\"action\": \"weather\", \"action_input\": {\"location\": \"Florence, Italy\"}}\u003c/function_call\u003e\n\nThat seems correct.","refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","call_id":null,"name":"weather"},"id":"call_78100819","type":"function"}]},"stop_reason":null}],"created":1761843020,"id":"26c2d70b-1783-4e27-bd1c-20e7eea8d924_sidecar","model":"grok-3-mini-high","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"usage":{"audio_prompt_tokens":0,"completion_tokens":27,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":464,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":288,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":288},"total_tokens":779}} + {"choices":[{"content_filter_results":{},"finish_reason":"tool_calls","index":0,"logprobs":null,"message":{"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.\n\nThe function description is: \"Get weather information for a location\". The parameters require a \"location\" which is a string describing the city.\n\nIn this query, the user has provided \"Florence, Italy\", which clearly specifies the city and country. This matches the required parameter for the \"weather\" function.\n\nAll required parameters are provided and inferable. The location is given as \"Florence, Italy\", so I can use that directly.\n\nAccording to the instructions, if the user's query can be addressed using an available function and all required parameters are provided, I should trigger a function call in the specified JSON format within \u003cfunction_call\u003e tags.\n\nThe format should be: \u003cfunction_call\u003e{\"action\": \"function_name\", \"action_input\": {\"parameter\": \"argument\"}}\u003c/function_call\u003e\n\nFor this case, the action is \"weather\", and the action_input should have the \"location\" parameter with the value \"Florence, Italy\".\n\nI should not make my response verbose. Keep it clear and concise. Since I'm calling a function, my response should only contain the function call if that's the next step.\n\nThe instructions say: \"You are only permitted to use the \u003cfunction_call\u003e tag in your response only if you have made the decision to call a function.\" And in this case, I have decided to call the function.\n\nAfter calling the function, in a multi-turn conversation, I might need to handle the response, but for now, the logical next step is to call the weather function.\n\nNo need to ask for clarification because the location is clear.\n\nSo, my response should be:\n\n\u003cfunction_call\u003e{\"action\": \"weather\", \"action_input\": {\"location\": \"Florence, Italy\"}}\u003c/function_call\u003e\n\nThat seems straightforward.","refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","call_id":null,"name":"weather"},"id":"call_39096519","type":"function"}]},"stop_reason":null}],"created":1773338606,"id":"4a702f64-f693-4d27-8806-c9a9907959ae_sidecar","model":"grok-3-mini-high","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"usage":{"audio_prompt_tokens":0,"completion_tokens":27,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":379,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":288,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":288},"total_tokens":694}} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 3.311565s + duration: 3.557213292s - id: 1 request: proto: HTTP/1.1 @@ -39,14 +39,14 @@ interactions: proto_minor: 1 content_length: 682 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_78100819","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_78100819","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"}]}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"call_39096519","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_39096519","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.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions method: POST response: @@ -56,10 +56,10 @@ interactions: content_length: -1 uncompressed: true body: | - {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"protected_material_code":{"filtered":false,"detected":false},"protected_material_text":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"finish_reason":"stop","index":0,"logprobs":null,"message":{"content":"The weather in Florence, Italy is 40°C.","reasoning_content":"First, the user asked: \"What's the weather in Florence, Italy?\" This directly matches the available function \"weather\", which requires a \"location\" parameter.\n\nI have already decided to call the function in my initial response, as shown in the conversation history. Now, the function call was made, and the response from the function is \"40 C\". I need to handle this in my response.\n\nAs a helpful assistant, after a function call, I should provide the information to the user in a clear and non-verbose way. The function call returned \"40 C\", which I assume means 40 degrees Celsius. I should present this information directly.\n\nThe system prompt says: \"Keep your response to user clear; please do not make your response verbose!\" So, I need to be concise.\n\nAlso, the prompt indicates that in multi-turn conversations, I should continue calling relevant functions if needed, but in this case, the function has been called and I have the result, so I can now respond with the information.\n\nThere's no need for another function call here because the query is fulfilled with the weather information.\n\nMy response should simply state the weather based on the function's output.\n\nFinal response structure: Since the function call has been executed and I have the result, I should output the weather information clearly.","refusal":null,"role":"assistant","tool_calls":null},"stop_reason":null}],"created":1761843024,"id":"3b2bc93e-a7e0-4852-924b-9482b44ec310_sidecar","model":"grok-3-mini-high","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"usage":{"audio_prompt_tokens":0,"completion_tokens":11,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":262,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":332,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":332},"total_tokens":605}} + {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"protected_material_code":{"filtered":false,"detected":false},"protected_material_text":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"finish_reason":"stop","index":0,"logprobs":null,"message":{"content":"The weather in Florence, Italy, is currently 40°C.","reasoning_content":"First, the user asked: \"What's the weather in Florence, Italy?\" This directly matches the available function \"weather\", which requires a \"location\" parameter.\n\nThe function call I made was: \u003cfunction_call\u003e{\"action\": \"weather\", \"action_input\": {\"location\": \"Florence, Italy\"}}\u003c/function_call\u003e\n\nNow, the system has responded with the function output: \"Function: 40 C\". I assume this means the weather function returned that the temperature is 40 degrees Celsius.\n\nMy role is to be a helpful assistant. After calling a function, I should provide a clear, non-verbose response to the user based on the function's output.\n\nThe user's request is now fulfilled because I called the weather function, and I have the result. I don't need to call any more functions unless there's more to the query.\n\nResponse guidelines:\n- Keep the response clear and not verbose.\n- If I've called a function and have the result, I should present it to the user.\n- Only use \u003cfunction_call\u003e tags when deciding to call a function. In this case, I've already called it, and now I'm responding with the result.\n\nSo, I should now give a straightforward answer to the user based on the function's output.\n\nFunction output is \"40 C\", which I interpret as 40 degrees Celsius. I should make this user-friendly.\n\nFinal response: Inform the user about the weather in Florence, Italy, based on the function call result.","refusal":null,"role":"assistant","tool_calls":null},"stop_reason":null}],"created":1773338610,"id":"69b00015-5cfe-4d69-b451-da44ba17c1f9_sidecar","model":"grok-3-mini-high","object":"chat.completion","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}],"usage":{"audio_prompt_tokens":0,"completion_tokens":13,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":293,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":332,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":332},"total_tokens":638}} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.801076291s + duration: 2.248014792s diff --git a/providertests/testdata/TestBedrockBasicAuth/simple.yaml b/providertests/testdata/TestBedrockBasicAuth/simple.yaml index 78bdadacffbc985d70f5cc5338578b5cb4b4d2f4..86023f350ea335bc422a7e5cba3e6d9d35234fa0 100644 --- a/providertests/testdata/TestBedrockBasicAuth/simple.yaml +++ b/providertests/testdata/TestBedrockBasicAuth/simple.yaml @@ -15,18 +15,18 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-sonnet-20240229-v1%3A0/invoke + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-haiku-4-5-20251001-v1%3A0/invoke method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 248 - body: '{"id":"msg_bdrk_01SLPR8DXPtQG4ryAsmuQrA9","type":"message","role":"assistant","model":"claude-3-sonnet-20240229","content":[{"type":"text","text":"Olá!"}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":16,"output_tokens":7}}' + content_length: 423 + body: "{\"model\":\"claude-haiku-4-5-20251001\",\"id\":\"msg_bdrk_013JdBa81deAqHUw1D4yCEyL\",\"type\":\"message\",\"role\":\"assistant\",\"content\":[{\"type\":\"text\",\"text\":\"Olá! \U0001F44B\\n\\nHow can I help you today?\"}],\"stop_reason\":\"end_turn\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":16,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"cache_creation\":{\"ephemeral_5m_input_tokens\":0,\"ephemeral_1h_input_tokens\":0},\"output_tokens\":18}}" headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 3.764905916s + duration: 1.784823583s diff --git a/providertests/testdata/TestBedrockBasicAuth/simple_streaming.yaml b/providertests/testdata/TestBedrockBasicAuth/simple_streaming.yaml index 4675750353b249768558b72e2a13447ebb40d428..8aa30071a446117857f68309ebd57a4bc28ca3c2 100644 --- a/providertests/testdata/TestBedrockBasicAuth/simple_streaming.yaml +++ b/providertests/testdata/TestBedrockBasicAuth/simple_streaming.yaml @@ -15,8 +15,8 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-sonnet-20240229-v1%3A0/invoke-with-response-stream + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-haiku-4-5-20251001-v1%3A0/invoke-with-response-stream method: POST response: proto: HTTP/2.0 @@ -24,53 +24,61 @@ interactions: proto_minor: 0 content_length: -1 body: !!binary | - AAABvQAAAEunJ1hxCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG + AAACkQAAAEslgujaCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs - SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWFXUWlPaUp0YzJkZl - ltUnlhMTh3TVVjM1ZUWXlaMU4zYWxwU1ptMVVTMkpDWjNGQmExSWlMQ0owZVhCbElqb2li - V1Z6YzJGblpTSXNJbkp2YkdVaU9pSmhjM05wYzNSaGJuUWlMQ0p0YjJSbGJDSTZJbU5zWV - hWa1pTMHpMWE52Ym01bGRDMHlNREkwTURJeU9TSXNJbU52Ym5SbGJuUWlPbHRkTENKemRH - OXdYM0psWVhOdmJpSTZiblZzYkN3aWMzUnZjRjl6WlhGMVpXNWpaU0k2Ym5Wc2JDd2lkWE - 5oWjJVaU9uc2lhVzV3ZFhSZmRHOXJaVzV6SWpveE5pd2liM1YwY0hWMFgzUnZhMlZ1Y3lJ - Nk1uMTlmUT09IiwicCI6ImFiYyJ9vnwv4QAAAPgAAABL/Ghc7Qs6ZXZlbnQtdHlwZQcABW - NodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUH - AAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5emRHRn - lkQ0lzSW1sdVpHVjRJam93TENKamIyNTBaVzUwWDJKc2IyTnJJanA3SW5SNWNHVWlPaUow - WlhoMElpd2lkR1Y0ZENJNklpSjlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dX - Z3eHl6In2rrhIPAAAA+gAAAEuGqA+NCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQt - dHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcy - I6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElq - b3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaU - pQYkNKOWZRPT0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQiJ9FHa6UgAA - AQ0AAABLt+BQZQs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaW - NhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElq - b2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0 - k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lMRG9TSjlmUT09Iiwi - cCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUFFSU1RVIn - 3UdODmAAAA9AAAAEs5mLHsCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcA - EGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5Sj - BlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0pr - Wld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUloSW4xOS - IsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5eiJ9l8ofGQAAANMAAABLSnlC+As6 - ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDT - ptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRG - OWliRzlqYTE5emRHOXdJaXdpYVc1a1pYZ2lPakI5IiwicCI6ImFiY2RlZmdoaWprbG1ub3 - BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUFFSU1RVVlcifUu+MSwAAAEuAAAASzGBBbEL - OmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg - 06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pYldWemMyRm5a - VjlrWld4MFlTSXNJbVJsYkhSaElqcDdJbk4wYjNCZmNtVmhjMjl1SWpvaVpXNWtYM1IxY2 - 00aUxDSnpkRzl3WDNObGNYVmxibU5sSWpwdWRXeHNmU3dpZFhOaFoyVWlPbnNpYjNWMGNI - VjBYM1J2YTJWdWN5STZOMzE5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QU - JDREVGR0hJSktMTU5PUFFSU1RVViJ9tMfCKgAAAVMAAABLMMMhzws6ZXZlbnQtdHlwZQcA - BWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cG - UHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2liV1Z6YzJGblpWOXpkRzl3SWl3aVlX - MWhlbTl1TFdKbFpISnZZMnN0YVc1MmIyTmhkR2x2YmsxbGRISnBZM01pT25zaWFXNXdkWF - JVYjJ0bGJrTnZkVzUwSWpveE5pd2liM1YwY0hWMFZHOXJaVzVEYjNWdWRDSTZOeXdpYVc1 - MmIyTmhkR2x2Ymt4aGRHVnVZM2tpT2pVMk5Dd2labWx5YzNSQ2VYUmxUR0YwWlc1amVTST - ZOVFEyZlgwPSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQyJ9KKxn3Q== + SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWJXOWtaV3dpT2lKam + JHRjFaR1V0YUdGcGEzVXROQzAxTFRJd01qVXhNREF4SWl3aWFXUWlPaUp0YzJkZlltUnlh + MTh3TVZNNFl6VXpWMWh4TjJwS1JUbHVTbTUxVjFaNmRXSWlMQ0owZVhCbElqb2liV1Z6Yz + JGblpTSXNJbkp2YkdVaU9pSmhjM05wYzNSaGJuUWlMQ0pqYjI1MFpXNTBJanBiWFN3aWMz + UnZjRjl5WldGemIyNGlPbTUxYkd3c0luTjBiM0JmYzJWeGRXVnVZMlVpT201MWJHd3NJbl + Z6WVdkbElqcDdJbWx1Y0hWMFgzUnZhMlZ1Y3lJNk1UWXNJbU5oWTJobFgyTnlaV0YwYVc5 + dVgybHVjSFYwWDNSdmEyVnVjeUk2TUN3aVkyRmphR1ZmY21WaFpGOXBibkIxZEY5MGIydG + xibk1pT2pBc0ltTmhZMmhsWDJOeVpXRjBhVzl1SWpwN0ltVndhR1Z0WlhKaGJGODFiVjlw + Ym5CMWRGOTBiMnRsYm5NaU9qQXNJbVZ3YUdWdFpYSmhiRjh4YUY5cGJuQjFkRjkwYjJ0bG + JuTWlPakI5TENKdmRYUndkWFJmZEc5clpXNXpJam8xZlgxOSIsInAiOiJhYmNkZWZnaGlq + a2xtbm9wcXJzdHV2d3h5ekFCQ0RFIn1vBReIAAAA+QAAAEvBCHVdCzpldmVudC10eXBlBw + AFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlw + ZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTl6ZE + dGeWRDSXNJbWx1WkdWNElqb3dMQ0pqYjI1MFpXNTBYMkpzYjJOcklqcDdJblI1Y0dVaU9p + SjBaWGgwSWl3aWRHVjRkQ0k2SWlKOWZRPT0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3 + R1dnd4eXpBIn0jfX4HAAAA5gAAAEsjuHUOCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRl + bnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieX + RlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdW + NElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUW + lPaUpQYk1PaElTQWlmWDA9IiwicCI6ImFiY2QifQiHWjkAAAEEAAAAS7rwMhQLOmV2ZW50 + LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2 + FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5 + amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVj + RkRjlrWld4MFlTSXNJblJsZUhRaU9pTHduNUdMSW4xOSIsInAiOiJhYmNkZWZnaGlqa2xt + bm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTCJ9QGcahgAAAO8AAABLLqgXfws6ZXZlbnQtdH + lwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdl + LXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYT + E5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRG + OWtaV3gwWVNJc0luUmxlSFFpT2lKY2JseHVTRzkzSW4xOSIsInAiOiJhYmNkZWZnaGlqa2 + xtIn3xmXDJAAABEwAAAEtoMHmGCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlw + ZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6Im + V5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dM + Q0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnWT + JGdUlFa2dhR1ZzY0NCNWIzVWdkRzlrWVhrL0luMTkiLCJwIjoiYWJjZGVmZ2hpamtsbW5v + cHFyc3R1dnd4eXpBQkMifflTTQ4AAACrAAAAS4Pb6fYLOmV2ZW50LXR5cGUHAAVjaHVuaw + 06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZl + bnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOXpkRzl3SWl3aW + FXNWtaWGdpT2pCOSIsInAiOiJhYmNkZWZnaGkifXdmSW8AAAELAAAASzigpcULOmV2ZW50 + LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2 + FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pYldWemMyRm5aVjlrWld4 + MFlTSXNJbVJsYkhSaElqcDdJbk4wYjNCZmNtVmhjMjl1SWpvaVpXNWtYM1IxY200aUxDSn + pkRzl3WDNObGNYVmxibU5sSWpwdWRXeHNmU3dpZFhOaFoyVWlPbnNpYjNWMGNIVjBYM1J2 + YTJWdWN5STZNVGg5ZlE9PSIsInAiOiJhYmNkZWZnaGkifVU9BEkAAAFKAAAAS10z1DwLOm + V2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06 + bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pYldWemMyRm5aVj + l6ZEc5d0lpd2lZVzFoZW05dUxXSmxaSEp2WTJzdGFXNTJiMk5oZEdsdmJrMWxkSEpwWTNN + aU9uc2lhVzV3ZFhSVWIydGxia052ZFc1MElqb3hOaXdpYjNWMGNIVjBWRzlyWlc1RGIzVn + VkQ0k2TVRnc0ltbHVkbTlqWVhScGIyNU1ZWFJsYm1ONUlqb3hOakE0TENKbWFYSnpkRUo1 + ZEdWTVlYUmxibU41SWpveE5ETTRmWDA9IiwicCI6ImFiY2RlZmdoaWprbG1ub3AifTAgc8 + 4= headers: Content-Type: - application/vnd.amazon.eventstream status: 200 OK code: 200 - duration: 693.876083ms + duration: 1.591722083s diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-haiku/simple_streaming.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-haiku/simple_streaming.yaml deleted file mode 100644 index 0805a69e5134995e5b41e18df355e66aec7cf0eb..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-haiku/simple_streaming.yaml +++ /dev/null @@ -1,69 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 211 - host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Say hi in Portuguese","type":"text"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"anthropic_version":"bedrock-2023-05-31"}' - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - Anthropic/Go 1.13.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-haiku-20240307-v1%3A0/invoke-with-response-stream - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: !!binary | - AAAB3AAAAEsDdQaMCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG - xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs - SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWFXUWlPaUp0YzJkZl - ltUnlhMTh3TVVaamNqVnRXbk5tY0VGMU1WRkVZbE50Um5Wb01uZ2lMQ0owZVhCbElqb2li - V1Z6YzJGblpTSXNJbkp2YkdVaU9pSmhjM05wYzNSaGJuUWlMQ0p0YjJSbGJDSTZJbU5zWV - hWa1pTMHpMV2hoYVd0MUxUSXdNalF3TXpBM0lpd2lZMjl1ZEdWdWRDSTZXMTBzSW5OMGIz - QmZjbVZoYzI5dUlqcHVkV3hzTENKemRHOXdYM05sY1hWbGJtTmxJanB1ZFd4c0xDSjFjMk - ZuWlNJNmV5SnBibkIxZEY5MGIydGxibk1pT2pFMkxDSnZkWFJ3ZFhSZmRHOXJaVzV6SWpv - MWZYMTkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0wiff - MMltsAAAEVAAAAS+dwjCYLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQ - YXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMG - VYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOXpkR0Z5ZENJc0ltbHVaR1Y0SWpvd0xDSmpi - MjUwWlc1MFgySnNiMk5ySWpwN0luUjVjR1VpT2lKMFpYaDBJaXdpZEdWNGRDSTZJaUo5Zl - E9PSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE1OT1BR - UlNUVVZXWFlaMDEyIn3xsEfkAAABDwAAAEvNIAMFCzpldmVudC10eXBlBwAFY2h1bmsNOm - NvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50 - eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbW - x1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5S - bGVIUWlPaUpQYk1PaElTSjlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eH - l6QUJDREVGR0hJSktMTU5PUFFSUyJ9ufbmngAAANIAAABLdxlrSAs6ZXZlbnQtdHlwZQcA - BWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cG - UHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5emRH - OXdJaXdpYVc1a1pYZ2lPakI5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QU - JDREVGR0hJSktMTU5PUFFSU1RVViJ9nolvDwAAASIAAABL9HHosAs6ZXZlbnQtdHlwZQcA - BWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cG - UHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2liV1Z6YzJGblpWOWtaV3gwWVNJc0lt - UmxiSFJoSWpwN0luTjBiM0JmY21WaGMyOXVJam9pWlc1a1gzUjFjbTRpTENKemRHOXdYM0 - 5sY1hWbGJtTmxJanB1ZFd4c2ZTd2lkWE5oWjJVaU9uc2liM1YwY0hWMFgzUnZhMlZ1Y3lJ - Nk4zMTkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKIn3PqX - VIAAABcgAAAEvMYid7CzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFw - cGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWE - JsSWpvaWJXVnpjMkZuWlY5emRHOXdJaXdpWVcxaGVtOXVMV0psWkhKdlkyc3RhVzUyYjJO - aGRHbHZiazFsZEhKcFkzTWlPbnNpYVc1d2RYUlViMnRsYmtOdmRXNTBJam94Tml3aWIzVj - BjSFYwVkc5clpXNURiM1Z1ZENJNk55d2lhVzUyYjJOaGRHbHZia3hoZEdWdVkza2lPalEx - TVN3aVptbHljM1JDZVhSbFRHRjBaVzVqZVNJNk5ETXpmWDA9IiwicCI6ImFiY2RlZmdoaW - prbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVowMTIzNDU2NyJ9 - erLFww== - headers: - Content-Type: - - application/vnd.amazon.eventstream - status: 200 OK - code: 200 - duration: 586.543542ms diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-haiku/tool_streaming.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-haiku/tool_streaming.yaml deleted file mode 100644 index 0839eabc7b4738197c891346001c974626c0a462..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-haiku/tool_streaming.yaml +++ /dev/null @@ -1,166 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 468 - host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - Anthropic/Go 1.13.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-haiku-20240307-v1%3A0/invoke-with-response-stream - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: !!binary | - AAAB3QAAAEs+FS88CzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG - xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs - SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWFXUWlPaUp0YzJkZl - ltUnlhMTh3TVRWYWIycHdPSFZDU2tOV2Mxb3lWVTFrVUhjNVZIa2lMQ0owZVhCbElqb2li - V1Z6YzJGblpTSXNJbkp2YkdVaU9pSmhjM05wYzNSaGJuUWlMQ0p0YjJSbGJDSTZJbU5zWV - hWa1pTMHpMV2hoYVd0MUxUSXdNalF3TXpBM0lpd2lZMjl1ZEdWdWRDSTZXMTBzSW5OMGIz - QmZjbVZoYzI5dUlqcHVkV3hzTENKemRHOXdYM05sY1hWbGJtTmxJanB1ZFd4c0xDSjFjMk - ZuWlNJNmV5SnBibkIxZEY5MGIydGxibk1pT2pNME5Td2liM1YwY0hWMFgzUnZhMlZ1Y3lJ - Nk1YMTlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJIn - 2LKU8sAAABbAAAAEsTsg6YCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcA - EGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5Sj - BlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTl6ZEdGeWRDSXNJbWx1WkdWNElqb3dMQ0pq - YjI1MFpXNTBYMkpzYjJOcklqcDdJblI1Y0dVaU9pSjBiMjlzWDNWelpTSXNJbWxrSWpvaW - RHOXZiSFZmWW1SeWExOHdNVE5OY0RSSFVFaENkWGREUzBOblNFd3lZVVpTVWtRaUxDSnVZ - VzFsSWpvaWQyVmhkR2hsY2lJc0ltbHVjSFYwSWpwN2ZYMTkiLCJwIjoiYWJjZGVmZ2hpam - tsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWjAxMjM0NSJ97GfC - bAAAAQkAAABLQmD2pQs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcH - BsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhC - bElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeD - BZU0k2ZXlKMGVYQmxJam9pYVc1d2RYUmZhbk52Ymw5a1pXeDBZU0lzSW5CaGNuUnBZV3hm - YW5OdmJpSTZJaUo5ZlE9PSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekEifd - tArrsAAAEtAAAAS3Yhf2ELOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQ - YXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMG - VYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmta - V3gwWVNJNmV5SjBlWEJsSWpvaWFXNXdkWFJmYW5OdmJsOWtaV3gwWVNJc0luQmhjblJwWV - d4ZmFuTnZiaUk2SW50Y0lteHZZMkYwYVNKOWZRPT0iLCJwIjoiYWJjZGVmZ2hpamtsbW5v - cHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZIn2Fq0KzAAABJgAAAEsB8U - 5wCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pz - b24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1 - Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhC - bElqb2lhVzV3ZFhSZmFuTnZibDlrWld4MFlTSXNJbkJoY25ScFlXeGZhbk52YmlJNkltOX - VYQ0k2SUNKOWZRPT0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZH - SElKS0xNTk9QUVJTVFVWIn0r2XsOAAABJgAAAEsB8U5wCzpldmVudC10eXBlBwAFY2h1bm - sNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2 - ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSX - NJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lhVzV3ZFhSZmFuTnZibDlr - Wld4MFlTSXNJbkJoY25ScFlXeGZhbk52YmlJNklsd2lSbXh2Y21VaWZYMD0iLCJwIjoiYW - JjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFVWIn0AG9ad - AAABIwAAAEvJEcEACzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG - xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs - SWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MF - lTSTZleUowZVhCbElqb2lhVzV3ZFhSZmFuTnZibDlrWld4MFlTSXNJbkJoY25ScFlXeGZh - bk52YmlJNkltNWpaU3dnU1hSaGJIbGNJbjBpZlgwPSIsInAiOiJhYmNkZWZnaGlqa2xtbm - 9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLIn3xhQpKAAAApgAAAEt7Sy1HCzpldmVudC10eXBl - BwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdH - lwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTl6 - ZEc5d0lpd2lhVzVrWlhnaU9qQjkiLCJwIjoiYWJjZCJ99ip76AAAASUAAABLRlE0oAs6ZX - ZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTpt - ZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2liV1Z6YzJGblpWOW - taV3gwWVNJc0ltUmxiSFJoSWpwN0luTjBiM0JmY21WaGMyOXVJam9pZEc5dmJGOTFjMlVp - TENKemRHOXdYM05sY1hWbGJtTmxJanB1ZFd4c2ZTd2lkWE5oWjJVaU9uc2liM1YwY0hWMF - gzUnZhMlZ1Y3lJNk5UTjlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6 - QUJDREVGR0hJIn3bFtXeAAABXgAAAEvIU+V+CzpldmVudC10eXBlBwAFY2h1bmsNOmNvbn - RlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJi - eXRlcyI6ImV5SjBlWEJsSWpvaWJXVnpjMkZuWlY5emRHOXdJaXdpWVcxaGVtOXVMV0psWk - hKdlkyc3RhVzUyYjJOaGRHbHZiazFsZEhKcFkzTWlPbnNpYVc1d2RYUlViMnRsYmtOdmRX - NTBJam96TkRVc0ltOTFkSEIxZEZSdmEyVnVRMjkxYm5RaU9qTTFMQ0pwYm5adlkyRjBhVz - l1VEdGMFpXNWplU0k2T1RJekxDSm1hWEp6ZEVKNWRHVk1ZWFJsYm1ONUlqbzBPVEo5ZlE9 - PSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUoifRn9cj4= - headers: - Content-Type: - - application/vnd.amazon.eventstream - status: 200 OK - code: 200 - duration: 645.980625ms -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 765 - host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"id":"toolu_bdrk_013Mp4GPHBuwCKCgHL2aFRRD","input":{"location":"Florence, Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_bdrk_013Mp4GPHBuwCKCgHL2aFRRD","content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - Anthropic/Go 1.13.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-haiku-20240307-v1%3A0/invoke-with-response-stream - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: !!binary | - AAAB8QAAAEs6JO05CzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG - xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs - SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWFXUWlPaUp0YzJkZl - ltUnlhMTh3TVVzNE5WSm5aRUpMWkRGT1VHbHpWVmRXTm1aNmFUZ2lMQ0owZVhCbElqb2li - V1Z6YzJGblpTSXNJbkp2YkdVaU9pSmhjM05wYzNSaGJuUWlMQ0p0YjJSbGJDSTZJbU5zWV - hWa1pTMHpMV2hoYVd0MUxUSXdNalF3TXpBM0lpd2lZMjl1ZEdWdWRDSTZXMTBzSW5OMGIz - QmZjbVZoYzI5dUlqcHVkV3hzTENKemRHOXdYM05sY1hWbGJtTmxJanB1ZFd4c0xDSjFjMk - ZuWlNJNmV5SnBibkIxZEY5MGIydGxibk1pT2pReE15d2liM1YwY0hWMFgzUnZhMlZ1Y3lJ - Nk5IMTlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSk - tMTU5PUFFSU1RVVldYWVowMTIifVzckXoAAAELAAAASzigpcULOmV2ZW50LXR5cGUHAAVj - aHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBw - AFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOXpkR0Z5 - ZENJc0ltbHVaR1Y0SWpvd0xDSmpiMjUwWlc1MFgySnNiMk5ySWpwN0luUjVjR1VpT2lKMF - pYaDBJaXdpZEdWNGRDSTZJaUo5ZlE9PSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2 - d3h5ekFCQ0RFRkdISUpLTE1OT1BRUlMifbFNJI4AAADwAAAAS8wYFywLOmV2ZW50LXR5cG - UHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10 - eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOW - taV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlr - Wld4MFlTSXNJblJsZUhRaU9pSlVhR1VnZDJWaGRHaGxjaUJwYmlKOWZRPT0iLCJwIjoiYW - IifU661ToAAAEeAAAAS5CgvTcLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBl - BwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZX - lKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xD - SmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSWdSbX - h2Y21WdVkyVXNJRWwwWVd4NUlHbHpJRFF3SW4xOSIsInAiOiJhYmNkZWZnaGlqa2xtbm9w - cXJzdHV2d3h5ekFCQ0RFRkdISUpLTE1OIn0m+h/FAAAA9QAAAEsE+JhcCzpldmVudC10eX - BlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2Ut - dHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMT - lrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5 - a1pXeDBZU0lzSW5SbGVIUWlPaUlnWkdWbmNtVmxjeUJEWld4emFYVnpMaUo5ZlE9PSIsIn - AiOiJhYmMifcY9TyoAAADKAAAASyeJtwsLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVu - dC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dG - VzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOXpkRzl3SWl3aWFXNWtaWGdp - T2pCOSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE1OIn - 1nPrWkAAABKwAAAEv5YYrBCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcA - EGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5Sj - BlWEJsSWpvaWJXVnpjMkZuWlY5a1pXeDBZU0lzSW1SbGJIUmhJanA3SW5OMGIzQmZjbVZo - YzI5dUlqb2laVzVrWDNSMWNtNGlMQ0p6ZEc5d1gzTmxjWFZsYm1ObElqcHVkV3hzZlN3aW - RYTmhaMlVpT25zaWIzVjBjSFYwWDNSdmEyVnVjeUk2TVRoOWZRPT0iLCJwIjoiYWJjZGVm - Z2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk8ifXy/aY0AAAFeAAAAS8hT5X - 4LOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNv - bg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pYldWemMyRm - 5aVjl6ZEc5d0lpd2lZVzFoZW05dUxXSmxaSEp2WTJzdGFXNTJiMk5oZEdsdmJrMWxkSEpw - WTNNaU9uc2lhVzV3ZFhSVWIydGxia052ZFc1MElqbzBNVE1zSW05MWRIQjFkRlJ2YTJWdV - EyOTFiblFpT2pFNExDSnBiblp2WTJGMGFXOXVUR0YwWlc1amVTSTZOalF3TENKbWFYSnpk - RUo1ZEdWTVlYUmxibU41SWpvME56QjlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3Bxcn - N0dXZ3eHl6QUJDREVGR0hJSiJ9pKyp0g== - headers: - Content-Type: - - application/vnd.amazon.eventstream - status: 200 OK - code: 200 - duration: 626.53225ms diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-opus/simple_streaming.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-opus/simple_streaming.yaml deleted file mode 100644 index a0f192f3100fb7bf037a7d82ca71b521ba16d810..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-opus/simple_streaming.yaml +++ /dev/null @@ -1,67 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 211 - host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Say hi in Portuguese","type":"text"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"anthropic_version":"bedrock-2023-05-31"}' - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - Anthropic/Go 1.13.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-opus-20240229-v1%3A0/invoke-with-response-stream - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: !!binary | - AAAB5AAAAEuSJPXLCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG - xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs - SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWFXUWlPaUp0YzJkZl - ltUnlhMTh3TVZaVFUwRm1NWEUwVG5WdFMyMDRSRkp5Wm5KQ1NGQWlMQ0owZVhCbElqb2li - V1Z6YzJGblpTSXNJbkp2YkdVaU9pSmhjM05wYzNSaGJuUWlMQ0p0YjJSbGJDSTZJbU5zWV - hWa1pTMHpMVzl3ZFhNdE1qQXlOREF5TWpraUxDSmpiMjUwWlc1MElqcGJYU3dpYzNSdmNG - OXlaV0Z6YjI0aU9tNTFiR3dzSW5OMGIzQmZjMlZ4ZFdWdVkyVWlPbTUxYkd3c0luVnpZV2 - RsSWpwN0ltbHVjSFYwWDNSdmEyVnVjeUk2TVRZc0ltOTFkSEIxZEY5MGIydGxibk1pT2pS - OWZYMD0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk - 9QUVJTVCJ9nCryKgAAAQoAAABLBcCMdQs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50 - LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZX - MiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5emRHRnlkQ0lzSW1sdVpHVjRJ - am93TENKamIyNTBaVzUwWDJKc2IyTnJJanA3SW5SNWNHVWlPaUowWlhoMElpd2lkR1Y0ZE - NJNklpSjlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJ - SktMTU5PUFFSIn1f3S6rAAAA6AAAAEuciMtvCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbn - RlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJi - eXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1Wk - dWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVI - UWlPaUpQYk1PaElTSjlmUT09IiwicCI6ImFiY2RlZiJ9Sl5pmgAAAM0AAABLlalrGws6ZX - ZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTpt - ZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOW - liRzlqYTE5emRHOXdJaXdpYVc1a1pYZ2lPakI5IiwicCI6ImFiY2RlZmdoaWprbG1ub3Bx - cnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUFEifWCrdTQAAAErAAAAS/lhisELOmV2ZW50LX - R5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2Fn - ZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pYldWemMyRm5aVjlrWld4MF - lTSXNJbVJsYkhSaElqcDdJbk4wYjNCZmNtVmhjMjl1SWpvaVpXNWtYM1IxY200aUxDSnpk - Rzl3WDNObGNYVmxibU5sSWpwdWRXeHNmU3dpZFhOaFoyVWlPbnNpYjNWMGNIVjBYM1J2YT - JWdWN5STZOMzE5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJ - SktMTU5PUFFSUyJ944scGQAAATsAAABLmYEdQws6ZXZlbnQtdHlwZQcABWNodW5rDTpjb2 - 50ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsi - Ynl0ZXMiOiJleUowZVhCbElqb2liV1Z6YzJGblpWOXpkRzl3SWl3aVlXMWhlbTl1TFdKbF - pISnZZMnN0YVc1MmIyTmhkR2x2YmsxbGRISnBZM01pT25zaWFXNXdkWFJVYjJ0bGJrTnZk - VzUwSWpveE5pd2liM1YwY0hWMFZHOXJaVzVEYjNWdWRDSTZOeXdpYVc1MmIyTmhkR2x2Ym - t4aGRHVnVZM2tpT2pFd01qZ3NJbVpwY25OMFFubDBaVXhoZEdWdVkza2lPamt6TUgxOSIs - InAiOiJhYmNkZSJ9RFHKLg== - headers: - Content-Type: - - application/vnd.amazon.eventstream - status: 200 OK - code: 200 - duration: 1.078504542s diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-opus/tool.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-opus/tool.yaml deleted file mode 100644 index d12fa4ec2ac000ba77f90414f28d38f0e6943636..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-opus/tool.yaml +++ /dev/null @@ -1,61 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 468 - host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - Anthropic/Go 1.13.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-opus-20240229-v1%3A0/invoke - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 815 - body: '{"id":"msg_bdrk_01CEbaoBED7NgBWRnBAajncY","type":"message","role":"assistant","model":"claude-3-opus-20240229","content":[{"type":"text","text":"\nThe weather tool is relevant for answering this request, as the user is asking for weather information for a specific location.\n\nThe weather tool requires one parameter:\n- location (string): This is provided directly by the user as \"Florence, Italy\"\n\nSince the required location parameter is present, we can proceed with calling the weather tool to get the current weather for Florence, Italy. No other tools are needed.\n"},{"type":"tool_use","id":"toolu_bdrk_011Dt2H7KtvCCYp7J4peboKa","name":"weather","input":{"location":"Florence, Italy"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":614,"output_tokens":143}}' - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: 7.551935583s -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 1263 - host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"text":"\u003cthinking\u003e\nThe weather tool is relevant for answering this request, as the user is asking for weather information for a specific location.\n\nThe weather tool requires one parameter:\n- location (string): This is provided directly by the user as \"Florence, Italy\"\n\nSince the required location parameter is present, we can proceed with calling the weather tool to get the current weather for Florence, Italy. No other tools are needed.\n\u003c/thinking\u003e","type":"text"},{"id":"toolu_bdrk_011Dt2H7KtvCCYp7J4peboKa","input":{"location":"Florence, Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_bdrk_011Dt2H7KtvCCYp7J4peboKa","content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - Anthropic/Go 1.13.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-opus-20240229-v1%3A0/invoke - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 716 - body: '{"id":"msg_bdrk_01MqUoomGzEKtaeBmJgxooMM","type":"message","role":"assistant","model":"claude-3-opus-20240229","content":[{"type":"text","text":"With a temperature of 40°C (104°F), Florence is currently experiencing very hot weather and a heatwave. To summarize:\n- The current temperature in Florence, Italy is 40°C (104°F) \n- This is considered very hot and indicates a heatwave is occurring\n\nIf you will be in Florence, be sure to stay hydrated, avoid strenuous outdoor activity during the hottest parts of the day, and seek out air conditioning when possible. Let me know if you need any other information!"}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":771,"output_tokens":117}}' - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: 6.374604291s diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-opus/tool_streaming.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-opus/tool_streaming.yaml deleted file mode 100644 index e42c814748f3772b4cf3f83994756a46dc0655e7..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-opus/tool_streaming.yaml +++ /dev/null @@ -1,507 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 468 - host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - Anthropic/Go 1.13.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-opus-20240229-v1%3A0/invoke-with-response-stream - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: !!binary | - AAAB8wAAAEtA5L5ZCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG - xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs - SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWFXUWlPaUp0YzJkZl - ltUnlhMTh3TVRneldtOW5RV2xpVldkaWRVTnBUR2hhTW5remRqWWlMQ0owZVhCbElqb2li - V1Z6YzJGblpTSXNJbkp2YkdVaU9pSmhjM05wYzNSaGJuUWlMQ0p0YjJSbGJDSTZJbU5zWV - hWa1pTMHpMVzl3ZFhNdE1qQXlOREF5TWpraUxDSmpiMjUwWlc1MElqcGJYU3dpYzNSdmNG - OXlaV0Z6YjI0aU9tNTFiR3dzSW5OMGIzQmZjMlZ4ZFdWdVkyVWlPbTUxYkd3c0luVnpZV2 - RsSWpwN0ltbHVjSFYwWDNSdmEyVnVjeUk2TmpFMExDSnZkWFJ3ZFhSZmRHOXJaVzV6SWpv - MWZYMTkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk - 9QUVJTVFVWV1hZWjAxMjM0NTY3OCJ9IfUzWgAAAOgAAABLnIjLbws6ZXZlbnQtdHlwZQcA - BWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cG - UHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5emRH - RnlkQ0lzSW1sdVpHVjRJam93TENKamIyNTBaVzUwWDJKc2IyTnJJanA3SW5SNWNHVWlPaU - owWlhoMElpd2lkR1Y0ZENJNklpSjlmUT09IiwicCI6ImFiY2RlZmdoaWoifZlWRnsAAAEd - AAAAS9cAx+cLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYX - Rpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9p - WTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNm - V5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSThkR2hwYm10cGJtYytY - RzVVYnlCblpYUWdkR2hsSUhkbFlYUm9aWElpZlgwPSIsInAiOiJhYmNkZWZnaGlqa2xtbm - 9wcXJzdHV2d3h5ekEifY6sG7YAAAETAAAAS2gweYYLOmV2ZW50LXR5cGUHAAVjaHVuaw06 - Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbn - R7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0lt - bHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJbl - JsZUhRaU9pSWdabTl5WldOaGMzUWlmWDA9IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0 - dXZ3eHl6QUJDREVGR0hJSktMTU5PUFFSUyJ9WBzdsgAAARAAAABLL5ADVgs6ZXZlbnQtdH - lwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdl - LXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYT - E5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRG - OWtaV3gwWVNJc0luUmxlSFFpT2lJZ1ptOXlJRVpzYjNKbGJtTmxMQ0JKZEdGc2VTd2lmWD - A9IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6In2OVPAEAAAA/QAAAEs0iNOd - CzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb2 - 4NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1 - ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbE - lqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnU1NCM2IzVnNaQ0J1WldWa0lIUnZJ - SFZ6WlNKOWZRPT0iLCJwIjoiYWJjZGVmZyJ94AtzbQAAAPwAAABLCej6LQs6ZXZlbnQtdH - lwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdl - LXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYT - E5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRG - OWtaV3gwWVNJc0luUmxlSFFpT2lJZ2RHaGxJbjE5IiwicCI6ImFiY2RlZmdoaWprbG1ub3 - BxcnN0dXZ3eHl6QUJDRCJ98NPfjAAAARQAAABL2hCllgs6ZXZlbnQtdHlwZQcABWNodW5r - DTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldm - VudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lz - SW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0 - luUmxlSFFpT2lJZ1hDSWlmWDA9IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6 - QUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVowMSJ9/sxxyAAAARMAAABLaDB5hgs6ZXZlbn - QtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNz - YWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRz - lqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdW - NGRGOWtaV3gwWVNJc0luUmxlSFFpT2lKM1pXRjBhR1Z5WENJZ2RHOXZiQzRnVEdWMEluMT - kiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHIn3lHBMgAAABAwAA - AEsI0O4ECzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW - 9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVky - OXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleU - owZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUluY3lCamFHVmpheUo5ZlE9 - PSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQyJ9qyAQagAAAOYAAABLI7 - h1Dgs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9q - c29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZE - dWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVY - QmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ2FXWWlmWDA9IiwicCI6ImFiY2 - RlZmdoIn1qzDL1AAABEQAAAEsS8CrmCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQt - dHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcy - I6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElq - b3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaU - lnU1NKOWZRPT0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElK - S0xNTk9QUVJTVFVWV1hZIn3fIIuTAAABBwAAAEv9UEjECzpldmVudC10eXBlBwAFY2h1bm - sNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2 - ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSX - NJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lz - SW5SbGVIUWlPaUlnYUdGMlpTQjBhR1VnY21WeGRXbHlaU0o5ZlE9PSIsInAiOiJhYmNkZW - ZnaGlqa2xtbm9wcXJzdHUifVQwPzwAAAEVAAAAS+dwjCYLOmV2ZW50LXR5cGUHAAVjaHVu - aw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZX - ZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJ - c0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSX - NJblJsZUhRaU9pSmtJSEJoY21GdFpYUmxjbk02SW4xOSIsInAiOiJhYmNkZWZnaGlqa2xt - bm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE1OT1BRIn3ITNvcAAAA/gAAAEtzKKlNCzpldm - VudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1l - c3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aW - JHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lk - R1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUpjYmx4dVVtVnhkV2x5WlNKOWZRPT0iLCJwIj - oiYWJjZGVmZ2hpamtsbW5vcHFyc3QifZqqisoAAAE0AAAASxvRipILOmV2ZW50LXR5cGUH - AAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eX - BlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWta - V3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWl - d4MFlTSXNJblJsZUhRaU9pSmtJSEJoY21GdFpYUmxjbk02WEc0dElHeHZZMkYwYVc5dUlu - MTkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUV - JTVFVWV1hZWjAxMjM0NSJ9X128vwAAAOoAAABL5kiYDws6ZXZlbnQtdHlwZQcABWNodW5r - DTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldm - VudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lz - SW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0 - luUmxlSFFpT2lJNklGUm9aU0o5ZlE9PSIsInAiOiJhYmNkZWZnaCJ9obCe0gAAAP0AAABL - NIjTnQs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi - 9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1 - ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMG - VYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ2RYTmxjaUo5ZlE9PSIsInAi - OiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekEifaflFXoAAAEcAAAAS+pg7lcLOmV2ZW - 50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVz - c2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYk - c5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRH - VjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSWdjSEp2ZG1sa1pXUWdYQ0lpZlgwPSIsInAiOi - JhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWCJ9 - 7KCwRwAAAQgAAABLfwDfFQs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHAB - BhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUow - ZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1 - pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lKR2JHOXla - VzVqWlN3aWZYMD0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSC - J9SSVSKgAAAQUAAABLh5AbpAs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUH - ABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleU - owZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENK - a1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lKSmRHRn - NlVndpTENKOWZRPT0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERSJ9 - Q7h/jwAAARQAAABL2hCllgs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHAB - BhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUow - ZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1 - pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ2MyOGdk - R2hwY3lCcGN5QmhkbUZwYkdGaWJHVWlmWDA9IiwicCI6ImFiY2RlZmdoaWprbG1ub3Bxcn - N0dXZ3eHl6QUJDRCJ93a0EPQAAAQMAAABLCNDuBAs6ZXZlbnQtdHlwZQcABWNodW5rDTpj - b250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudH - siYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1s - dVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUm - xlSFFpT2lJdUluMTkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZH - SElKS0xNTk8ifRgO5sEAAAEFAAAAS4eQG6QLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udG - VudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5 - dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1 - Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhR - aU9pSmNibHh1UVd4c0luMTkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQk - NERUZHSEkife/I5eEAAAETAAAAS2gweYYLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVu - dC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dG - VzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0 - SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU - 9pSWdjbVZ4ZFdseVpTSjlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6 - QUJDREVGR0hJSktMTU5PUFFSUyJ9cQFVNgAAAQgAAABLfwDfFQs6ZXZlbnQtdHlwZQcABW - NodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUH - AAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeD - BZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gw - WVNJc0luUmxlSFFpT2lKa0lIQmhjbUZ0WlhSbGNuTWdZWEpsSUhCeWIzWnBaR1VpZlgwPS - IsInAiOiJhYmNkZWZnaGlqa2xtbiJ9TrYinQAAAPsAAABLu8gmPQs6ZXZlbnQtdHlwZQcA - BWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cG - UHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pX - eDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3 - gwWVNJc0luUmxlSFFpT2lKa0xDQnpieUJKSUdOaGJpQndjbTlqWldVaWZYMD0iLCJwIjoi - YWJjZGVmZ2hpIn0It+lcAAABBQAAAEuHkBukCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbn - RlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJi - eXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1Wk - dWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVI - UWlPaUprSUhkcGRHZ2dZMkZzYkdsdVp5QjBhR1VnZDJWaGRHaGxjaUo5ZlE9PSIsInAiOi - JhYmNkZWZnIn2zw73gAAAA6QAAAEuh6OLfCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRl - bnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieX - RlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdW - NElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUW - lPaUlnZEc5dmJDNGlmWDA9IiwicCI6ImFiY2RlZmcifR6NDHcAAAEgAAAAS46xu9ALOmV2 - ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bW - Vzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlp - Ykc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaW - RHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSmNiand2ZEdocGJtdHBibWMrSW4xOSIsInAi - OiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWF - laMDEifV5oYGAAAACtAAAASwybHFYLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10 - eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIj - oiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOXpkRzl3SWl3aWFXNWtaWGdpT2pC - OSIsInAiOiJhYmNkZWZnaGlqayJ9Eti/pwAAATUAAABLJrGjIgs6ZXZlbnQtdHlwZQcABW - NodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUH - AAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5emRHRn - lkQ0lzSW1sdVpHVjRJam94TENKamIyNTBaVzUwWDJKc2IyTnJJanA3SW5SNWNHVWlPaUow - YjI5c1gzVnpaU0lzSW1sa0lqb2lkRzl2YkhWZlltUnlhMTh3TVV4aVdFZzBWV2xFU0VGeU - 0xb3hSWFEyVG5oMmR6UWlMQ0p1WVcxbElqb2lkMlZoZEdobGNpSXNJbWx1Y0hWMElqcDdm - WDE5IiwicCI6ImFiYyJ9/8QMWgAAAPQAAABLOZix7As6ZXZlbnQtdHlwZQcABWNodW5rDT - pjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVu - dHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW - 1sdVpHVjRJam94TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pYVc1d2RYUmZhbk52Ymw5a1pX - eDBZU0lzSW5CaGNuUnBZV3hmYW5OdmJpSTZJaUo5ZlE9PSIsInAiOiJhYmNkZWYifen1Ho - MAAAEJAAAAS0Jg9qULOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBw - bGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQm - xJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpveExDSmtaV3gw - WVNJNmV5SjBlWEJsSWpvaWFXNXdkWFJmYW5OdmJsOWtaV3gwWVNJc0luQmhjblJwWVd4Zm - FuTnZiaUk2SW50Y0lteHZZeUo5ZlE9PSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzIn3i - PxRNAAABLAAAAEtLQVbRCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEG - FwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBl - WEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3hMQ0prWl - d4MFlTSTZleUowZVhCbElqb2lhVzV3ZFhSZmFuTnZibDlrWld4MFlTSXNJbkJoY25ScFlX - eGZhbk52YmlJNkltRjBhVzl1WENJaWZYMD0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3 - R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWjAxIn34jJ/+AAABIgAAAEv0ceiw - CzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb2 - 4NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1 - ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3hMQ0prWld4MFlTSTZleUowZVhCbE - lqb2lhVzV3ZFhSZmFuTnZibDlrWld4MFlTSXNJbkJoY25ScFlXeGZhbk52YmlJNklqb2dY - Q0lpZlgwPSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE - 1OT1BRUlNUVVYifa8NN6wAAAEkAAAAS3sxHRALOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29u - dGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7Im - J5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVa - R1Y0SWpveExDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWFXNXdkWFJmYW5OdmJsOWtaV3gwWV - NJc0luQmhjblJwWVd4ZmFuTnZiaUk2SWtac2IzSmxibU5sTENKOWZRPT0iLCJwIjoiYWJj - ZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QIn1JQtToAAABAQAAAE - tyEL1kCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9u - L2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOX - VkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3hMQ0prWld4MFlTSTZleUow - ZVhCbElqb2lhVzV3ZFhSZmFuTnZibDlrWld4MFlTSXNJbkJoY25ScFlXeGZhbk52YmlJNk - lrbDBZU0o5ZlE9PSIsInAiOiJhYmNkZWZnaGlqa2xtbm8ifRwiiHUAAAEhAAAAS7PRkmAL - OmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg - 06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVk - RjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpveExDSmtaV3gwWVNJNmV5SjBlWEJsSW - pvaWFXNXdkWFJmYW5OdmJsOWtaV3gwWVNJc0luQmhjblJwWVd4ZmFuTnZiaUk2SW14NVhD - SjlJbjE5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU - 5PUFFSU1RVIn1ATzw7AAAA1AAAAEv4WZ7oCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRl - bnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieX - RlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTl6ZEc5d0lpd2lhVzVrWlhn - aU9qRjkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk - 9QUVJTVFVWV1gifYm3LbgAAAEXAAAAS52w30YLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29u - dGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7Im - J5dGVzIjoiZXlKMGVYQmxJam9pYldWemMyRm5aVjlrWld4MFlTSXNJbVJsYkhSaElqcDdJ - bk4wYjNCZmNtVmhjMjl1SWpvaWRHOXZiRjkxYzJVaUxDSnpkRzl3WDNObGNYVmxibU5sSW - pwdWRXeHNmU3dpZFhOaFoyVWlPbnNpYjNWMGNIVjBYM1J2YTJWdWN5STZNVEk0ZlgwPSIs - InAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHUiffW4C7AAAAF6AAAAS/wSbLoLOmV2ZW50LX - R5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2Fn - ZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pYldWemMyRm5aVjl6ZEc5d0 - lpd2lZVzFoZW05dUxXSmxaSEp2WTJzdGFXNTJiMk5oZEdsdmJrMWxkSEpwWTNNaU9uc2lh - VzV3ZFhSVWIydGxia052ZFc1MElqbzJNVFFzSW05MWRIQjFkRlJ2YTJWdVEyOTFiblFpT2 - pFeE15d2lhVzUyYjJOaGRHbHZia3hoZEdWdVkza2lPalV6TURJc0ltWnBjbk4wUW5sMFpV - eGhkR1Z1WTNraU9qRXhNeko5ZlE9PSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3 - h5ekFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaMDEyMzQ1NjcifWtlLt8= - headers: - Content-Type: - - application/vnd.amazon.eventstream - status: 200 OK - code: 200 - duration: 1.626768792s -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 1158 - host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"text":"\u003cthinking\u003e\nTo get the weather forecast for Florence, Italy, I would need to use the \"weather\" tool. Let''s check if I have the required parameters:\n\nRequired parameters:\n- location: The user provided \"Florence,Italy\", so this is available.\n\nAll required parameters are provided, so I can proceed with calling the weather tool.\n\u003c/thinking\u003e","type":"text"},{"id":"toolu_bdrk_01LbXH4UiDHAr3Z1Et6Nxvw4","input":{"location":"Florence,Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_bdrk_01LbXH4UiDHAr3Z1Et6Nxvw4","content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - Anthropic/Go 1.13.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-opus-20240229-v1%3A0/invoke-with-response-stream - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: !!binary | - AAAB2gAAAEuMNfMsCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG - xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs - SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWFXUWlPaUp0YzJkZl - ltUnlhMTh3TVVOVWFGaDZaSFJ0UjFKVk1XZDJkR3BhY1VWSVZ6Z2lMQ0owZVhCbElqb2li - V1Z6YzJGblpTSXNJbkp2YkdVaU9pSmhjM05wYzNSaGJuUWlMQ0p0YjJSbGJDSTZJbU5zWV - hWa1pTMHpMVzl3ZFhNdE1qQXlOREF5TWpraUxDSmpiMjUwWlc1MElqcGJYU3dpYzNSdmNG - OXlaV0Z6YjI0aU9tNTFiR3dzSW5OMGIzQmZjMlZ4ZFdWdVkyVWlPbTUxYkd3c0luVnpZV2 - RsSWpwN0ltbHVjSFYwWDNSdmEyVnVjeUk2TnpVMkxDSnZkWFJ3ZFhSZmRHOXJaVzV6SWpv - eWZYMTkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKIn2eBB - J4AAAA5wAAAEse2Fy+CzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFw - cGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWE - JsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTl6ZEdGeWRDSXNJbWx1WkdWNElqb3dMQ0pqYjI1 - MFpXNTBYMkpzYjJOcklqcDdJblI1Y0dVaU9pSjBaWGgwSWl3aWRHVjRkQ0k2SWlKOWZRPT - 0iLCJwIjoiYWJjZGVmZ2hpIn20w8gnAAABCgAAAEsFwIx1CzpldmVudC10eXBlBwAFY2h1 - bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABW - V2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlT - SXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0 - lzSW5SbGVIUWlPaUpjYmx4dVFXTmpiM0prYVc1bkluMTkiLCJwIjoiYWJjZGVmZ2hpamts - bW5vcHFyc3R1dnd4eXpBQkNERUYifYw9rFkAAAETAAAAS2gweYYLOmV2ZW50LXR5cGUHAA - VjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBl - BwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3 - gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4 - MFlTSXNJblJsZUhRaU9pSWdkRzhnZEdobElIZGxZWFJvWlhJZ2FXNW1iM0p0WVhScGIyNG - lmWDA9IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dSJ9pKcRmQAAAPoAAABLhqgPjQs6 - ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDT - ptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRG - OWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam - 9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJc0luMTkiLCJwIjoiYWJjZGVmZ2hpamts - bW5vcHFyc3R1dnd4eXpBQkNERUYifRaFvcMAAAEMAAAAS4qAedULOmV2ZW50LXR5cGUHAA - VjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBl - BwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3 - gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4 - MFlTSXNJblJsZUhRaU9pSWdkR2hsSUdOMWNuSmxiblFnZDJWaGRHaGxjaUJwYmlCR2JHOX - laVzVqWlNKOWZRPT0iLCJwIjoiYWJjZGVmIn0Zooh4AAAA7QAAAEtUaEQfCzpldmVudC10 - eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2 - UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWph - MTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZE - Y5a1pXeDBZU0lzSW5SbGVIUWlPaUlzSUVsMFlXeDVJR2x6SURRd0luMTkiLCJwIjoiYWJj - In1lkmmLAAABFgAAAEug0Pb2CzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQ - cAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5 - SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0 - prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnWkdW - bmNtVmxjeUJEWld4emFYVnpMaUo5ZlE9PSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdH - V2d3h5ekFCQ0RFRkdISUoifYRLIlcAAAEUAAAAS9oQpZYLOmV2ZW50LXR5cGUHAAVjaHVu - aw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZX - ZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJ - c0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSX - NJblJsZUhRaU9pSWdOREFpZlgwPSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5 - ekFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaMDEifcrhPoQAAAEHAAAAS/1QSMQLOmV2ZW - 50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVz - c2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYk - c5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRH - VjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSWdReUo5ZlE9PSIsInAiOiJhYmNkZWZnaGlqa2 - xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE1OTyJ9W//SfAAAAOkAAABLoeji3ws6ZXZl - bnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZX - NzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWli - RzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZE - dWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ2FYTWdkbVZ5ZVNKOWZRPT0iLCJwIjoiYWJj - In24tBuaAAAA7AAAAEtpCG2vCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQ - cAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5 - SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0 - prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnYUc5 - MExDQnpieUJwWmlKOWZRPT0iLCJwIjoiYWIifZkzXbsAAAEDAAAASwjQ7gQLOmV2ZW50LX - R5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2Fn - ZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5am - ExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRk - RjlrWld4MFlTSXNJblJsZUhRaU9pSWdlVzkxSUdGeVpTSjlmUT09IiwicCI6ImFiY2RlZm - doaWprbG1ub3BxcnN0dXZ3eHl6QUJDIn22/KwfAAAA8gAAAEu22ERMCzpldmVudC10eXBl - BwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdH - lwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlr - Wld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1 - pXeDBZU0lzSW5SbGVIUWlPaUlnYVc0aWZYMD0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFy - c3QifX/DWjEAAADsAAAAS2kIba8LOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eX - BlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoi - ZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0 - xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSWdS - bXh2Y21WdVkyVWdZbVVpZlgwPSIsInAiOiJhYiJ98uF2AAAAAQcAAABL/VBIxAs6ZXZlbn - QtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNz - YWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRz - lqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdW - NGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ2MzVnlaU0o5ZlE9PSIsInAiOiJhYmNkZWZnaG - lqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLIn1Y8Xx5AAAA9wAAAEt+OMs8CzpldmVu - dC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3 - NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJH - OWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1 - Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnZEc4Z2MzUmhlU0o5ZlE9PSIsInAiOiJhYmNk - ZWZnaGlqa2xtbm9wcSJ9snZtbgAAARoAAABLZSAb9ws6ZXZlbnQtdHlwZQcABWNodW5rDT - pjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVu - dHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW - 1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0lu - UmxlSFFpT2lJZ2FIbGtjbUYwWldRc0luMTkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3 - R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWiJ9aon3zgAAAQMAAABLCNDuBAs6 - ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDT - ptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRG - OWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam - 9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ2QyVmhjaUJzYVdkb2RDSjlmUT09Iiwi - cCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHkifVtLl6kAAAEMAAAAS4qAedULOmV2ZW - 50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVz - c2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYk - c5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRH - VjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSXNJR0p5WldGMGFHRmliR1VnWTJ4dmRHaHBibW - NzSW4xOSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2In3tqmFbAAABHAAAAEvqYO5X - CzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb2 - 4NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1 - ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbE - lqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnWVc1a0lHRjJiMmxrSUdKbGFXNW5J - bjE5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUF - FSU1QifSSwZ1YAAAE7AAAAS5mBHUMLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10 - eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIj - oiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpv - d0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSW - dhVzRnWkdseVpXTjBJSE4xYm14cFoyaDBJR1IxY21sdVp5SjlmUT09IiwicCI6ImFiY2Rl - ZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVowMTIzND - U2NzgifZNM/zAAAAEHAAAAS/1QSMQLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10 - eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIj - oiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpv - d0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSW - dkR2hsSUdodmRIUmxjM1FnY0dGeWRITWdiMllpZlgwPSIsInAiOiJhYmNkZWZnaGlqa2xt - bm9wcSJ9o+NC1wAAARkAAABLIoBhJws6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LX - R5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMi - OiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam - 93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJ - Z2RHaGxJR1JoZVNCcFppSjlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eH - l6QUJDREVGR0hJSktMTU5PUFFSU1RVIn0XTZnCAAAA+QAAAEvBCHVdCzpldmVudC10eXBl - BwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdH - lwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlr - Wld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1 - pXeDBZU0lzSW5SbGVIUWlPaUlnY0c5emMybGliR1V1SUVraWZYMD0iLCJwIjoiYWJjZGVm - Z2hpamtsbW5vIn0jx543AAAA8QAAAEvxeD6cCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbn - RlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJi - eXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1Wk - dWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVI - UWlPaUluSW4xOSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2dyJ9y4vCRwAAAUAAAA - BLF4PMnQs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlv - bi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMj - l1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlK - MGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lKa0lISmxZMjl0YldWdVpDQm - phR1ZqYTJsdVp5QjBhR1VnWlhoMFpXNWtaU0o5ZlE9PSIsInAiOiJhYmNkZWZnaGlqa2xt - bm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaMDEyMzQ1In2fv5/BAA - AA9wAAAEt+OMs8CzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxp - Y2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSW - pvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlT - STZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUprSUdadmNtVmpZWE - 4wSUdGekluMTkiLCJwIjoiYWJjZGVmZ2hpamtsbSJ9kYo3sAAAAScAAABLPJFnwAs6ZXZl - bnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZX - NzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWli - RzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZE - dWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ2QyVnNiQ0IwYnlCelpXVWlmWDA9IiwicCI6 - ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUFFSU1RVVldYWV - owMTIzNDU2NzgifUJUr+UAAADpAAAAS6Ho4t8LOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29u - dGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7Im - J5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVa - R1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZU - hRaU9pSWdhRzkzSW4xOSIsInAiOiJhYmNkZWZnaGlqayJ9GNiSKwAAAQUAAABLh5AbpAs6 - ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDT - ptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRG - OWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam - 9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ2JHOXVaeUo5ZlE9PSIsInAiOiJhYmNk - ZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISSJ9EORPygAAAPkAAABLwQh1XQs6ZX - ZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTpt - ZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOW - liRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9p - ZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ2RHaHBjeUo5ZlE9PSIsInAiOiJhYmNkZW - ZnaGlqa2xtbm9wcXJzdHV2dyJ9iTig+gAAAR4AAABLkKC9Nws6ZXZlbnQtdHlwZQcABWNo - dW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAA - VldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZ - U0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWV - NJc0luUmxlSFFpT2lJZ2FHVmhkQ0o5ZlE9PSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJz - dHV2d3h5ekFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaMDEyMzQ1NjcifSU+eNkAAAEcAA - AAS+pg7lcLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRp - b24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWT - I5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5 - SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSWdkMkYyWlNCdFlYa2diR0 - Z6ZEM0aWZYMD0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElK - S0xNTk9QUVJTVCJ9sLQdbQAAAQcAAABL/VBIxAs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb2 - 50ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsi - Ynl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdV - pHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxl - SFFpT2lKY2JseHVUR1YwSW4xOSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ek - FCQ0RFRkdISUpLIn2dJjGZAAABFwAAAEudsN9GCzpldmVudC10eXBlBwAFY2h1bmsNOmNv - bnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50ey - JieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1 - WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbG - VIUWlPaUlnYldVZ2EyNXZkeUJwWmlCNWIzVWdibVZsSW4xOSIsInAiOiJhYmNkZWZnaGlq - a2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLIn2bxHVwAAABKgAAAEvEAaNxCzpldmVudC - 10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3Nh - Z2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOW - phMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0 - ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUprSUdGdWVTQnZkR2hsY2lCcGJtWnZjbTFoZEdsdm - JpSjlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktM - TU5PUFFSU1RVViJ9E1MeGgAAAQsAAABLOKClxQs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb2 - 50ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsi - Ynl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdV - pHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxl - SFFpT2lJZ1lXSnZkWFFpZlgwPSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ek - FCQ0RFRkdISUpLTE1OTyJ9aoJBTAAAAQUAAABLh5AbpAs6ZXZlbnQtdHlwZQcABWNodW5r - DTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldm - VudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lz - SW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0 - luUmxlSFFpT2lJZ2RHaGxJSGRsWVhSb1pYSWdhVzRnUm14dmNtVnVZMlVnYjNJaWZYMD0i - LCJwIjoiYWJjZGVmZyJ96tazKQAAAPUAAABLBPiYXAs6ZXZlbnQtdHlwZQcABWNodW5rDT - pjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVu - dHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW - 1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0lu - UmxlSFFpT2lJZ2RISmhkbVZzYVc1bkluMTkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vIn2z7l - 3wAAAA/QAAAEs0iNOdCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFw - cGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWE - JsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4 - MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnZEdobGNtVW - hJbjE5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QSJ93ckogQAAAN8AAABL - j4mv+Qs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi - 9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1 - ZEdWdWRGOWliRzlqYTE5emRHOXdJaXdpYVc1a1pYZ2lPakI5IiwicCI6ImFiY2RlZmdoaW - prbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVowMTIzNDU2Nzgi - fd94LWgAAAE4AAAAS94hZ5MLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBw - AQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlK - MGVYQmxJam9pYldWemMyRm5aVjlrWld4MFlTSXNJbVJsYkhSaElqcDdJbk4wYjNCZmNtVm - hjMjl1SWpvaVpXNWtYM1IxY200aUxDSnpkRzl3WDNObGNYVmxibU5sSWpwdWRXeHNmU3dp - ZFhOaFoyVWlPbnNpYjNWMGNIVjBYM1J2YTJWdWN5STZNVEE1ZlgwPSIsInAiOiJhYmNkZW - ZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaMDEiffyY - BjgAAAF1AAAAS35C+2sLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYX - BwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVY - QmxJam9pYldWemMyRm5aVjl6ZEc5d0lpd2lZVzFoZW05dUxXSmxaSEp2WTJzdGFXNTJiMk - 5oZEdsdmJrMWxkSEpwWTNNaU9uc2lhVzV3ZFhSVWIydGxia052ZFc1MElqbzNOVFlzSW05 - MWRIQjFkRlJ2YTJWdVEyOTFiblFpT2pFd09Td2lhVzUyYjJOaGRHbHZia3hoZEdWdVkza2 - lPalU0T1Rnc0ltWnBjbk4wUW5sMFpVeGhkR1Z1WTNraU9qRTFPRGg5ZlE9PSIsInAiOiJh - YmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaMD - EyIn36LvYd - headers: - Content-Type: - - application/vnd.amazon.eventstream - status: 200 OK - code: 200 - duration: 1.742548041s diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-sonnet/simple.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-sonnet/simple.yaml deleted file mode 100644 index 300746d8a82f627f2ac2ffeec0a7d24a90de87d9..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-sonnet/simple.yaml +++ /dev/null @@ -1,32 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 211 - host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Say hi in Portuguese","type":"text"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"anthropic_version":"bedrock-2023-05-31"}' - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - Anthropic/Go 1.13.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-sonnet-20240229-v1%3A0/invoke - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: 248 - body: '{"id":"msg_bdrk_01LRFVX3vkAe1gN871fWZ9TT","type":"message","role":"assistant","model":"claude-3-sonnet-20240229","content":[{"type":"text","text":"Olá!"}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":16,"output_tokens":7}}' - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: 994.951625ms diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-sonnet/simple_streaming.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-sonnet/simple_streaming.yaml deleted file mode 100644 index ff6cc3c98d7751d06d405b2dff39409b2d259944..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-sonnet/simple_streaming.yaml +++ /dev/null @@ -1,77 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 211 - host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Say hi in Portuguese","type":"text"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"anthropic_version":"bedrock-2023-05-31"}' - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - Anthropic/Go 1.13.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-sonnet-20240229-v1%3A0/invoke-with-response-stream - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: !!binary | - AAAB7gAAAEvYlO1qCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG - xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs - SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWFXUWlPaUp0YzJkZl - ltUnlhMTh3TVVOQ1ozZHBjRzFZYlhSNlpIQjZiM3BhY25kMmQwc2lMQ0owZVhCbElqb2li - V1Z6YzJGblpTSXNJbkp2YkdVaU9pSmhjM05wYzNSaGJuUWlMQ0p0YjJSbGJDSTZJbU5zWV - hWa1pTMHpMWE52Ym01bGRDMHlNREkwTURJeU9TSXNJbU52Ym5SbGJuUWlPbHRkTENKemRH - OXdYM0psWVhOdmJpSTZiblZzYkN3aWMzUnZjRjl6WlhGMVpXNWpaU0k2Ym5Wc2JDd2lkWE - 5oWjJVaU9uc2lhVzV3ZFhSZmRHOXJaVzV6SWpveE5pd2liM1YwY0hWMFgzUnZhMlZ1Y3lJ - Nk1uMTlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSk - tMTU5PUFFSU1RVVldYWVoifaXxLNMAAAEWAAAAS6DQ9vYLOmV2ZW50LXR5cGUHAAVjaHVu - aw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZX - ZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOXpkR0Z5ZENJ - c0ltbHVaR1Y0SWpvd0xDSmpiMjUwWlc1MFgySnNiMk5ySWpwN0luUjVjR1VpT2lKMFpYaD - BJaXdpZEdWNGRDSTZJaUo5ZlE9PSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5 - ekFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaMDEyMyJ9hcWOywAAAPoAAABLhqgPjQs6ZX - ZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTpt - ZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOW - liRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9p - ZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lKUGJDSjlmUT09IiwicCI6ImFiY2RlZmdoaW - prbG1ub3BxcnN0dXZ3eHl6QUIifRR2ulIAAAD7AAAAS7vIJj0LOmV2ZW50LXR5cGUHAAVj - aHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBw - AFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gw - WVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MF - lTSXNJblJsZUhRaU9pTERvU0o5ZlE9PSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2 - d3h5ekFCQyJ94G5ejAAAAQgAAABLfwDfFQs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW - 50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0 - ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVj - RJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFp - T2lJaEluMTkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0 - xNTk9QUVJTVCJ9YBJX4gAAAMEAAABLUFmGGgs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250 - ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYn - l0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5emRHOXdJaXdpYVc1a1pY - Z2lPakI5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREUifeLDB4cAAA - EPAAAAS80gAwULOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGlj - YXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam - 9pYldWemMyRm5aVjlrWld4MFlTSXNJbVJsYkhSaElqcDdJbk4wYjNCZmNtVmhjMjl1SWpv - aVpXNWtYM1IxY200aUxDSnpkRzl3WDNObGNYVmxibU5sSWpwdWRXeHNmU3dpZFhOaFoyVW - lPbnNpYjNWMGNIVjBYM1J2YTJWdWN5STZOMzE5IiwicCI6ImFiY2RlZmdoaWprbG1ub3Bx - In1pE5R7AAABQQAAAEsq4+UtCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQ - cAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5 - SjBlWEJsSWpvaWJXVnpjMkZuWlY5emRHOXdJaXdpWVcxaGVtOXVMV0psWkhKdlkyc3RhVz - UyYjJOaGRHbHZiazFsZEhKcFkzTWlPbnNpYVc1d2RYUlViMnRsYmtOdmRXNTBJam94Tml3 - aWIzVjBjSFYwVkc5clpXNURiM1Z1ZENJNk55d2lhVzUyYjJOaGRHbHZia3hoZEdWdVkza2 - lPalU0T1N3aVptbHljM1JDZVhSbFRHRjBaVzVqZVNJNk16UTRmWDA9IiwicCI6ImFiY2Rl - ZmdoaWprIn1lCEQa - headers: - Content-Type: - - application/vnd.amazon.eventstream - status: 200 OK - code: 200 - duration: 504.27675ms diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-sonnet/tool_streaming.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-sonnet/tool_streaming.yaml deleted file mode 100644 index 3a458ee4bf6092c01642b23c9a59bf65f7fef907..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-sonnet/tool_streaming.yaml +++ /dev/null @@ -1,208 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 468 - host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - Anthropic/Go 1.13.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-sonnet-20240229-v1%3A0/invoke-with-response-stream - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: !!binary | - AAAByAAAAEuWFTfOCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG - xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs - SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWFXUWlPaUp0YzJkZl - ltUnlhMTh3TVVOVVJIbEVOSFJaUkhOM1dqTXlSMnRhVFdjNE1WRWlMQ0owZVhCbElqb2li - V1Z6YzJGblpTSXNJbkp2YkdVaU9pSmhjM05wYzNSaGJuUWlMQ0p0YjJSbGJDSTZJbU5zWV - hWa1pTMHpMWE52Ym01bGRDMHlNREkwTURJeU9TSXNJbU52Ym5SbGJuUWlPbHRkTENKemRH - OXdYM0psWVhOdmJpSTZiblZzYkN3aWMzUnZjRjl6WlhGMVpXNWpaU0k2Ym5Wc2JDd2lkWE - 5oWjJVaU9uc2lhVzV3ZFhSZmRHOXJaVzV6SWpveU5EQXNJbTkxZEhCMWRGOTBiMnRsYm5N - aU9qRjlmWDA9IiwicCI6ImFiY2RlZmdoaWprbG1uIn1bk3KsAAABOgAAAEuk4TTzCzpldm - VudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1l - c3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aW - JHOWphMTl6ZEdGeWRDSXNJbWx1WkdWNElqb3dMQ0pqYjI1MFpXNTBYMkpzYjJOcklqcDdJ - blI1Y0dVaU9pSjBiMjlzWDNWelpTSXNJbWxrSWpvaWRHOXZiSFZmWW1SeWExOHdNVFEzZF - dKR00yRnlUVkpJVkc0MFZYUkJOSEJsUlRRaUxDSnVZVzFsSWpvaWQyVmhkR2hsY2lJc0lt - bHVjSFYwSWpwN2ZYMTkiLCJwIjoiYWJjZGVmZ2gifR5cOTUAAAENAAAAS7fgUGULOmV2ZW - 50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVz - c2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYk - c5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWFX - NXdkWFJmYW5OdmJsOWtaV3gwWVNJc0luQmhjblJwWVd4ZmFuTnZiaUk2SWlKOWZRPT0iLC - JwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERSJ9hTLu0AAAAQoAAABLBcCM - dQs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc2 - 9uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdW - dWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQm - xJam9pYVc1d2RYUmZhbk52Ymw5a1pXeDBZU0lzSW5CaGNuUnBZV3hmYW5OdmJpSTZJbnRj - SW14dlkyRjBJbjE5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0In3MEaHsAAABDwAAAE - vNIAMFCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9u - L2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOX - VkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUow - ZVhCbElqb2lhVzV3ZFhSZmFuTnZibDlrWld4MFlTSXNJbkJoY25ScFlXeGZhbk52YmlJNk - ltbHZibHdpT2lCY0lrWnNJbjE5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dSJ9MlKj - YAAAARwAAABL6mDuVws6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcH - BsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhC - bElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeD - BZU0k2ZXlKMGVYQmxJam9pYVc1d2RYUmZhbk52Ymw5a1pXeDBZU0lzSW5CaGNuUnBZV3hm - YW5OdmJpSTZJbTl5Wlc1alpTeEpkR0ZzSW4xOSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcX - JzdHV2d3h5ekFCQ0RFRkdIIn3kS/QUAAAA/wAAAEtOSID9CzpldmVudC10eXBlBwAFY2h1 - bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABW - V2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlT - SXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lhVzV3ZFhSZmFuTnZibD - lrWld4MFlTSXNJbkJoY25ScFlXeGZhbk52YmlJNklubGNJbjBpZlgwPSIsInAiOiJhYmNk - ZWZnaGlqa2xtIn0e+v+oAAAA2AAAAEs9qXPpCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbn - RlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJi - eXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTl6ZEc5d0lpd2lhVzVrWl - hnaU9qQjkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xN - Tk9QUVJTVFVWV1hZWjAxIn32VRefAAABIgAAAEv0ceiwCzpldmVudC10eXBlBwAFY2h1bm - sNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2 - ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaWJXVnpjMkZuWlY5a1pXeDBZU0lzSW1SbGJIUm - hJanA3SW5OMGIzQmZjbVZoYzI5dUlqb2lkRzl2YkY5MWMyVWlMQ0p6ZEc5d1gzTmxjWFZs - Ym1ObElqcHVkV3hzZlN3aWRYTmhaMlVpT25zaWIzVjBjSFYwWDNSdmEyVnVjeUk2TlROOW - ZRPT0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUYifWTQLAYAAAFU - AAAAS4Lj/d8LOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYX - Rpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9p - YldWemMyRm5aVjl6ZEc5d0lpd2lZVzFoZW05dUxXSmxaSEp2WTJzdGFXNTJiMk5oZEdsdm - JrMWxkSEpwWTNNaU9uc2lhVzV3ZFhSVWIydGxia052ZFc1MElqb3lOREFzSW05MWRIQjFk - RlJ2YTJWdVEyOTFiblFpT2pNNUxDSnBiblp2WTJGMGFXOXVUR0YwWlc1amVTSTZNekE0Tn - l3aVptbHljM1JDZVhSbFRHRjBaVzVqZVNJNk16UXlmWDA9IiwicCI6ImFiY2RlZmdoaWpr - bG1ub3BxcnN0dXZ3eHl6In2+B8HI - headers: - Content-Type: - - application/vnd.amazon.eventstream - status: 200 OK - code: 200 - duration: 490.224792ms -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 764 - host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"id":"toolu_bdrk_0147ubF3arMRHTn4UtA4peE4","input":{"location":"Florence,Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_bdrk_0147ubF3arMRHTn4UtA4peE4","content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - Anthropic/Go 1.13.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-sonnet-20240229-v1%3A0/invoke-with-response-stream - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: !!binary | - AAAB1QAAAEsOZWT9CzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG - xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs - SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWFXUWlPaUp0YzJkZl - ltUnlhMTh3TVVKeE5IbFFabVk0ZUdOeGVUUm9aR04yTkZKMU5FTWlMQ0owZVhCbElqb2li - V1Z6YzJGblpTSXNJbkp2YkdVaU9pSmhjM05wYzNSaGJuUWlMQ0p0YjJSbGJDSTZJbU5zWV - hWa1pTMHpMWE52Ym01bGRDMHlNREkwTURJeU9TSXNJbU52Ym5SbGJuUWlPbHRkTENKemRH - OXdYM0psWVhOdmJpSTZiblZzYkN3aWMzUnZjRjl6WlhGMVpXNWpaU0k2Ym5Wc2JDd2lkWE - 5oWjJVaU9uc2lhVzV3ZFhSZmRHOXJaVzV6SWpvek1EZ3NJbTkxZEhCMWRGOTBiMnRsYm5N - aU9qSjlmWDA9IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QSJ9MxX82gAAAO - YAAABLI7h1Dgs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNh - dGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2 - lZMjl1ZEdWdWRGOWliRzlqYTE5emRHRnlkQ0lzSW1sdVpHVjRJam93TENKamIyNTBaVzUw - WDJKc2IyTnJJanA3SW5SNWNHVWlPaUowWlhoMElpd2lkR1Y0ZENJNklpSjlmUT09IiwicC - I6ImFiY2RlZmdoIn3SrDB1AAAA8wAAAEuLuG38CzpldmVudC10eXBlBwAFY2h1bmsNOmNv - bnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50ey - JieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1 - WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbG - VIUWlPaUpjYmx4dVZHaGxJbjE5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxIn0bCMYyAAAB - AAAAAEtPcJTUCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2 - F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpv - aVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTST - ZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnZDJWaGRHaGxjaUo5 - ZlE9PSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5eiJ9gKialAAAAOIAAABL1j - jTzgs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9q - c29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZE - dWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVY - QmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ2FXNGlmWDA9IiwicCI6ImFiY2 - QifXBDECYAAADsAAAAS2kIba8LOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBl - BwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZX - lKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xD - SmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSWdSbX - h2Y21WdVkyVWlmWDA9IiwicCI6ImFiY2RlZiJ98lyl6AAAAOYAAABLI7h1Dgs6ZXZlbnQt - dHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYW - dlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlq - YTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNG - RGOWtaV3gwWVNJc0luUmxlSFFpT2lJc0luMTkiLCJwIjoiYWJjZGVmZ2hpamtsIn0N27mp - AAABBwAAAEv9UEjECzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG - xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs - SWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MF - lTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnU1hSaGJIa2lm - WDA9IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSksifccMNp - oAAAEAAAAAS09wlNQLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBw - bGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQm - xJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gw - WVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSWdZM1Z5Y21WdW - RHeDVJbjE5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6In1pHqATAAAA5AAA - AEtZeCZuCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW - 9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVky - OXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleU - owZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnYVhNaWZYMD0iLCJwIjoi - YWJjZGVmIn1D+kU3AAABAQAAAEtyEL1kCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbn - QtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRl - cyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNE - lqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlP - aUlnSW4xOSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE - 0ifXHHY7IAAAEJAAAAS0Jg9qULOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBl - BwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZX - lKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xD - SmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSTBNQ0 - o5ZlE9PSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE1O - T1BRIn3XUit8AAAA+AAAAEv8aFztCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdH - lwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6 - ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3 - dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUxD - c0NKOWZRPT0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXoiffYMitIAAAEGAA - AAS8AwYXQLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRp - b24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWT - I5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5 - SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSkRJbjE5IiwicCI6ImFiY2 - RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUFFSIn0nx3p/AAAA8AAA - AEvMGBcsCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW - 9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVky - OXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleU - owZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUl1SW4xOSIsInAiOiJhYmNk - ZWZnaGlqa2xtbm9wcXJzdHV2In1ME7fDAAAAtQAAAEtcC8AVCzpldmVudC10eXBlBwAFY2 - h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcA - BWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTl6ZEc5d0 - lpd2lhVzVrWlhnaU9qQjkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFycyJ9QnTMMwAAAQcA - AABL/VBIxAs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdG - lvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2li - V1Z6YzJGblpWOWtaV3gwWVNJc0ltUmxiSFJoSWpwN0luTjBiM0JmY21WaGMyOXVJam9pWl - c1a1gzUjFjbTRpTENKemRHOXdYM05sY1hWbGJtTmxJanB1ZFd4c2ZTd2lkWE5oWjJVaU9u - c2liM1YwY0hWMFgzUnZhMlZ1Y3lJNk1UZDlmUT09IiwicCI6ImFiY2RlIn1G7t0fAAABQA - AAAEsXg8ydCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0 - aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaW - JXVnpjMkZuWlY5emRHOXdJaXdpWVcxaGVtOXVMV0psWkhKdlkyc3RhVzUyYjJOaGRHbHZi - azFsZEhKcFkzTWlPbnNpYVc1d2RYUlViMnRsYmtOdmRXNTBJam96TURnc0ltOTFkSEIxZE - ZSdmEyVnVRMjkxYm5RaU9qRTNMQ0pwYm5adlkyRjBhVzl1VEdGMFpXNWplU0k2TVRBd05p - d2labWx5YzNSQ2VYUmxUR0YwWlc1amVTSTZOVFl6ZlgwPSIsInAiOiJhYmNkZWYifepedk - U= - headers: - Content-Type: - - application/vnd.amazon.eventstream - status: 200 OK - code: 200 - duration: 713.964541ms diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-opus/simple.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-haiku-4-5/simple.yaml similarity index 52% rename from providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-opus/simple.yaml rename to providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-haiku-4-5/simple.yaml index 573a042d0216f1ee53f0f6c4c40f6cc6220f6711..fce86d87e8084b1a1e3422d705795fe88b44a697 100644 --- a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-opus/simple.yaml +++ b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-haiku-4-5/simple.yaml @@ -15,18 +15,18 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.13.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-opus-20240229-v1%3A0/invoke + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-haiku-4-5-20251001-v1%3A0/invoke method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 246 - body: '{"id":"msg_bdrk_01RtkNhyFaV3SeKS3ZTEJ5Sx","type":"message","role":"assistant","model":"claude-3-opus-20240229","content":[{"type":"text","text":"Olá!"}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":16,"output_tokens":7}}' + content_length: 423 + body: "{\"model\":\"claude-haiku-4-5-20251001\",\"id\":\"msg_bdrk_016XYNNNhL8TLniyQii9Zbkz\",\"type\":\"message\",\"role\":\"assistant\",\"content\":[{\"type\":\"text\",\"text\":\"Olá! \U0001F44B\\n\\nHow can I help you today?\"}],\"stop_reason\":\"end_turn\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":16,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"cache_creation\":{\"ephemeral_5m_input_tokens\":0,\"ephemeral_1h_input_tokens\":0},\"output_tokens\":18}}" headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.276099s + duration: 1.434750208s diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-haiku-4-5/simple_streaming.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-haiku-4-5/simple_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..be6b42316b49dd58ee617cf1664930ec314efb3d --- /dev/null +++ b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-haiku-4-5/simple_streaming.yaml @@ -0,0 +1,85 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 211 + host: "" + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Say hi in Portuguese","type":"text"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"anthropic_version":"bedrock-2023-05-31"}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-haiku-4-5-20251001-v1%3A0/invoke-with-response-stream + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: !!binary | + AAACqwAAAEvOE0j9CzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG + xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs + SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWJXOWtaV3dpT2lKam + JHRjFaR1V0YUdGcGEzVXROQzAxTFRJd01qVXhNREF4SWl3aWFXUWlPaUp0YzJkZlltUnlh + MTh3TVZGVWQzZHJiMWhSVm1oM00wZFVhWHB3VGxBM1Jtc2lMQ0owZVhCbElqb2liV1Z6Yz + JGblpTSXNJbkp2YkdVaU9pSmhjM05wYzNSaGJuUWlMQ0pqYjI1MFpXNTBJanBiWFN3aWMz + UnZjRjl5WldGemIyNGlPbTUxYkd3c0luTjBiM0JmYzJWeGRXVnVZMlVpT201MWJHd3NJbl + Z6WVdkbElqcDdJbWx1Y0hWMFgzUnZhMlZ1Y3lJNk1UWXNJbU5oWTJobFgyTnlaV0YwYVc5 + dVgybHVjSFYwWDNSdmEyVnVjeUk2TUN3aVkyRmphR1ZmY21WaFpGOXBibkIxZEY5MGIydG + xibk1pT2pBc0ltTmhZMmhsWDJOeVpXRjBhVzl1SWpwN0ltVndhR1Z0WlhKaGJGODFiVjlw + Ym5CMWRGOTBiMnRsYm5NaU9qQXNJbVZ3YUdWdFpYSmhiRjh4YUY5cGJuQjFkRjkwYjJ0bG + JuTWlPakI5TENKdmRYUndkWFJmZEc5clpXNXpJam8xZlgxOSIsInAiOiJhYmNkZWZnaGlq + a2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaMDEyMzQifaDt7N + MAAAD+AAAAS3MoqU0LOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBw + bGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQm + xJam9pWTI5dWRHVnVkRjlpYkc5amExOXpkR0Z5ZENJc0ltbHVaR1Y0SWpvd0xDSmpiMjUw + Wlc1MFgySnNiMk5ySWpwN0luUjVjR1VpT2lKMFpYaDBJaXdpZEdWNGRDSTZJaUo5ZlE9PS + IsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRiJ9l/DlNQAAAPkAAABL + wQh1XQs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi + 9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1 + ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMG + VYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lKUGJNT2hJU0FpZlgwPSIsInAi + OiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2dyJ9kdFbyQAAAOMAAABL61j6fgs6ZXZlbnQtdH + lwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdl + LXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYT + E5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRG + OWtaV3gwWVNJc0luUmxlSFFpT2lMd241R0xJbjE5IiwicCI6ImFiY2RlIn3RYyKTAAABAA + AAAEtPcJTUCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0 + aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaV + kyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZl + eUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUpjYmx4dVNHOTNJbjE5Ii + wicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDRCJ9hgfmRAAAARIAAABLVVBQ + Ngs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc2 + 9uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdW + dWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQm + xJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ1kyRnVJRWtnYUdWc2NDQjViM1Vn + ZEc5a1lYay9JbjE5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUIifSRObm + sAAADCAAAASxf5/MoLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBw + bGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQm + xJam9pWTI5dWRHVnVkRjlpYkc5amExOXpkRzl3SWl3aWFXNWtaWGdpT2pCOSIsInAiOiJh + YmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRiJ9xnYrwQAAAS0AAABLdiF/YQs6ZX + ZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTpt + ZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2liV1Z6YzJGblpWOW + taV3gwWVNJc0ltUmxiSFJoSWpwN0luTjBiM0JmY21WaGMyOXVJam9pWlc1a1gzUjFjbTRp + TENKemRHOXdYM05sY1hWbGJtTmxJanB1ZFd4c2ZTd2lkWE5oWjJVaU9uc2liM1YwY0hWMF + gzUnZhMlZ1Y3lJNk1UaDlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6 + QUJDREVGR0hJSktMTU5PUFEifV0IM4QAAAFHAAAAS6WjEI0LOmV2ZW50LXR5cGUHAAVjaH + Vuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAF + ZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pYldWemMyRm5aVjl6ZEc5d0lpd2lZVzFoZW + 05dUxXSmxaSEp2WTJzdGFXNTJiMk5oZEdsdmJrMWxkSEpwWTNNaU9uc2lhVzV3ZFhSVWIy + dGxia052ZFc1MElqb3hOaXdpYjNWMGNIVjBWRzlyWlc1RGIzVnVkQ0k2TVRnc0ltbHVkbT + lqWVhScGIyNU1ZWFJsYm1ONUlqb3hOelF6TENKbWFYSnpkRUo1ZEdWTVlYUmxibU41SWpv + eE5qQTRmWDA9IiwicCI6ImFiY2RlZmdoaWprbG0ife7O9uY= + headers: + Content-Type: + - application/vnd.amazon.eventstream + status: 200 OK + code: 200 + duration: 1.757821875s diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-haiku/tool.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-haiku-4-5/tool.yaml similarity index 57% rename from providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-haiku/tool.yaml rename to providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-haiku-4-5/tool.yaml index 902eae8895308c493e0bee35296e51d50ba73eaa..195499bb11f57264e21600db367692fe51bcf74c 100644 --- a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-haiku/tool.yaml +++ b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-haiku-4-5/tool.yaml @@ -15,21 +15,21 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.13.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-haiku-20240307-v1%3A0/invoke + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-haiku-4-5-20251001-v1%3A0/invoke method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 337 - body: '{"id":"msg_bdrk_012EK8eom7ArLnbCQErFKxPY","type":"message","role":"assistant","model":"claude-3-haiku-20240307","content":[{"type":"tool_use","id":"toolu_bdrk_018RFU2HzCBzsTUssfjW6HQP","name":"weather","input":{"location":"Florence, Italy"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":345,"output_tokens":53}}' + content_length: 478 + body: '{"model":"claude-haiku-4-5-20251001","id":"msg_bdrk_01VUYjtcfbdb6uPKH2Hn4j8v","type":"message","role":"assistant","content":[{"type":"tool_use","id":"toolu_bdrk_01Be1CWhLjkFwDBJNiHsRQjW","name":"weather","input":{"location":"Florence, Italy"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":577,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":54}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.068856584s + duration: 1.257004625s - id: 1 request: proto: HTTP/1.1 @@ -37,25 +37,25 @@ interactions: proto_minor: 1 content_length: 765 host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"id":"toolu_bdrk_018RFU2HzCBzsTUssfjW6HQP","input":{"location":"Florence, Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_bdrk_018RFU2HzCBzsTUssfjW6HQP","content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"id":"toolu_bdrk_01Be1CWhLjkFwDBJNiHsRQjW","input":{"location":"Florence, Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_bdrk_01Be1CWhLjkFwDBJNiHsRQjW","content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - Anthropic/Go 1.13.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-haiku-20240307-v1%3A0/invoke + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-haiku-4-5-20251001-v1%3A0/invoke method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 284 - body: '{"id":"msg_bdrk_0158zRRWfj852Wxa71rG33PN","type":"message","role":"assistant","model":"claude-3-haiku-20240307","content":[{"type":"text","text":"The weather in Florence, Italy is 40°C."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":413,"output_tokens":16}}' + content_length: 606 + body: '{"model":"claude-haiku-4-5-20251001","id":"msg_bdrk_01LNif1DfULnymGfmVHj6M4t","type":"message","role":"assistant","content":[{"type":"text","text":"The weather in Florence, Italy is currently **40°C (104°F)**, which is quite hot! It''s a warm summer day in Florence. Make sure to stay hydrated and use sun protection if you''re planning to visit or are currently there."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":646,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":56}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.069127458s + duration: 1.921312s diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-haiku-4-5/tool_streaming.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-haiku-4-5/tool_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..9771b0e9bc4839d5dc646fa439b424f780835912 --- /dev/null +++ b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-haiku-4-5/tool_streaming.yaml @@ -0,0 +1,244 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 468 + host: "" + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-haiku-4-5-20251001-v1%3A0/invoke-with-response-stream + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: !!binary | + AAACpQAAAEtxI/acCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG + xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs + SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWJXOWtaV3dpT2lKam + JHRjFaR1V0YUdGcGEzVXROQzAxTFRJd01qVXhNREF4SWl3aWFXUWlPaUp0YzJkZlltUnlh + MTh3TVU1Q1ZYWjJZMU0yWVV0eVVVSTBWRVEzVW5CS1drZ2lMQ0owZVhCbElqb2liV1Z6Yz + JGblpTSXNJbkp2YkdVaU9pSmhjM05wYzNSaGJuUWlMQ0pqYjI1MFpXNTBJanBiWFN3aWMz + UnZjRjl5WldGemIyNGlPbTUxYkd3c0luTjBiM0JmYzJWeGRXVnVZMlVpT201MWJHd3NJbl + Z6WVdkbElqcDdJbWx1Y0hWMFgzUnZhMlZ1Y3lJNk5UYzNMQ0pqWVdOb1pWOWpjbVZoZEds + dmJsOXBibkIxZEY5MGIydGxibk1pT2pBc0ltTmhZMmhsWDNKbFlXUmZhVzV3ZFhSZmRHOX + JaVzV6SWpvd0xDSmpZV05vWlY5amNtVmhkR2x2YmlJNmV5SmxjR2hsYldWeVlXeGZOVzFm + YVc1d2RYUmZkRzlyWlc1eklqb3dMQ0psY0dobGJXVnlZV3hmTVdoZmFXNXdkWFJmZEc5cl + pXNXpJam93ZlN3aWIzVjBjSFYwWDNSdmEyVnVjeUk2TWpaOWZYMD0iLCJwIjoiYWJjZGVm + Z2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFUifXenkDsAAAFiAA + AAS6yCsPkLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRp + b24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWT + I5dWRHVnVkRjlpYkc5amExOXpkR0Z5ZENJc0ltbHVaR1Y0SWpvd0xDSmpiMjUwWlc1MFgy + SnNiMk5ySWpwN0luUjVjR1VpT2lKMGIyOXNYM1Z6WlNJc0ltbGtJam9pZEc5dmJIVmZZbV + J5YTE4d01VdHdTamg0T1ZwclNrWXhjMmxCV21GalltcHhVR0VpTENKdVlXMWxJam9pZDJW + aGRHaGxjaUlzSW1sdWNIVjBJanA3ZlgxOSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdH + V2d3h5ekFCQ0RFRkdISUpLTE1OT1BRUlNUVVYifYRgCk4AAAD9AAAASzSI050LOmV2ZW50 + LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2 + FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5 + amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWFXNX + dkWFJmYW5OdmJsOWtaV3gwWVNJc0luQmhjblJwWVd4ZmFuTnZiaUk2SWlKOWZRPT0iLCJw + IjoiYWJjZGVmZ2hpamtsbW5vIn3KsirIAAABBAAAAEu68DIUCzpldmVudC10eXBlBwAFY2 + h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcA + BWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MF + lTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lhVzV3ZFhSZmFuTnZi + bDlrWld4MFlTSXNJbkJoY25ScFlXeGZhbk52YmlJNkludGNJbXh2WXlKOWZRPT0iLCJwIj + oiYWJjZGVmZ2hpamtsbW4ifT0qeVcAAAEHAAAAS/1QSMQLOmV2ZW50LXR5cGUHAAVjaHVu + aw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZX + ZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJ + c0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWFXNXdkWFJmYW5OdmJsOW + taV3gwWVNJc0luQmhjblJwWVd4ZmFuTnZiaUk2SW1GMGFXOGlmWDA9IiwicCI6ImFiY2Rl + ZmdoaWprbG1ub3BxcnN0dSJ9SWwepQAAATYAAABLYRHZ8gs6ZXZlbnQtdHlwZQcABWNodW + 5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVl + dmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0 + lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pYVc1d2RYUmZhbk52Ymw5 + a1pXeDBZU0lzSW5CaGNuUnBZV3hmYW5OdmJpSTZJbTVjSWpvZ1hDSkdiRzl5Wlc1akluMT + kiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJT + VFVWV1hZWjAxMjMiffdApAMAAAEkAAAAS3sxHRALOmV2ZW50LXR5cGUHAAVjaHVuaw06Y2 + 9udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7 + ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbH + VaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWFXNXdkWFJmYW5OdmJsOWtaV3gw + WVNJc0luQmhjblJwWVd4ZmFuTnZiaUk2SW1Vc0lFbDBZV3g1WENKOUluMTkiLCJwIjoiYW + JjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QIn1ghDhiAAAA1AAA + AEv4WZ7oCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW + 9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVky + OXVkR1Z1ZEY5aWJHOWphMTl6ZEc5d0lpd2lhVzVrWlhnaU9qQjkiLCJwIjoiYWJjZGVmZ2 + hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFVWV1gifaXzHwUAAAEM + AAAAS4qAedULOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYX + Rpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9p + YldWemMyRm5aVjlrWld4MFlTSXNJbVJsYkhSaElqcDdJbk4wYjNCZmNtVmhjMjl1SWpvaW + RHOXZiRjkxYzJVaUxDSnpkRzl3WDNObGNYVmxibU5sSWpwdWRXeHNmU3dpZFhOaFoyVWlP + bnNpYjNWMGNIVjBYM1J2YTJWdWN5STZOVFI5ZlE9PSIsInAiOiJhYmNkZWZnaGlqIn3wdy + J7AAABTAAAAEvScyGcCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFw + cGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWE + JsSWpvaWJXVnpjMkZuWlY5emRHOXdJaXdpWVcxaGVtOXVMV0psWkhKdlkyc3RhVzUyYjJO + aGRHbHZiazFsZEhKcFkzTWlPbnNpYVc1d2RYUlViMnRsYmtOdmRXNTBJam8xTnpjc0ltOT + FkSEIxZEZSdmEyVnVRMjkxYm5RaU9qVTBMQ0pwYm5adlkyRjBhVzl1VEdGMFpXNWplU0k2 + TVRJNU9Dd2labWx5YzNSQ2VYUmxUR0YwWlc1amVTSTZNVEUzTlgxOSIsInAiOiJhYmNkZW + ZnaGlqa2xtbm9wcXIife2cub0= + headers: + Content-Type: + - application/vnd.amazon.eventstream + status: 200 OK + code: 200 + duration: 1.387682667s +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 765 + host: "" + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"id":"toolu_bdrk_01KpJ8x9ZkJF1siAZacbjqPa","input":{"location":"Florence, Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_bdrk_01KpJ8x9ZkJF1siAZacbjqPa","content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-haiku-4-5-20251001-v1%3A0/invoke-with-response-stream + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: !!binary | + AAACjAAAAEu98rvpCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG + xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs + SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWJXOWtaV3dpT2lKam + JHRjFaR1V0YUdGcGEzVXROQzAxTFRJd01qVXhNREF4SWl3aWFXUWlPaUp0YzJkZlltUnlh + MTh3TVZScmJUVnFjMXBDWmtWck9HczRjVmROTVUxeVVFc2lMQ0owZVhCbElqb2liV1Z6Yz + JGblpTSXNJbkp2YkdVaU9pSmhjM05wYzNSaGJuUWlMQ0pqYjI1MFpXNTBJanBiWFN3aWMz + UnZjRjl5WldGemIyNGlPbTUxYkd3c0luTjBiM0JmYzJWeGRXVnVZMlVpT201MWJHd3NJbl + Z6WVdkbElqcDdJbWx1Y0hWMFgzUnZhMlZ1Y3lJNk5qUTJMQ0pqWVdOb1pWOWpjbVZoZEds + dmJsOXBibkIxZEY5MGIydGxibk1pT2pBc0ltTmhZMmhsWDNKbFlXUmZhVzV3ZFhSZmRHOX + JaVzV6SWpvd0xDSmpZV05vWlY5amNtVmhkR2x2YmlJNmV5SmxjR2hsYldWeVlXeGZOVzFm + YVc1d2RYUmZkRzlyWlc1eklqb3dMQ0psY0dobGJXVnlZV3hmTVdoZmFXNXdkWFJmZEc5cl + pXNXpJam93ZlN3aWIzVjBjSFYwWDNSdmEyVnVjeUk2TW4xOWZRPT0iLCJwIjoiYWJjZGVm + Z2hpamtsbW5vcHFyc3R1diJ9OPNARQAAARoAAABLZSAb9ws6ZXZlbnQtdHlwZQcABWNodW + 5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVl + dmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5emRHRnlkQ0 + lzSW1sdVpHVjRJam93TENKamIyNTBaVzUwWDJKc2IyTnJJanA3SW5SNWNHVWlPaUowWlho + MElpd2lkR1Y0ZENJNklpSjlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eH + l6QUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVowMTIzNDU2NyJ9WGPawAAAARsAAABLWEAy + Rws6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc2 + 9uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdW + dWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQm + xJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lKVWFHVWdZM1Z5Y21WdWRDSjlmUT09 + IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUFFSU1 + RVVlcifeSmCYQAAAEfAAAAS63AlIcLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10 + eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIj + oiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpv + d0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSW + dkMlZoZEdobGNpQnBiaUJHYkc5eVpXNWpaU3dnU1hSaGJIa2dhWE1nS2lvaWZYMD0iLCJw + IjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eSJ9EYGL0wAAARgAAABLH+BIlws6ZXZlbn + QtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNz + YWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRz + lqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdW + NGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJME1NS3dReUFvSW4xOSIsInAiOiJhYmNkZWZnaG + lqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaMDEifXmVW+gA + AAEbAAAAS1hAMkcLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbG + ljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJ + am9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWV + NJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSXhNRFRDc0VZcEtp + b3NJbjE5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU + 5PUFFSU1RVVldYWVowIn308W5XAAABHQAAAEvXAMfnCzpldmVudC10eXBlBwAFY2h1bmsN + OmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW + 50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJ + bWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW + 5SbGVIUWlPaUlnZDJocFkyZ2lmWDA9IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3 + eHl6QUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVowMTIzNDU2In3+GBqTAAABBQAAAEuHkB + ukCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pz + b24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1 + Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhC + bElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnYVhNZ2NYVnBkR1VpZlgwPSIsIn + AiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFIn24MFbcAAABAAAAAEtPcJTU + CzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb2 + 4NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1 + ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbE + lqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnYUc5MEluMTkiLCJwIjoiYWJjZGVm + Z2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSCJ9Pfz0fgAAAREAAABLEvAq5gs6ZXZlbn + QtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNz + YWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRz + lqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdW + NGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJdUlFbDBKM01nWVNKOWZRPT0iLCJwIjoiYWJjZG + VmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUSJ9uMNiwQAAAPwAAABL + Cej6LQs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi + 9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1 + ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMG + VYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ2QyRnliU0J6ZFcxdFpYSWlm + WDA9IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxciJ9dOTu7wAAAPYAAABLQ1jijAs6ZXZlbn + QtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNz + YWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRz + lqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdW + NGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ1pHRjVJR2x1SW4xOSIsInAiOiJhYmNkZWZnaG + lqa2xtbm9wcXJzdCJ9VP6fzwAAAQkAAABLQmD2pQs6ZXZlbnQtdHlwZQcABWNodW5rDTpj + b250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudH + siYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1s + dVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUm + xlSFFpT2lJZ1JteHZjbVZ1WTJVaEluMTkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1 + dnd4eXpBQkNERUZHSEkifcIfkGYAAAD1AAAASwT4mFwLOmV2ZW50LXR5cGUHAAVjaHVuaw + 06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZl + bnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0 + ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJ + blJsZUhRaU9pSWdUV0ZyWlNKOWZRPT0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFycyJ9CZ + q5+gAAAO8AAABLLqgXfws6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBh + cHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZV + hCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pX + eDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ2MzVnlaU0 + IwYnlCemRHRjVJbjE5IiwicCI6ImFiY2RlIn1zTxYTAAABBgAAAEvAMGF0CzpldmVudC10 + eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2 + UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWph + MTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZE + Y5a1pXeDBZU0lzSW5SbGVIUWlPaUlnYUhsa2NtRjBaV1FnWVc1a0lIVnpaU0o5ZlE9PSIs + InAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdCJ9cL9kdQAAARsAAABLWEAyRws6ZXZlbnQtdH + lwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdl + LXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYT + E5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRG + OWtaV3gwWVNJc0luUmxlSFFpT2lJZ2MzVnVjMk55WldWdUlHbG1JbjE5IiwicCI6ImFiY2 + RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUFFSU1RVVlcifX0i0UsA + AADtAAAAS1RoRB8LOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbG + ljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJ + am9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWV + NJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSWdlVzkxSjNKbElu + MTkiLCJwIjoiYWJjZGVmZ2hpamsifal6AZYAAAEYAAAASx/gSJcLOmV2ZW50LXR5cGUHAA + VjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBl + BwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3 + gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4 + MFlTSXNJblJsZUhRaU9pSWdjR3hoYm01cGJtY2dkRzhnZG1semFYUWdkR2hsSUdOcGRIa3 + VJbjE5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6In2zKFgcAAAA3wAAAEuP + ia/5CzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2 + pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVk + R1Z1ZEY5aWJHOWphMTl6ZEc5d0lpd2lhVzVrWlhnaU9qQjkiLCJwIjoiYWJjZGVmZ2hpam + tsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWjAxMjM0NTY3OCJ9 + 33gtaAAAATQAAABLG9GKkgs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHAB + BhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUow + ZVhCbElqb2liV1Z6YzJGblpWOWtaV3gwWVNJc0ltUmxiSFJoSWpwN0luTjBiM0JmY21WaG + MyOXVJam9pWlc1a1gzUjFjbTRpTENKemRHOXdYM05sY1hWbGJtTmxJanB1ZFd4c2ZTd2lk + WE5oWjJVaU9uc2liM1YwY0hWMFgzUnZhMlZ1Y3lJNk5UUjlmUT09IiwicCI6ImFiY2RlZm + doaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUFFSU1RVVldYIn2IyFxDAAAB + awAAAEuhktKICzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2 + F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpv + aWJXVnpjMkZuWlY5emRHOXdJaXdpWVcxaGVtOXVMV0psWkhKdlkyc3RhVzUyYjJOaGRHbH + ZiazFsZEhKcFkzTWlPbnNpYVc1d2RYUlViMnRsYmtOdmRXNTBJam8yTkRZc0ltOTFkSEIx + ZEZSdmEyVnVRMjkxYm5RaU9qVTBMQ0pwYm5adlkyRjBhVzl1VEdGMFpXNWplU0k2TXprMk + 1Dd2labWx5YzNSQ2VYUmxUR0YwWlc1amVTSTZNelV3TjMxOSIsInAiOiJhYmNkZWZnaGlq + a2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXIn1s2I5h + headers: + Content-Type: + - application/vnd.amazon.eventstream + status: 200 OK + code: 200 + duration: 3.658817167s diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-opus-4-6/simple.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-opus-4-6/simple.yaml new file mode 100644 index 0000000000000000000000000000000000000000..4a6163758ea68ffe65e02181285f65028cda48e6 --- /dev/null +++ b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-opus-4-6/simple.yaml @@ -0,0 +1,32 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 211 + host: "" + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Say hi in Portuguese","type":"text"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"anthropic_version":"bedrock-2023-05-31"}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-opus-4-6-v1/invoke + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 634 + body: "{\"model\":\"claude-opus-4-6\",\"id\":\"msg_bdrk_019MXdjEDwT8AxvGrwKpndmP\",\"type\":\"message\",\"role\":\"assistant\",\"content\":[{\"type\":\"text\",\"text\":\"**Olá!** \U0001F44B\\n\\nThis is the most common way to say \\\"hi\\\" in Portuguese. Other options include:\\n\\n- **Oi!** (very casual, especially in Brazilian Portuguese)\\n- **E aí?** (informal, like \\\"What's up?\\\" in Brazil)\\n- **Tudo bem?** (like \\\"How's it going?\\\")\"}],\"stop_reason\":\"end_turn\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":17,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"cache_creation\":{\"ephemeral_5m_input_tokens\":0,\"ephemeral_1h_input_tokens\":0},\"output_tokens\":86}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 3.008987083s diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-opus-4-6/simple_streaming.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-opus-4-6/simple_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..501a33e3b04f240d3ffbf38bfa98b974de73db23 --- /dev/null +++ b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-opus-4-6/simple_streaming.yaml @@ -0,0 +1,203 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 211 + host: "" + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Say hi in Portuguese","type":"text"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"anthropic_version":"bedrock-2023-05-31"}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-opus-4-6-v1/invoke-with-response-stream + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: !!binary | + AAACiQAAAEt1EjSZCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG + xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs + SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWJXOWtaV3dpT2lKam + JHRjFaR1V0YjNCMWN5MDBMVFlpTENKcFpDSTZJbTF6WjE5aVpISnJYekF4VjIxclNqWnVk + Mk5sVmpWdFFtZDVaVVIzTjBaeWJpSXNJblI1Y0dVaU9pSnRaWE56WVdkbElpd2ljbTlzWl + NJNkltRnpjMmx6ZEdGdWRDSXNJbU52Ym5SbGJuUWlPbHRkTENKemRHOXdYM0psWVhOdmJp + STZiblZzYkN3aWMzUnZjRjl6WlhGMVpXNWpaU0k2Ym5Wc2JDd2lkWE5oWjJVaU9uc2lhVz + V3ZFhSZmRHOXJaVzV6SWpveE55d2lZMkZqYUdWZlkzSmxZWFJwYjI1ZmFXNXdkWFJmZEc5 + clpXNXpJam93TENKallXTm9aVjl5WldGa1gybHVjSFYwWDNSdmEyVnVjeUk2TUN3aVkyRm + phR1ZmWTNKbFlYUnBiMjRpT25zaVpYQm9aVzFsY21Gc1h6VnRYMmx1Y0hWMFgzUnZhMlZ1 + Y3lJNk1Dd2laWEJvWlcxbGNtRnNYekZvWDJsdWNIVjBYM1J2YTJWdWN5STZNSDBzSW05MW + RIQjFkRjkwYjJ0bGJuTWlPakY5ZlgwPSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2 + d3h5ekFCQ0RFRkdISSJ9z+jAEwAAARsAAABLWEAyRws6ZXZlbnQtdHlwZQcABWNodW5rDT + pjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVu + dHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5emRHRnlkQ0lzSW + 1sdVpHVjRJam93TENKamIyNTBaVzUwWDJKc2IyTnJJanA3SW5SNWNHVWlPaUowWlhoMElp + d2lkR1Y0ZENJNklpSjlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QU + JDREVGR0hJSktMTU5PUFFSU1RVVldYWVowMTIzNDU2NzgifXys9SkAAADyAAAAS7bYREwL + OmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg + 06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVk + RjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSW + pvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSXFLaUo5ZlE9PSIsInAiOiJhYmNkZWZn + aGlqa2xtbm9wcXJzdCJ9A98wlAAAAPMAAABLi7ht/As6ZXZlbnQtdHlwZQcABWNodW5rDT + pjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVu + dHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW + 1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0lu + UmxlSFFpT2lKUGJNT2hJU0o5ZlE9PSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcSJ9RWwN5Q + AAAQMAAABLCNDuBAs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBs + aWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbE + lqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZ + U0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJcUtpRHduNUdMWE + c1Y2JsUm9hWE1pZlgwPSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHUifTqDlr8AAAD8 + AAAASwno+i0LOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYX + Rpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9p + WTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNm + V5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSWdhWE1nZEdobEluMTki + LCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXoifVhvbnwAAAERAAAASxLwKuYLOm + V2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06 + bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRj + lpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpv + aWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSWdiVzl6ZENKOWZRPT0iLCJwIjoiYWJjZG + VmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFUifeSuqZgAAAEc + AAAAS+pg7lcLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYX + Rpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9p + WTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNm + V5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSWdZMjl0Ylc5dUluMTki + LCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVF + VWV1hZWjAxMjM0NSJ9BwvITQAAATAAAABL7lEsUgs6ZXZlbnQtdHlwZQcABWNodW5rDTpj + b250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudH + siYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1s + dVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUm + xlSFFpT2lJZ2QyRjVJSFJ2SUhOaGVTQmNJbWhwWENJZ2FXNGdVRzl5ZEhWbmRXVnpaU0o5 + ZlE9PSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE1OT1 + AifQGZsLcAAAENAAAAS7fgUGULOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBl + BwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZX + lKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xD + SmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSXVJRT + kwYUdWeUluMTkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElK + S0xNTk9QUSJ9hPWa3gAAARsAAABLWEAyRws6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW + 50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0 + ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVj + RJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFp + T2lJZ2IzQjBhVzl1Y3lKOWZRPT0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eX + pBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWjAifRJacbYAAAEpAAAAS4Oh2aELOmV2ZW50 + LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2 + FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5 + amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVj + RkRjlrWld4MFlTSXNJblJsZUhRaU9pSWdhVzVqYkhWa1pUcGNibHh1TFNBcUtpSjlmUT09 + IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUFFSU1 + RVVldYWVowMTIifWIFBIAAAADwAAAAS8wYFywLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29u + dGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7Im + J5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVa + R1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZU + hRaU9pSlBhU0VxS2lBb2RtVnllU0o5ZlE9PSIsInAiOiJhYmNkZWYifTYgIp4AAAEMAAAA + S4qAedULOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb2 + 4vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5 + dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5Sj + BlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSWdhVzVtYjNKdFlXd3NJR1Z6 + Y0dWamFXRnNiSGtpZlgwPSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2In2wl9WaAA + AA6AAAAEuciMtvCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxp + Y2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSW + pvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlT + STZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnWTI5dGJXOXVJbj + E5IiwicCI6ImFiY2RlZiJ9+YEYNgAAAP4AAABLcyipTQs6ZXZlbnQtdHlwZQcABWNodW5r + DTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldm + VudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lz + SW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0 + luUmxlSFFpT2lJZ2FXNGdRbkpoZW1sc2FXRnVJbjE5IiwicCI6ImFiY2RlZmdoaWprbG1u + b3BxcnN0In1z24NyAAABFgAAAEug0Pb2CzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbn + QtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRl + cyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNE + lqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlP + aUlnVUc5eWRIVm5kV1Z6WlNsY2JpMGdLaXBGSW4xOSIsInAiOiJhYmNkZWZnaGlqa2xtbm + 9wcXJzdHV2d3h5ekFCQ0RFRkdISUoifXEiCnQAAAEnAAAASzyRZ8ALOmV2ZW50LXR5cGUH + AAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eX + BlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWta + V3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWl + d4MFlTSXNJblJsZUhRaU9pSWdZY090UHlvcUlDaGpZWE4xWVd3c0luMTkiLCJwIjoiYWJj + ZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWjAxMj + M0In1nDu1pAAAA8AAAAEvMGBcsCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlw + ZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6Im + V5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dM + Q0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnYk + dsclpTSjlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1uIn2RR5o3AAABCgAAAEsFwIx1Czpl + dmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm + 1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5 + aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2 + lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnWENKWGFHRjBJbjE5IiwicCI6ImFiY2Rl + ZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU4ifcBWZFYAAADoAAAAS5yIy2 + 8LOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNv + bg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVn + VkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJs + SWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSW5jeUIxY0Q5Y0lpSjlmUT09IiwicC + I6ImFiIn06ZuzWAAABHgAAAEuQoL03CzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQt + dHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcy + I6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElq + b3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaU + lnYVc0Z1FuSmhlbWxzSW4xOSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFC + Q0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaMDEyMyJ9rfbwoAAAAR4AAABLkKC9Nws6ZXZlbn + QtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNz + YWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRz + lqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdW + NGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJcFhHNHRJQ29xUWlKOWZRPT0iLCJwIjoiYWJjZG + VmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWjAxMjMi + fYbefqkAAAEiAAAAS/Rx6LALOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBw + AQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlK + MGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSm + taV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSnZiU0Jr + YVdFcUtpSjlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0 + hJSktMTU5PUFFSU1RVVldYWVowMTIzNDU2NyJ95SMp2QAAAQYAAABLwDBhdAs6ZXZlbnQt + dHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYW + dlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlq + YTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNG + RGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ0tFZHZiMlFpZlgwPSIsInAiOiJhYmNkZWZnaGlq + a2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUoifUHvyxwAAAEoAAAAS77B8BELOmV2ZW50LX + R5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2Fn + ZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5am + ExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRk + RjlrWld4MFlTSXNJblJsZUhRaU9pSWdiVzl5Ym1sdVp5bGNiaTBnS2lwQ2IyRWlmWDA9Ii + wicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUFFSU1RV + VldYWVowMSJ9qIdJ9AAAAQcAAABL/VBIxAs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW + 50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0 + ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVj + RJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFp + T2lJZ2RHRnlaR1VxS2lBb1IyOXZaQ0JoWm5SbGNtNXZiMjRwWEc0dEluMTkiLCJwIjoiYW + JjZGVmZ2hpIn1eiNK0AAAA+AAAAEv8aFztCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRl + bnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieX + RlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdW + NElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUW + lPaUlnS2lwQ2IyRWdibTlwZEdVcUtpQW9JbjE5IiwicCI6ImFiY2RlZmdoaWoiffxCNvIA + AAEKAAAASwXAjHULOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbG + ljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJ + am9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWV + NJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSkhiMjlrSUdWMlpX + NXBibWNwSW4xOSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRiJ9R2 + wwMQAAAKgAAABLxHuTJgs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBh + cHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZV + hCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5emRHOXdJaXdpYVc1a1pYZ2lPakI5IiwicCI6 + ImFiY2RlZiJ9rc1dOgAAAQsAAABLOKClxQs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW + 50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0 + ZXMiOiJleUowZVhCbElqb2liV1Z6YzJGblpWOWtaV3gwWVNJc0ltUmxiSFJoSWpwN0luTj + BiM0JmY21WaGMyOXVJam9pWlc1a1gzUjFjbTRpTENKemRHOXdYM05sY1hWbGJtTmxJanB1 + ZFd4c2ZTd2lkWE5oWjJVaU9uc2liM1YwY0hWMFgzUnZhMlZ1Y3lJNk1UQTJmWDA9IiwicC + I6ImFiY2RlZmdoaSJ9guZV9AAAAWYAAABLWQIWOQs6ZXZlbnQtdHlwZQcABWNodW5rDTpj + b250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudH + siYnl0ZXMiOiJleUowZVhCbElqb2liV1Z6YzJGblpWOXpkRzl3SWl3aVlXMWhlbTl1TFdK + bFpISnZZMnN0YVc1MmIyTmhkR2x2YmsxbGRISnBZM01pT25zaWFXNXdkWFJVYjJ0bGJrTn + ZkVzUwSWpveE55d2liM1YwY0hWMFZHOXJaVzVEYjNWdWRDSTZNVEEyTENKcGJuWnZZMkYw + YVc5dVRHRjBaVzVqZVNJNk1qYzROQ3dpWm1seWMzUkNlWFJsVEdGMFpXNWplU0k2TVRNd0 + 1uMTkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9Q + UVIifeTy5eA= + headers: + Content-Type: + - application/vnd.amazon.eventstream + status: 200 OK + code: 200 + duration: 1.457782208s diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-opus-4-6/tool.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-opus-4-6/tool.yaml new file mode 100644 index 0000000000000000000000000000000000000000..d6f84c0a1e02be8d633d1947ae4bfce0cbabfa52 --- /dev/null +++ b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-opus-4-6/tool.yaml @@ -0,0 +1,61 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 468 + host: "" + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-opus-4-6-v1/invoke + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 468 + body: '{"model":"claude-opus-4-6","id":"msg_bdrk_018p85kddzR93uDiqsoHiuwy","type":"message","role":"assistant","content":[{"type":"tool_use","id":"toolu_bdrk_01AsFGAk2weH9JHouimHMpFY","name":"weather","input":{"location":"Florence, Italy"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":578,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":54}}' + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 2.095322875s +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 765 + host: "" + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"id":"toolu_bdrk_01AsFGAk2weH9JHouimHMpFY","input":{"location":"Florence, Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_bdrk_01AsFGAk2weH9JHouimHMpFY","content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-opus-4-6-v1/invoke + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: 662 + body: "{\"model\":\"claude-opus-4-6\",\"id\":\"msg_bdrk_01AFSbhj1i5fMCuuskhtnBEr\",\"type\":\"message\",\"role\":\"assistant\",\"content\":[{\"type\":\"text\",\"text\":\"The current weather in **Florence, Italy** is **40°C** (104°F). That's extremely hot! \U0001F321️☀️\\n\\nMake sure to stay hydrated, wear sunscreen, and try to stay in the shade or indoors during the hottest parts of the day if you're visiting. Is there anything else you'd like to know?\"}],\"stop_reason\":\"end_turn\",\"stop_sequence\":null,\"usage\":{\"input_tokens\":647,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"cache_creation\":{\"ephemeral_5m_input_tokens\":0,\"ephemeral_1h_input_tokens\":0},\"output_tokens\":81}}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 3.199455209s diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-opus-4-6/tool_streaming.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-opus-4-6/tool_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..6b4700a3cdc86f255600af1bc6850bdfddfd306f --- /dev/null +++ b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-opus-4-6/tool_streaming.yaml @@ -0,0 +1,280 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 468 + host: "" + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-opus-4-6-v1/invoke-with-response-stream + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: !!binary | + AAACeAAAAEsARk10CzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG + xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs + SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWJXOWtaV3dpT2lKam + JHRjFaR1V0YjNCMWN5MDBMVFlpTENKcFpDSTZJbTF6WjE5aVpISnJYekF4Uld0R1FrcG5U + RUZVZEhKWFRXaHJZV2MxY2tGRlNpSXNJblI1Y0dVaU9pSnRaWE56WVdkbElpd2ljbTlzWl + NJNkltRnpjMmx6ZEdGdWRDSXNJbU52Ym5SbGJuUWlPbHRkTENKemRHOXdYM0psWVhOdmJp + STZiblZzYkN3aWMzUnZjRjl6WlhGMVpXNWpaU0k2Ym5Wc2JDd2lkWE5oWjJVaU9uc2lhVz + V3ZFhSZmRHOXJaVzV6SWpvMU56Z3NJbU5oWTJobFgyTnlaV0YwYVc5dVgybHVjSFYwWDNS + dmEyVnVjeUk2TUN3aVkyRmphR1ZmY21WaFpGOXBibkIxZEY5MGIydGxibk1pT2pBc0ltTm + hZMmhsWDJOeVpXRjBhVzl1SWpwN0ltVndhR1Z0WlhKaGJGODFiVjlwYm5CMWRGOTBiMnRs + Ym5NaU9qQXNJbVZ3YUdWdFpYSmhiRjh4YUY5cGJuQjFkRjkwYjJ0bGJuTWlPakI5TENKdm + RYUndkWFJmZEc5clpXNXpJam95TlgxOWZRPT0iLCJwIjoiYWJjZGVmZ2hpamtsbW4ifRWa + xhoAAAFvAAAAS1QSdEgLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYX + BwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVY + QmxJam9pWTI5dWRHVnVkRjlpYkc5amExOXpkR0Z5ZENJc0ltbHVaR1Y0SWpvd0xDSmpiMj + UwWlc1MFgySnNiMk5ySWpwN0luUjVjR1VpT2lKMGIyOXNYM1Z6WlNJc0ltbGtJam9pZEc5 + dmJIVmZZbVJ5YTE4d01Vb3pjVUl4TW5aSU4zUm5hRVJLTnpSd1RucG5jRGdpTENKdVlXMW + xJam9pZDJWaGRHaGxjaUlzSW1sdWNIVjBJanA3ZlgxOSIsInAiOiJhYmNkZWZnaGlqa2xt + bm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaMDEyMzQ1Njc4In3kYK + RvAAABIAAAAEuOsbvQCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFw + cGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWE + JsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4 + MFlTSTZleUowZVhCbElqb2lhVzV3ZFhSZmFuTnZibDlrWld4MFlTSXNJbkJoY25ScFlXeG + Zhbk52YmlJNklpSjlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJD + REVGR0hJSktMTU5PUFFSU1RVVldYIn0yBxjAAAABBgAAAEvAMGF0CzpldmVudC10eXBlBw + AFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlw + ZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWl + d4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lhVzV3ZFhSZmFu + TnZibDlrWld4MFlTSXNJbkJoY25ScFlXeGZhbk52YmlJNkludGNJbXh2WTJGMEluMTkiLC + JwIjoiYWJjZGVmZ2hpamtsbW5vcCJ9JyNvrAAAASEAAABLs9GSYAs6ZXZlbnQtdHlwZQcA + BWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cG + UHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pX + eDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pYVc1d2RYUmZhbk + 52Ymw5a1pXeDBZU0lzSW5CaGNuUnBZV3hmYW5OdmJpSTZJbWx2Ymx3aU9pQmNJa1pzYjNK + bEluMTkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSEkifWPGM9 + 0AAAENAAAAS7fgUGULOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBw + bGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQm + xJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gw + WVNJNmV5SjBlWEJsSWpvaWFXNXdkWFJmYW5OdmJsOWtaV3gwWVNJc0luQmhjblJwWVd4Zm + FuTnZiaUk2SW01alpTd2dTWFJoSW4xOSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2 + dyJ9XqlrQgAAASYAAABLAfFOcAs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cG + UHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJl + eUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TE + NKa1pXeDBZU0k2ZXlKMGVYQmxJam9pYVc1d2RYUmZhbk52Ymw5a1pXeDBZU0lzSW5CaGNu + UnBZV3hmYW5OdmJpSTZJbXg1WENKOUluMTkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3 + R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWiJ9XuCuNQAAAN4AAABLsumGSQs6 + ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDT + ptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRG + OWliRzlqYTE5emRHOXdJaXdpYVc1a1pYZ2lPakI5IiwicCI6ImFiY2RlZmdoaWprbG1ub3 + BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVowMTIzNDU2NyJ94MnS9gAA + AT8AAABLbAG7gws6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaW + NhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElq + b2liV1Z6YzJGblpWOWtaV3gwWVNJc0ltUmxiSFJoSWpwN0luTjBiM0JmY21WaGMyOXVJam + 9pZEc5dmJGOTFjMlVpTENKemRHOXdYM05sY1hWbGJtTmxJanB1ZFd4c2ZTd2lkWE5oWjJV + aU9uc2liM1YwY0hWMFgzUnZhMlZ1Y3lJNk5UUjlmUT09IiwicCI6ImFiY2RlZmdoaWprbG + 1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVowMTIzNDU2NzgifUaV + cB8AAAFkAAAASyPCRVkLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYX + BwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVY + QmxJam9pYldWemMyRm5aVjl6ZEc5d0lpd2lZVzFoZW05dUxXSmxaSEp2WTJzdGFXNTJiMk + 5oZEdsdmJrMWxkSEpwWTNNaU9uc2lhVzV3ZFhSVWIydGxia052ZFc1MElqbzFOemdzSW05 + MWRIQjFkRlJ2YTJWdVEyOTFiblFpT2pVMExDSnBiblp2WTJGMGFXOXVUR0YwWlc1amVTST + ZOakUxTml3aVptbHljM1JDZVhSbFRHRjBaVzVqZVNJNk5UY3hNSDE5IiwicCI6ImFiY2Rl + ZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUCJ9S0BcKA== + headers: + Content-Type: + - application/vnd.amazon.eventstream + status: 200 OK + code: 200 + duration: 5.862943416s +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 765 + host: "" + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"id":"toolu_bdrk_01J3qB12vH7tghDJ74pNzgp8","input":{"location":"Florence, Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_bdrk_01J3qB12vH7tghDJ74pNzgp8","content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-opus-4-6-v1/invoke-with-response-stream + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: !!binary | + AAACbQAAAEuoRlWGCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG + xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs + SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWJXOWtaV3dpT2lKam + JHRjFaR1V0YjNCMWN5MDBMVFlpTENKcFpDSTZJbTF6WjE5aVpISnJYekF4Ukdwa1JVWkth + Rzl0WTNBMGVIaHZSbFJuVm1wUVdTSXNJblI1Y0dVaU9pSnRaWE56WVdkbElpd2ljbTlzWl + NJNkltRnpjMmx6ZEdGdWRDSXNJbU52Ym5SbGJuUWlPbHRkTENKemRHOXdYM0psWVhOdmJp + STZiblZzYkN3aWMzUnZjRjl6WlhGMVpXNWpaU0k2Ym5Wc2JDd2lkWE5oWjJVaU9uc2lhVz + V3ZFhSZmRHOXJaVzV6SWpvMk5EY3NJbU5oWTJobFgyTnlaV0YwYVc5dVgybHVjSFYwWDNS + dmEyVnVjeUk2TUN3aVkyRmphR1ZmY21WaFpGOXBibkIxZEY5MGIydGxibk1pT2pBc0ltTm + hZMmhsWDJOeVpXRjBhVzl1SWpwN0ltVndhR1Z0WlhKaGJGODFiVjlwYm5CMWRGOTBiMnRs + Ym5NaU9qQXNJbVZ3YUdWdFpYSmhiRjh4YUY5cGJuQjFkRjkwYjJ0bGJuTWlPakI5TENKdm + RYUndkWFJmZEc5clpXNXpJam95ZlgxOSIsInAiOiJhYmNkZWZnIn1G7q4cAAAA/QAAAEs0 + iNOdCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2 + pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVk + R1Z1ZEY5aWJHOWphMTl6ZEdGeWRDSXNJbWx1WkdWNElqb3dMQ0pqYjI1MFpXNTBYMkpzYj + JOcklqcDdJblI1Y0dVaU9pSjBaWGgwSWl3aWRHVjRkQ0k2SWlKOWZRPT0iLCJwIjoiYWJj + ZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERSJ94ZljxQAAASIAAABL9HHosAs6ZXZlbn + QtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNz + YWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRz + lqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdW + NGRGOWtaV3gwWVNJc0luUmxlSFFpT2lKVWFHVWdZM1Z5Y21WdWRDSjlmUT09IiwicCI6Im + FiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVow + MTIzIn1O+3U7AAABGAAAAEsf4EiXCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdH + lwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6 + ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3 + dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUln + ZDJWaGRHaGxjaUJwYmlBcUtpSjlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dX + Z3eHl6QUJDREVGR0hJSktMTU5PUCJ9MjR78QAAARYAAABLoND29gs6ZXZlbnQtdHlwZQcA + BWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cG + UHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pX + eDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3 + gwWVNJc0luUmxlSFFpT2lKR2JHOXlaVzVqWlN3Z1NYUmhiSGtxS2lCcGN5QXFLalF3d3JB + aWZYMD0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4In00/1zvAAAA9gAAAEtDWO + KMCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pz + b24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1 + Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhC + bElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUpES2lvaWZYMD0iLCJwIjoiYWJjZG + VmZ2hpamtsbW5vcHFyc3R1dnd4In3N/U2LAAABBAAAAEu68DIUCzpldmVudC10eXBlBwAF + Y2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQ + cABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4 + MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeD + BZU0lzSW5SbGVIUWlPaUlnS0RFd05DSjlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3Bx + cnN0dXZ3eHl6QUJDREVGR0giff7lMJkAAAEXAAAAS52w30YLOmV2ZW50LXR5cGUHAAVjaH + Vuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAF + ZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWV + NJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlT + SXNJblJsZUhRaU9pTENzRVlwTGlCVWFHRjBJbjE5IiwicCI6ImFiY2RlZmdoaWprbG1ub3 + BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUFFSU1RVVlcifeKS1ukAAAEbAAAAS1hAMkcL + OmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg + 06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVk + RjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSW + pvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSW5jeUJsZUhSeVpXMWxiSGtpZlgwPSIs + InAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE1OT1BRUlNUVV + ZXIn39g8mjAAABCAAAAEt/AN8VCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlw + ZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6Im + V5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dM + Q0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnYU + c5MElTQWlmWDA9IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJ + SktMIn36rmPvAAABGQAAAEsigGEnCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdH + lwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6 + ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3 + dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUx3 + bjR5aDc3aVBJbjE5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0 + hJSktMTU5PUFFSU1RVVldYWVowMTIifVFbMC0AAAEBAAAAS3IQvWQLOmV2ZW50LXR5cGUH + AAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eX + BlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWta + V3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWl + d4MFlTSXNJblJsZUhRaU9pTGltSUR2dUk5Y2JseHVUV0ZyWlNKOWZRPT0iLCJwIjoiYWJj + ZGVmZ2hpamtsbW5vcHFycyJ9BZQT4AAAAR0AAABL1wDH5ws6ZXZlbnQtdHlwZQcABWNodW + 5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVl + dmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0 + lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJ + c0luUmxlSFFpT2lJZ2MzVnlaU0IwYnlKOWZRPT0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcH + Fyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWjAxMiJ9N+xpogAAASYAAABL + AfFOcAs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi + 9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1 + ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMG + VYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ2MzUmhlU0JvZVdSeVlYUmxa + Q3dpZlgwPSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE + 1OT1BRUlNUVVZXWFlaMDEyMyJ9UDjZcQAAAQQAAABLuvAyFAs6ZXZlbnQtdHlwZQcABWNo + dW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAA + VldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZ + U0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWV + NJc0luUmxlSFFpT2lJZ2QyVmhjaUJ6ZFc1elkzSmxaVzRzSUdGdVpDQjBjbmtpZlgwPSIs + InAiOiJhYmNkZWZnaGlqIn3Mzm6wAAAA9AAAAEs5mLHsCzpldmVudC10eXBlBwAFY2h1bm + sNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2 + ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSX + NJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lz + SW5SbGVIUWlPaUlnZEc4Z2MzUmhlU0o5ZlE9PSIsInAiOiJhYmNkZWZnaGlqa2xtbiJ90v + GcgAAAAOgAAABLnIjLbws6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBh + cHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZV + hCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pX + eDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ2FXNGlmWD + A9IiwicCI6ImFiY2RlZmdoaWoifTXlmxsAAAD7AAAAS7vIJj0LOmV2ZW50LXR5cGUHAAVj + aHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBw + AFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gw + WVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MF + lTSXNJblJsZUhRaU9pSWdkR2hsSW4xOSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2 + d3h5ekFCQyJ9vGlVqQAAAREAAABLEvAq5gs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW + 50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0 + ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVj + RJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFp + T2lJZ2MyaGhaR1VnYjNJaWZYMD0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eX + pBQkNERUZHSElKS0xNTk9QUSJ9Y9O5xgAAAQ4AAABL8EAqtQs6ZXZlbnQtdHlwZQcABWNo + dW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAA + VldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZ + U0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWV + NJc0luUmxlSFFpT2lJZ2FXNWtJbjE5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3 + eHl6QUJDREVGR0hJSktMTU5PUFFSU1RVViJ9WFMopgAAARYAAABLoND29gs6ZXZlbnQtdH + lwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdl + LXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYT + E5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRG + OWtaV3gwWVNJc0luUmxlSFFpT2lKdmIzSnpJR1IxY21sdVp5QjBhR1VnYUc5MGRHVnpkQ0 + J3WVhKMGN5QnZaaUIwYUdVaWZYMD0iLCJwIjoiYWJjZGVmZ2hpamtsIn0gfWUBAAABCwAA + AEs4oKXFCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW + 9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVky + OXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleU + owZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnWkdGNUlHbG1JbjE5Iiwi + cCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PIn1gCTcyAA + ABDQAAAEu34FBlCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxp + Y2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSW + pvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlT + STZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnZVc5MUozSmxJSF + pwYzJsMGFXNW5JbjE5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREUi + fa0CBdMAAADlAAAAS2QYD94LOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBw + AQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlK + MGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSm + taV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSXVJbjE5 + IiwicCI6ImFiY2RlZmdoaWprIn3CaYscAAABQgAAAEttQ5/9CzpldmVudC10eXBlBwAFY2 + h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcA + BWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MF + lTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZ + U0lzSW5SbGVIUWlPaUlnU1hNZ2RHaGxjbVVnWVc1NWRHaHBibWNnWld4elpTQjViM1VuWk + NCc2FXdGxJSFJ2SW4xOSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RF + RkdISUpLTE1OT1BRUlNUVVZXWFlaMDEyMyJ9yuNHuAAAAQAAAABLT3CU1As6ZXZlbnQtdH + lwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdl + LXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYT + E5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRG + OWtaV3gwWVNJc0luUmxlSFFpT2lJZ2EyNXZkejhpZlgwPSIsInAiOiJhYmNkZWZnaGlqa2 + xtbm9wcXJzdHV2d3h5ekFCQ0QifUX3QAAAAADCAAAASxf5/MoLOmV2ZW50LXR5cGUHAAVj + aHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBw + AFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOXpkRzl3 + SWl3aWFXNWtaWGdpT2pCOSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0 + RFRiJ9xnYrwQAAAR8AAABLrcCUhws6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5 + cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOi + JleUowZVhCbElqb2liV1Z6YzJGblpWOWtaV3gwWVNJc0ltUmxiSFJoSWpwN0luTjBiM0Jm + Y21WaGMyOXVJam9pWlc1a1gzUjFjbTRpTENKemRHOXdYM05sY1hWbGJtTmxJanB1ZFd4c2 + ZTd2lkWE5oWjJVaU9uc2liM1YwY0hWMFgzUnZhMlZ1Y3lJNk9ERjlmUT09IiwicCI6ImFi + Y2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDIn1lMbk5AAABdwAAAEsEgqgLCzpldmVudC + 10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3Nh + Z2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaWJXVnpjMkZuWlY5emRHOX + dJaXdpWVcxaGVtOXVMV0psWkhKdlkyc3RhVzUyYjJOaGRHbHZiazFsZEhKcFkzTWlPbnNp + YVc1d2RYUlViMnRsYmtOdmRXNTBJam8yTkRjc0ltOTFkSEIxZEZSdmEyVnVRMjkxYm5RaU + 9qZ3hMQ0pwYm5adlkyRjBhVzl1VEdGMFpXNWplU0k2TXpBeE9Td2labWx5YzNSQ2VYUmxU + R0YwWlc1amVTSTZNVFEwTm4xOSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ek + FCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaMDEyMzQ1Njc4In0EN7ew + headers: + Content-Type: + - application/vnd.amazon.eventstream + status: 200 OK + code: 200 + duration: 1.627452125s diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-haiku/simple.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-sonnet-4-5/simple.yaml similarity index 56% rename from providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-haiku/simple.yaml rename to providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-sonnet-4-5/simple.yaml index bd66b5c6981c1cdaea0ca6af93d9d92860befce1..78e665749218d525874a0a2575de04c59d84be92 100644 --- a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-haiku/simple.yaml +++ b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-sonnet-4-5/simple.yaml @@ -15,18 +15,18 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.13.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-haiku-20240307-v1%3A0/invoke + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-sonnet-4-5-20250929-v1%3A0/invoke method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 247 - body: '{"id":"msg_bdrk_019bWLruSqBTAJcMDVgwSMYG","type":"message","role":"assistant","model":"claude-3-haiku-20240307","content":[{"type":"text","text":"Olá!"}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":16,"output_tokens":7}}' + content_length: 389 + body: '{"model":"claude-sonnet-4-5-20250929","id":"msg_bdrk_01Fe3fvuzYSWMBCQSbfoatP7","type":"message","role":"assistant","content":[{"type":"text","text":"Olá!"}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":7}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 507.486375ms + duration: 2.729282584s diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-sonnet-4-5/simple_streaming.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-sonnet-4-5/simple_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..4d9e4e72329aa5484fec9f87dd2d3c2689b25572 --- /dev/null +++ b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-sonnet-4-5/simple_streaming.yaml @@ -0,0 +1,71 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 211 + host: "" + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"Say hi in Portuguese","type":"text"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"anthropic_version":"bedrock-2023-05-31"}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-sonnet-4-5-20250929-v1%3A0/invoke-with-response-stream + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: !!binary | + AAACiQAAAEt1EjSZCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG + xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs + SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWJXOWtaV3dpT2lKam + JHRjFaR1V0YzI5dWJtVjBMVFF0TlMweU1ESTFNRGt5T1NJc0ltbGtJam9pYlhOblgySmtj + bXRmTURFNFVXMVllSGRtVVhSeVpVdzFVek50WkRkT1JYVkVJaXdpZEhsd1pTSTZJbTFsYz + NOaFoyVWlMQ0p5YjJ4bElqb2lZWE56YVhOMFlXNTBJaXdpWTI5dWRHVnVkQ0k2VzEwc0lu + TjBiM0JmY21WaGMyOXVJanB1ZFd4c0xDSnpkRzl3WDNObGNYVmxibU5sSWpwdWRXeHNMQ0 + oxYzJGblpTSTZleUpwYm5CMWRGOTBiMnRsYm5NaU9qRTJMQ0pqWVdOb1pWOWpjbVZoZEds + dmJsOXBibkIxZEY5MGIydGxibk1pT2pBc0ltTmhZMmhsWDNKbFlXUmZhVzV3ZFhSZmRHOX + JaVzV6SWpvd0xDSmpZV05vWlY5amNtVmhkR2x2YmlJNmV5SmxjR2hsYldWeVlXeGZOVzFm + YVc1d2RYUmZkRzlyWlc1eklqb3dMQ0psY0dobGJXVnlZV3hmTVdoZmFXNXdkWFJmZEc5cl + pXNXpJam93ZlN3aWIzVjBjSFYwWDNSdmEyVnVjeUk2TkgxOWZRPT0iLCJwIjoiYWJjZGVm + Z2hpamtsbW5vcHFycyJ9upj1BgAAARUAAABL53CMJgs6ZXZlbnQtdHlwZQcABWNodW5rDT + pjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVu + dHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5emRHRnlkQ0lzSW + 1sdVpHVjRJam93TENKamIyNTBaVzUwWDJKc2IyTnJJanA3SW5SNWNHVWlPaUowWlhoMElp + d2lkR1Y0ZENJNklpSjlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QU + JDREVGR0hJSktMTU5PUFFSU1RVVldYWVowMTIiffGwR+QAAAD1AAAASwT4mFwLOmV2ZW50 + LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2 + FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5 + amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVj + RkRjlrWld4MFlTSXNJblJsZUhRaU9pSlBiTU9oSVNKOWZRPT0iLCJwIjoiYWJjZGVmZ2hp + amtsbW5vcHFycyJ91FrI8wAAAN8AAABLj4mv+Qs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb2 + 50ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsi + Ynl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5emRHOXdJaXdpYVc1a1 + pYZ2lPakI5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktM + TU5PUFFSU1RVVldYWVowMTIzNDU2Nzgifd94LWgAAAEpAAAAS4Oh2aELOmV2ZW50LXR5cG + UHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10 + eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pYldWemMyRm5aVjlrWld4MFlTSX + NJbVJsYkhSaElqcDdJbk4wYjNCZmNtVmhjMjl1SWpvaVpXNWtYM1IxY200aUxDSnpkRzl3 + WDNObGNYVmxibU5sSWpwdWRXeHNmU3dpZFhOaFoyVWlPbnNpYjNWMGNIVjBYM1J2YTJWdW + N5STZOMzE5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktM + TU5PUFEifafMeK0AAAFMAAAAS9JzIZwLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC + 10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVz + IjoiZXlKMGVYQmxJam9pYldWemMyRm5aVjl6ZEc5d0lpd2lZVzFoZW05dUxXSmxaSEp2WT + JzdGFXNTJiMk5oZEdsdmJrMWxkSEpwWTNNaU9uc2lhVzV3ZFhSVWIydGxia052ZFc1MElq + b3hOaXdpYjNWMGNIVjBWRzlyWlc1RGIzVnVkQ0k2Tnl3aWFXNTJiMk5oZEdsdmJreGhkR1 + Z1WTNraU9qRTJNVE1zSW1acGNuTjBRbmwwWlV4aGRHVnVZM2tpT2pFME9EbDlmUT09Iiwi + cCI6ImFiY2RlZmdoaWprbG1ub3BxciJ9OhrNPQ== + headers: + Content-Type: + - application/vnd.amazon.eventstream + status: 200 OK + code: 200 + duration: 1.736844958s diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-sonnet/tool.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-sonnet-4-5/tool.yaml similarity index 57% rename from providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-sonnet/tool.yaml rename to providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-sonnet-4-5/tool.yaml index dc2cb10aba6cd9e27c6ee0c537a9033d8ef26bd5..1200b8503432d33ba8e9c52be5e04e02f9f2bdd4 100644 --- a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-3-sonnet/tool.yaml +++ b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-sonnet-4-5/tool.yaml @@ -15,21 +15,21 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.13.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-sonnet-20240229-v1%3A0/invoke + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-sonnet-4-5-20250929-v1%3A0/invoke method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 337 - body: '{"id":"msg_bdrk_016xuAjCiRGnDVbfdDav8z4j","type":"message","role":"assistant","model":"claude-3-sonnet-20240229","content":[{"type":"tool_use","id":"toolu_bdrk_018kwMvGqtVmJGohuBCxtuuH","name":"weather","input":{"location":"Florence,Italy"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":240,"output_tokens":53}}' + content_length: 478 + body: '{"model":"claude-sonnet-4-5-20250929","id":"msg_bdrk_01M8TZkSAyv62pznt73S3xAA","type":"message","role":"assistant","content":[{"type":"tool_use","id":"toolu_bdrk_01GxVdNWAgY99hRG1i6CZ5rf","name":"weather","input":{"location":"Florence,Italy"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":577,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":53}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.01528325s + duration: 1.897304292s - id: 1 request: proto: HTTP/1.1 @@ -37,25 +37,25 @@ interactions: proto_minor: 1 content_length: 764 host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"id":"toolu_bdrk_018kwMvGqtVmJGohuBCxtuuH","input":{"location":"Florence,Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_bdrk_018kwMvGqtVmJGohuBCxtuuH","content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"id":"toolu_bdrk_01GxVdNWAgY99hRG1i6CZ5rf","input":{"location":"Florence,Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_bdrk_01GxVdNWAgY99hRG1i6CZ5rf","content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - Anthropic/Go 1.13.0 - url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-3-sonnet-20240229-v1%3A0/invoke + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-sonnet-4-5-20250929-v1%3A0/invoke method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 - content_length: 285 - body: '{"id":"msg_bdrk_01UgQxNiY3WUwwUBy8wQPCrt","type":"message","role":"assistant","model":"claude-3-sonnet-20240229","content":[{"type":"text","text":"The weather in Florence, Italy is 40°C."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":308,"output_tokens":16}}' + content_length: 588 + body: '{"model":"claude-sonnet-4-5-20250929","id":"msg_bdrk_01KMRj2tsxSAzzKysjMKt9zG","type":"message","role":"assistant","content":[{"type":"text","text":"The weather in Florence, Italy is currently 40°C (104°F). That''s quite hot! If you''re planning to visit or are there now, make sure to stay hydrated and seek shade during the hottest parts of the day."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":646,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":54}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.93417325s + duration: 2.576520667s diff --git a/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-sonnet-4-5/tool_streaming.yaml b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-sonnet-4-5/tool_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..4c7729106b2af7c9e4c132be26d4a1cece250953 --- /dev/null +++ b/providertests/testdata/TestBedrockCommon/bedrock-anthropic-claude-sonnet-4-5/tool_streaming.yaml @@ -0,0 +1,253 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 468 + host: "" + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-sonnet-4-5-20250929-v1%3A0/invoke-with-response-stream + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: !!binary | + AAACrQAAAEtBU71dCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG + xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs + SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWJXOWtaV3dpT2lKam + JHRjFaR1V0YzI5dWJtVjBMVFF0TlMweU1ESTFNRGt5T1NJc0ltbGtJam9pYlhOblgySmtj + bXRmTURGVmVEWTFhMlJJYjBNeU0zRktXV1ZDT1RoSVJ6Vk9JaXdpZEhsd1pTSTZJbTFsYz + NOaFoyVWlMQ0p5YjJ4bElqb2lZWE56YVhOMFlXNTBJaXdpWTI5dWRHVnVkQ0k2VzEwc0lu + TjBiM0JmY21WaGMyOXVJanB1ZFd4c0xDSnpkRzl3WDNObGNYVmxibU5sSWpwdWRXeHNMQ0 + oxYzJGblpTSTZleUpwYm5CMWRGOTBiMnRsYm5NaU9qVTNOeXdpWTJGamFHVmZZM0psWVhS + cGIyNWZhVzV3ZFhSZmRHOXJaVzV6SWpvd0xDSmpZV05vWlY5eVpXRmtYMmx1Y0hWMFgzUn + ZhMlZ1Y3lJNk1Dd2lZMkZqYUdWZlkzSmxZWFJwYjI0aU9uc2laWEJvWlcxbGNtRnNYelZ0 + WDJsdWNIVjBYM1J2YTJWdWN5STZNQ3dpWlhCb1pXMWxjbUZzWHpGb1gybHVjSFYwWDNSdm + EyVnVjeUk2TUgwc0ltOTFkSEIxZEY5MGIydGxibk1pT2pGOWZYMD0iLCJwIjoiYWJjZGVm + Z2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWjAxMiJ9oI + fpdgAAAUgAAABLJ/OHXAs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBh + cHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZV + hCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5emRHRnlkQ0lzSW1sdVpHVjRJam93TENKamIy + NTBaVzUwWDJKc2IyTnJJanA3SW5SNWNHVWlPaUowYjI5c1gzVnpaU0lzSW1sa0lqb2lkRz + l2YkhWZlltUnlhMTh3TVRoa1puQjJVemw2Vm1wa2IzcEdhblYzV21ZMVkzZ2lMQ0p1WVcx + bElqb2lkMlZoZEdobGNpSXNJbWx1Y0hWMElqcDdmWDE5IiwicCI6ImFiY2RlZmdoaWprbG + 1ub3BxcnN0dXYifabuVrsAAAEeAAAAS5CgvTcLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29u + dGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7Im + J5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVa + R1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWFXNXdkWFJmYW5OdmJsOWtaV3gwWV + NJc0luQmhjblJwWVd4ZmFuTnZiaUk2SWlKOWZRPT0iLCJwIjoiYWJjZGVmZ2hpamtsbW5v + cHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFVWIn1+ttkgAAABLgAAAEsxgQWxCz + pldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24N + Om1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZE + Y5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElq + b2lhVzV3ZFhSZmFuTnZibDlrWld4MFlTSXNJbkJoY25ScFlXeGZhbk52YmlJNkludGNJbX + h2WTJGMGFXOGlmWDA9IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVG + R0hJSktMTU5PUFFSU1RVVldYWVoifWVAx1EAAAEKAAAASwXAjHULOmV2ZW50LXR5cGUHAA + VjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBl + BwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3 + gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWFXNXdkWFJmYW5O + dmJsOWtaV3gwWVNJc0luQmhjblJwWVd4ZmFuTnZiaUk2SW01Y0lqb2dJbjE5IiwicCI6Im + FiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eCJ9tSuM5AAAASEAAABLs9GSYAs6ZXZlbnQtdHlw + ZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLX + R5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5 + a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pYVc1d2RYUm + Zhbk52Ymw5a1pXeDBZU0lzSW5CaGNuUnBZV3hmYW5OdmJpSTZJbHdpUm14dmNtVnVZMlVp + ZlgwPSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE0ifd + whn7gAAAEZAAAASyKAYScLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQ + YXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMG + VYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmta + V3gwWVNJNmV5SjBlWEJsSWpvaWFXNXdkWFJmYW5OdmJsOWtaV3gwWVNJc0luQmhjblJwWV + d4ZmFuTnZiaUk2SWl4SkluMTkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpB + QkNERUZHSElKS0xNTk9QUSJ9zRTg6gAAAR4AAABLkKC9Nws6ZXZlbnQtdHlwZQcABWNodW + 5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVl + dmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0 + lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pYVc1d2RYUmZhbk52Ymw5 + a1pXeDBZU0lzSW5CaGNuUnBZV3hmYW5OdmJpSTZJblJoYkhsY0luMGlmWDA9IiwicCI6Im + FiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU4ifQGdunIAAADdAAAA + S/VJ/JkLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb2 + 4vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5 + dWRHVnVkRjlpYkc5amExOXpkRzl3SWl3aWFXNWtaWGdpT2pCOSIsInAiOiJhYmNkZWZnaG + lqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaMDEyMzQ1NiJ9 + bDFWgQAAARIAAABLVVBQNgs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHAB + BhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUow + ZVhCbElqb2liV1Z6YzJGblpWOWtaV3gwWVNJc0ltUmxiSFJoSWpwN0luTjBiM0JmY21WaG + MyOXVJam9pZEc5dmJGOTFjMlVpTENKemRHOXdYM05sY1hWbGJtTmxJanB1ZFd4c2ZTd2lk + WE5oWjJVaU9uc2liM1YwY0hWMFgzUnZhMlZ1Y3lJNk5UTjlmUT09IiwicCI6ImFiY2RlZm + doaWprbG1ub3AifReIQ2IAAAFNAAAAS+8TCCwLOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29u + dGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7Im + J5dGVzIjoiZXlKMGVYQmxJam9pYldWemMyRm5aVjl6ZEc5d0lpd2lZVzFoZW05dUxXSmxa + SEp2WTJzdGFXNTJiMk5oZEdsdmJrMWxkSEpwWTNNaU9uc2lhVzV3ZFhSVWIydGxia052ZF + c1MElqbzFOemNzSW05MWRIQjFkRlJ2YTJWdVEyOTFiblFpT2pVekxDSnBiblp2WTJGMGFX + OXVUR0YwWlc1amVTSTZNVGsyTnl3aVptbHljM1JDZVhSbFRHRjBaVzVqZVNJNk1UWXdNMz + E5IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnMifQPYUYg= + headers: + Content-Type: + - application/vnd.amazon.eventstream + status: 200 OK + code: 200 + duration: 1.751202375s +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 764 + host: "" + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"id":"toolu_bdrk_018dfpvS9zVjdozFjuwZf5cx","input":{"location":"Florence,Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_bdrk_018dfpvS9zVjdozFjuwZf5cx","content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"tool_choice":{"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"}],"anthropic_version":"bedrock-2023-05-31"}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://bedrock-runtime.us-east-1.amazonaws.com/model/us.anthropic.claude-sonnet-4-5-20250929-v1%3A0/invoke-with-response-stream + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: !!binary | + AAACkQAAAEslgujaCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG + xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs + SWpvaWJXVnpjMkZuWlY5emRHRnlkQ0lzSW0xbGMzTmhaMlVpT25zaWJXOWtaV3dpT2lKam + JHRjFaR1V0YzI5dWJtVjBMVFF0TlMweU1ESTFNRGt5T1NJc0ltbGtJam9pYlhOblgySmtj + bXRmTURFM1RVcG5iakZYT0cxNVZubG9VVlpRUWxweWRHaDNJaXdpZEhsd1pTSTZJbTFsYz + NOaFoyVWlMQ0p5YjJ4bElqb2lZWE56YVhOMFlXNTBJaXdpWTI5dWRHVnVkQ0k2VzEwc0lu + TjBiM0JmY21WaGMyOXVJanB1ZFd4c0xDSnpkRzl3WDNObGNYVmxibU5sSWpwdWRXeHNMQ0 + oxYzJGblpTSTZleUpwYm5CMWRGOTBiMnRsYm5NaU9qWTBOaXdpWTJGamFHVmZZM0psWVhS + cGIyNWZhVzV3ZFhSZmRHOXJaVzV6SWpvd0xDSmpZV05vWlY5eVpXRmtYMmx1Y0hWMFgzUn + ZhMlZ1Y3lJNk1Dd2lZMkZqYUdWZlkzSmxZWFJwYjI0aU9uc2laWEJvWlcxbGNtRnNYelZ0 + WDJsdWNIVjBYM1J2YTJWdWN5STZNQ3dpWlhCb1pXMWxjbUZzWHpGb1gybHVjSFYwWDNSdm + EyVnVjeUk2TUgwc0ltOTFkSEIxZEY5MGIydGxibk1pT2poOWZYMD0iLCJwIjoiYWJjZGVm + Z2hpamtsbW5vcHFyc3R1dnd4eXpBIn0Kyt0xAAABFwAAAEudsN9GCzpldmVudC10eXBlBw + AFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlw + ZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTl6ZE + dGeWRDSXNJbWx1WkdWNElqb3dMQ0pqYjI1MFpXNTBYMkpzYjJOcklqcDdJblI1Y0dVaU9p + SjBaWGgwSWl3aWRHVjRkQ0k2SWlKOWZRPT0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3 + R1dnd4eXpBQkNERUZHSElKS0xNTk9QUVJTVFVWV1hZWjAxMjM0In2QrflgAAABRAAAAEvi + A2pdCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2 + pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVk + R1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZV + hCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUpVYUdVZ2QyVmhkR2hsY2lCcGJp + QkdiRzl5Wlc1alpTd2dTWFJoYkhrZ2FYTWdZM1Z5Y21WdWRHeDVJbjE5IiwicCI6ImFiY2 + RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUFFSU1RVVldYIn2YSEsd + AAAA+wAAAEu7yCY9CzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG + xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs + SWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MF + lTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnS2lvaWZYMD0i + LCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkMifa1FgKcAAAD7AAAAS7vIJj + 0LOmV2ZW50LXR5cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNv + bg06bWVzc2FnZS10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVn + VkRjlpYkc5amExOWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJs + SWpvaWRHVjRkRjlrWld4MFlTSXNJblJsZUhRaU9pSTBNTUt3UXlvcUluMTkiLCJwIjoiYW + JjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eSJ9ITdWdwAAAPgAAABL/Ghc7Qs6ZXZlbnQtdHlw + ZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLX + R5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5 + a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOW + taV3gwWVNJc0luUmxlSFFpT2lJZ0tERXdOTUt3UmlrdUluMTkiLCJwIjoiYWJjZGVmZ2hp + amtsbW5vcHFyIn3V9BW+AAABFQAAAEvncIwmCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbn + RlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJi + eXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1Wk + dWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVI + UWlPaUlnVkdoaGRDSjlmUT09IiwicCI6ImFiY2RlZmdoaWprbG1ub3BxcnN0dXZ3eHl6QU + JDREVGR0hJSktMTU5PUFFSU1RVVldYWSJ9y4i9agAAARAAAABLL5ADVgs6ZXZlbnQtdHlw + ZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLX + R5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5 + a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOW + taV3gwWVNJc0luUmxlSFFpT2lJbmN5QnhkV2wwWlNKOWZRPT0iLCJwIjoiYWJjZGVmZ2hp + amtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xNTk9QIn2txzLFAAAA9gAAAEtDWOKMCz + pldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24N + Om1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZE + Y5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElq + b2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnYUc5MElTQkpaaUo5ZlE9PSIsInAiOi + JhYmNkZWZnaGlqa2xtbm9wIn3V5qvYAAABBgAAAEvAMGF0CzpldmVudC10eXBlBwAFY2h1 + bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABW + V2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlT + SXNJbWx1WkdWNElqb3dMQ0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0 + lzSW5SbGVIUWlPaUlnZVc5MUozSmxJSEJzWVc1dWFXNW5JSFJ2SW4xOSIsInAiOiJhYmNk + ZWZnaGlqa2xtbm9wcXJzdCJ9HaVSLAAAAQMAAABLCNDuBAs6ZXZlbnQtdHlwZQcABWNodW + 5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVl + dmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0 + lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJ + c0luUmxlSFFpT2lJZ2RtbHphWFFnYjNJaWZYMD0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcH + Fyc3R1dnd4eXpBQkMifb9IzJgAAAD7AAAAS7vIJj0LOmV2ZW50LXR5cGUHAAVjaHVuaw06 + Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbn + R7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0lt + bHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJbl + JsZUhRaU9pSWdZWEpsSW4xOSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFC + QyJ9L+TY/AAAAQcAAABL/VBIxAs6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cG + UHABBhcHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJl + eUowZVhCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TE + NKa1pXeDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ2RH + aGxjbVVpZlgwPSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISU + pLIn1asf8BAAABEAAAAEsvkANWCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlw + ZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6Im + V5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dM + Q0prWld4MFlTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnYm + 05M0luMTkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXpBQkNERUZHSElKS0xN + Tk9QUVJTVFVWV1gifavVh+sAAAD4AAAAS/xoXO0LOmV2ZW50LXR5cGUHAAVjaHVuaw06Y2 + 9udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBlBwAFZXZlbnR7 + ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3gwWVNJc0ltbH + VaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4MFlTSXNJblJs + ZUhRaU9pSXNJRzFoYTJVaWZYMD0iLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1diJ9L7 + yhzQAAAO4AAABLE8g+zws6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBh + cHBsaWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZV + hCbElqb2lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pX + eDBZU0k2ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ2MzVnlaU0 + IwYnlCemRHRjVJbjE5IiwicCI6ImFiY2QifcYQlNoAAAECAAAASzWwx7QLOmV2ZW50LXR5 + cGUHAAVjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS + 10eXBlBwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amEx + OWtaV3gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRj + lrWld4MFlTSXNJblJsZUhRaU9pSWdhSGxrY21GMFpXUWdZVzVrSUhObFpXc2lmWDA9Iiwi + cCI6ImFiY2RlZmdoaWprbG1ub3AifTxztdsAAAEhAAAAS7PRkmALOmV2ZW50LXR5cGUHAA + VjaHVuaw06Y29udGVudC10eXBlBwAQYXBwbGljYXRpb24vanNvbg06bWVzc2FnZS10eXBl + BwAFZXZlbnR7ImJ5dGVzIjoiZXlKMGVYQmxJam9pWTI5dWRHVnVkRjlpYkc5amExOWtaV3 + gwWVNJc0ltbHVaR1Y0SWpvd0xDSmtaV3gwWVNJNmV5SjBlWEJsSWpvaWRHVjRkRjlrWld4 + MFlTSXNJblJsZUhRaU9pSWdjMmhoWkdVZ1pIVnlhVzVuSW4xOSIsInAiOiJhYmNkZWZnaG + lqa2xtbm9wcXJzdHV2d3h5ekFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaMDEyIn3zaqty + AAABAwAAAEsI0O4ECzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFwcG + xpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWEJs + SWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTlrWld4MFlTSXNJbWx1WkdWNElqb3dMQ0prWld4MF + lTSTZleUowZVhCbElqb2lkR1Y0ZEY5a1pXeDBZU0lzSW5SbGVIUWlPaUlnZEdobElHaHZk + SFJsYzNRZ2NHRnlkSE1pZlgwPSIsInAiOiJhYmNkZWZnaGlqa2xtbm9wcSJ9OqALDQAAAO + wAAABLaQhtrws6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBsaWNh + dGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbElqb2 + lZMjl1ZEdWdWRGOWliRzlqYTE5a1pXeDBZU0lzSW1sdVpHVjRJam93TENKa1pXeDBZU0k2 + ZXlKMGVYQmxJam9pZEdWNGRGOWtaV3gwWVNJc0luUmxlSFFpT2lJZ2IyWWdkR2hsSUdSaG + VTNGlmWDA9IiwicCI6ImFiIn0wjxhnAAAAuwAAAEvjO350CzpldmVudC10eXBlBwAFY2h1 + bmsNOmNvbnRlbnQtdHlwZQcAEGFwcGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABW + V2ZW50eyJieXRlcyI6ImV5SjBlWEJsSWpvaVkyOXVkR1Z1ZEY5aWJHOWphMTl6ZEc5d0lp + d2lhVzVrWlhnaU9qQjkiLCJwIjoiYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eSJ9KriPyw + AAAT0AAABLFsHo4ws6ZXZlbnQtdHlwZQcABWNodW5rDTpjb250ZW50LXR5cGUHABBhcHBs + aWNhdGlvbi9qc29uDTptZXNzYWdlLXR5cGUHAAVldmVudHsiYnl0ZXMiOiJleUowZVhCbE + lqb2liV1Z6YzJGblpWOWtaV3gwWVNJc0ltUmxiSFJoSWpwN0luTjBiM0JmY21WaGMyOXVJ + am9pWlc1a1gzUjFjbTRpTENKemRHOXdYM05sY1hWbGJtTmxJanB1ZFd4c2ZTd2lkWE5oWj + JVaU9uc2liM1YwY0hWMFgzUnZhMlZ1Y3lJNk5UVjlmUT09IiwicCI6ImFiY2RlZmdoaWpr + bG1ub3BxcnN0dXZ3eHl6QUJDREVGR0hJSktMTU5PUFFSU1RVVldYWVowMTIzNDU2In3ee5 + WSAAABQQAAAEsq4+UtCzpldmVudC10eXBlBwAFY2h1bmsNOmNvbnRlbnQtdHlwZQcAEGFw + cGxpY2F0aW9uL2pzb24NOm1lc3NhZ2UtdHlwZQcABWV2ZW50eyJieXRlcyI6ImV5SjBlWE + JsSWpvaWJXVnpjMkZuWlY5emRHOXdJaXdpWVcxaGVtOXVMV0psWkhKdlkyc3RhVzUyYjJO + aGRHbHZiazFsZEhKcFkzTWlPbnNpYVc1d2RYUlViMnRsYmtOdmRXNTBJam8yTkRZc0ltOT + FkSEIxZEZSdmEyVnVRMjkxYm5RaU9qVTFMQ0pwYm5adlkyRjBhVzl1VEdGMFpXNWplU0k2 + TXpBek1pd2labWx5YzNSQ2VYUmxUR0YwWlc1amVTSTZNakF4T0gxOSIsInAiOiJhYmNkZW + ZnIn0QfqRQ + headers: + Content-Type: + - application/vnd.amazon.eventstream + status: 200 OK + code: 200 + duration: 2.171690666s diff --git a/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/multi_tool.yaml b/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/multi_tool.yaml index 2c28a0f95c3e655152cf001163bd839523912aa7..bbeac785c98f132a9c2425dca15ccb828ee9a613 100644 --- a/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/multi_tool.yaml +++ b/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/multi_tool.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:generateContent method: POST response: @@ -37,14 +38,14 @@ interactions: "b": 3 } }, - "thoughtSignature": "Cr4BAdHtim/Tq8T9XkqzcvcAqMXcurtfsNWvF+glFr+dbbGawdwSHuZ7mw9Xlm6KJ8Cie6v/uKr/LuTDVu+O1FD2kHVHH63fBYS4jt0jJdUs2xRL9+TdlgkrB1SyYzciPTdvzFrtCoM/iUQhtwohV0gr+3TWRYFtuOhW/WEDzYAJFjIPMftG0Jngtz2O59EN10sdngWQaAEYu2CUaPG47rqBITRumXdfX3+0nMCNpmbjqPCpJNg93O7EhMU8gJxs0g==" + "thoughtSignature": "CuwBAb4+9vtZI+lrRvvljZUdJ6DU+6mx0MOBuaHeyYvynuM3jWA6+2QLszYeEbDE8DiwXn/ZAT193VbikJsMKQhtnfKfRBEBOX0+ubVHHOFBFJQtdbOgB/rUa60EsYG3tEz3IfShPYThhVkawFMK6pypIEeFkR6fz4ORTLkqD2LIDzASds2DgReWzjuQ5TxX2rVB/ZyGarvY5Wvg2TkeK2hAcVdJIjwLZFtxTKnd2DU6smy4Elld36CV8HsEd1P+qbChmOc7V473H9RyZbkojG0ItvQepZX7c0qcJRs2xGpz68rno2xpy+XlQOfnUXg=" }, { "functionCall": { "name": "multiply", "args": { - "b": 3, - "a": 2 + "a": 2, + "b": 3 } } } @@ -59,38 +60,39 @@ interactions: "usageMetadata": { "promptTokenCount": 125, "candidatesTokenCount": 36, - "totalTokenCount": 200, + "totalTokenCount": 234, "promptTokensDetails": [ { "modality": "TEXT", "tokenCount": 125 } ], - "thoughtsTokenCount": 39 + "thoughtsTokenCount": 73 }, "modelVersion": "gemini-2.5-flash", - "responseId": "c6IdafipKOX-vdIPoJuZsAs" + "responseId": "WwCzadOqH-mtz7IP8_Se8Ak" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 974.216125ms + duration: 1.125489417s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1437 + content_length: 1497 host: generativelanguage.googleapis.com body: | - {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"1","name":"add"},"thoughtSignature":"Cr4BAdHtim/Tq8T9XkqzcvcAqMXcurtfsNWvF+glFr+dbbGawdwSHuZ7mw9Xlm6KJ8Cie6v/uKr/LuTDVu+O1FD2kHVHH63fBYS4jt0jJdUs2xRL9+TdlgkrB1SyYzciPTdvzFrtCoM/iUQhtwohV0gr+3TWRYFtuOhW/WEDzYAJFjIPMftG0Jngtz2O59EN10sdngWQaAEYu2CUaPG47rqBITRumXdfX3+0nMCNpmbjqPCpJNg93O7EhMU8gJxs0g=="},{"functionCall":{"args":{"a":2,"b":3},"id":"2","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"2","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} + {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"1","name":"add"},"thoughtSignature":"CuwBAb4+9vtZI+lrRvvljZUdJ6DU+6mx0MOBuaHeyYvynuM3jWA6+2QLszYeEbDE8DiwXn/ZAT193VbikJsMKQhtnfKfRBEBOX0+ubVHHOFBFJQtdbOgB/rUa60EsYG3tEz3IfShPYThhVkawFMK6pypIEeFkR6fz4ORTLkqD2LIDzASds2DgReWzjuQ5TxX2rVB/ZyGarvY5Wvg2TkeK2hAcVdJIjwLZFtxTKnd2DU6smy4Elld36CV8HsEd1P+qbChmOc7V473H9RyZbkojG0ItvQepZX7c0qcJRs2xGpz68rno2xpy+XlQOfnUXg="},{"functionCall":{"args":{"a":2,"b":3},"id":"2","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"2","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} headers: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:generateContent method: POST response: @@ -106,7 +108,7 @@ interactions: "content": { "parts": [ { - "text": "The sum of 2 and 3 is 5 and the product of 2 and 3 is 6." + "text": "The sum of 2 and 3 is 5. The product of 2 and 3 is 6." } ], "role": "model" @@ -127,11 +129,11 @@ interactions: ] }, "modelVersion": "gemini-2.5-flash", - "responseId": "dKIdabyVFsrVvdIPuoSCuAk" + "responseId": "XACzab6NJ-Hqz7IP6avj8Qs" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 693.548334ms + duration: 918.09725ms diff --git a/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/multi_tool_streaming.yaml b/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/multi_tool_streaming.yaml index 5c98e052a0a896638329588309362d54b893d7e1..04c8ca6662461cc841c0ceba4c09c881219b5582 100644 --- a/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/multi_tool_streaming.yaml +++ b/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/multi_tool_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:streamGenerateContent?alt=sse method: POST response: @@ -25,22 +26,22 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"add\",\"args\": {\"b\": 3,\"a\": 2}},\"thoughtSignature\": \"CikB0e2KbzJ53cZQAbVmS3FT2mrSIPh4SqG9C0hmU6Af0IhPFXcFgoc5twptAdHtim8trKjd4oXwYT0oCz0ruME+ffJ75W/FCaehBo4LLnMuwRYanvHpWA8knHwPzDPADfYQCldBCzW+B2pcMTLxlHfoaaY+7mGGOqb9eyzyKxGJmmCBD80fHvEY0zNwjnLyLhrQjjLPjQOJJwpnAdHtim/XR83WyBkpOGrXLvmZ2ZNz16pdlWavvk2U+RyzJH2ca5szuZ3ZlepealN3RCzYHo2vUpwBqPKx2NGNVTfI8jUAueIO8tb/0Z+VJHpktNds5qCJgvCZUfQwN8MEWO0vMOgqww==\"},{\"functionCall\": {\"name\": \"multiply\",\"args\": {\"a\": 2,\"b\": 3}}}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0,\"finishMessage\": \"Model generated function call(s).\"}],\"usageMetadata\": {\"promptTokenCount\": 121,\"candidatesTokenCount\": 36,\"totalTokenCount\": 195,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 121}],\"thoughtsTokenCount\": 38},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"dKIdacS5OILaxs0PwvHjwQ4\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"add\",\"args\": {\"b\": 3,\"a\": 2}},\"thoughtSignature\": \"CloBvj72+4/aTlyeodvVsF6WQseQLaqynO0Ocu6hCxSIV1rJCGFv67dtpjtFqWaborKte+82ZXWG2DaoPZaL+k7ONU3tUVwUXH0yI3ADtb46NJAqGWp2V/Ht3uMKhQEBvj72+53r7rtJS2JS+RSr/gNHTgRy4DDPTPtEEj+K6F4GFNMQEXVmXPYPa87j/74GGwi14Qwvde1kfemWz/+cRwpf2EDDKELVYuZ56LWb6pmPj4kyXPBERjn3dCiTrAhaysdd21dD0/t3xSXCKNFbPTDjK6IeGzqAGRFeL5D37oKPrh2N\"},{\"functionCall\": {\"name\": \"multiply\",\"args\": {\"a\": 2,\"b\": 3}}}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0,\"finishMessage\": \"Model generated function call(s).\"}],\"usageMetadata\": {\"promptTokenCount\": 121,\"candidatesTokenCount\": 36,\"totalTokenCount\": 195,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 121}],\"thoughtsTokenCount\": 38},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"XQCzaYWvIqfRz7IPupTlyAk\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 897.297ms + duration: 999.347125ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1508 + content_length: 1464 host: generativelanguage.googleapis.com body: | - {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"1","name":"add"},"thoughtSignature":"CikB0e2KbzJ53cZQAbVmS3FT2mrSIPh4SqG9C0hmU6Af0IhPFXcFgoc5twptAdHtim8trKjd4oXwYT0oCz0ruME+ffJ75W/FCaehBo4LLnMuwRYanvHpWA8knHwPzDPADfYQCldBCzW+B2pcMTLxlHfoaaY+7mGGOqb9eyzyKxGJmmCBD80fHvEY0zNwjnLyLhrQjjLPjQOJJwpnAdHtim/XR83WyBkpOGrXLvmZ2ZNz16pdlWavvk2U+RyzJH2ca5szuZ3ZlepealN3RCzYHo2vUpwBqPKx2NGNVTfI8jUAueIO8tb/0Z+VJHpktNds5qCJgvCZUfQwN8MEWO0vMOgqww=="},{"functionCall":{"args":{"a":2,"b":3},"id":"2","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"2","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. Always use both add and multiply at the same time."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} + {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"1","name":"add"},"thoughtSignature":"CloBvj72+4/aTlyeodvVsF6WQseQLaqynO0Ocu6hCxSIV1rJCGFv67dtpjtFqWaborKte+82ZXWG2DaoPZaL+k7ONU3tUVwUXH0yI3ADtb46NJAqGWp2V/Ht3uMKhQEBvj72+53r7rtJS2JS+RSr/gNHTgRy4DDPTPtEEj+K6F4GFNMQEXVmXPYPa87j/74GGwi14Qwvde1kfemWz/+cRwpf2EDDKELVYuZ56LWb6pmPj4kyXPBERjn3dCiTrAhaysdd21dD0/t3xSXCKNFbPTDjK6IeGzqAGRFeL5D37oKPrh2N"},{"functionCall":{"args":{"a":2,"b":3},"id":"2","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"2","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. Always use both add and multiply at the same time."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} form: alt: - sse @@ -48,7 +49,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:streamGenerateContent?alt=sse method: POST response: @@ -56,10 +58,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"The sum of \"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 217,\"candidatesTokenCount\": 3,\"totalTokenCount\": 220,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 217}]},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"daIdacGIO4XlvdIPwJX1gAk\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"2 and 3 is 5. The product of 2 and 3 is\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 217,\"candidatesTokenCount\": 20,\"totalTokenCount\": 237,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 217}]},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"daIdacGIO4XlvdIPwJX1gAk\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" 6.\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 217,\"candidatesTokenCount\": 22,\"totalTokenCount\": 239,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 217}]},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"daIdacGIO4XlvdIPwJX1gAk\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"The sum of \"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 218,\"candidatesTokenCount\": 3,\"totalTokenCount\": 221,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 218}]},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"XgCzaazDItHRz7IPmsmB4Qk\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"2 and 3 is 5. The product of 2 and 3 is\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 218,\"candidatesTokenCount\": 20,\"totalTokenCount\": 238,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 218}]},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"XgCzaazDItHRz7IPmsmB4Qk\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" 6.\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 218,\"candidatesTokenCount\": 22,\"totalTokenCount\": 240,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 218}]},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"XgCzaazDItHRz7IPmsmB4Qk\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 691.66875ms + duration: 737.114625ms diff --git a/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/simple.yaml b/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/simple.yaml index 027c1ebd71ec40f22f7cd80712d522a7153391cd..1d8ee0949215b41433af7390dba9b305a819b2df 100644 --- a/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/simple.yaml +++ b/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/simple.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:generateContent method: POST response: @@ -42,21 +43,21 @@ interactions: "usageMetadata": { "promptTokenCount": 11, "candidatesTokenCount": 2, - "totalTokenCount": 35, + "totalTokenCount": 37, "promptTokensDetails": [ { "modality": "TEXT", "tokenCount": 11 } ], - "thoughtsTokenCount": 22 + "thoughtsTokenCount": 24 }, "modelVersion": "gemini-2.5-flash", - "responseId": "bqIdadvABK-8xN8Plpr0oAY" + "responseId": "VgCzac2AGLOHz7IP2pOkkAI" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 517.171875ms + duration: 779.322167ms diff --git a/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/simple_streaming.yaml b/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/simple_streaming.yaml index 0ca5d57c2172285221e379693d4284ac714b3ac8..c92adce79110c9c837c0f58872803ffa7d6b05a4 100644 --- a/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/simple_streaming.yaml +++ b/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/simple_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:streamGenerateContent?alt=sse method: POST response: @@ -25,10 +26,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"Olá! In Portuguese, you can say:\\n\\n**Olá!**\\n\\nIt's a versatile greeting that works for \\\"hi,\\\" \\\"hello,\\\" and even \\\"hey.\\\"\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 11,\"candidatesTokenCount\": 35,\"totalTokenCount\": 78,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 11}],\"thoughtsTokenCount\": 32},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"bqIdacLAGozKvdIP5Nu3oAg\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"Olá!\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 11,\"candidatesTokenCount\": 2,\"totalTokenCount\": 34,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 11}],\"thoughtsTokenCount\": 21},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"VwCzabneCuzPz7IP0aL64A0\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 733.998792ms + duration: 853.364708ms diff --git a/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/tool.yaml b/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/tool.yaml index f6f5ceb0a1952b3e69a8f10466ee2e164f06571e..95e7b2443eeaea65961402d4ff765d71e5cccab6 100644 --- a/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/tool.yaml +++ b/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/tool.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:generateContent method: POST response: @@ -33,10 +34,10 @@ interactions: "functionCall": { "name": "weather", "args": { - "location": "Florence, Italy" + "location": "Florence,Italy" } }, - "thoughtSignature": "CoICAdHtim+oSIAY8uUYR6EfmWAxA3fQg7sAam3Jw4sK1xvXAvTmomotsL1uIgSO4Kx79F3+SQ3iVydWojoLVRBdLbdc+U0K2rXqTzc739H/3nUgqnfYELuBXKYE7W5ON5r2y2LzanK4lbUpHh8M4PYAtY8yIn8wonpr1KL+Ec6ykafkiT4nGHQHmmqndKKsdkLXboxtBxeKp2ZV0aCv1NiNvuwz0kucUx1AXBTI2SUpvAEsz2BfpmJg1i3eBwHtCyuz/I7/K2hqWHsO1NY1M0mL2c+1uwRhwTO5kNJ2i5q+la5MP6GN4Un5yceWmI4LNWInHfL0PUJ1MiCkurtsFMGqNA5+" + "thoughtSignature": "CvMBAb4+9vvZC/KtDBiEfP1WF+wUiObd6G6yg5vTA8dfeleB3pTysSfmipkwxCrjEL9Y29JxnkMMXZvzkVMlyiK01pvWtZ++SnHMyuy9J04IrT/6oDhaDculJL+1gJhI+4i1UlPgJBXlUnpkPcznVuYKh6YEvWhNQc3Wrz305DeBdPIb2WmZmGv2gOVlhL3yjUrmxVWuRrtt9bQHX9B29bKtvY6L5QnE+iXEDpDlB6N5Qoe0JDqjJMn2K4WmVbxXivQN+XcYrEeRbV8v0A3yKIIxozry6h8C5cWiqMcXdaPK+tDNq4+tljWouipUhKvSkQY1yQ3K" } ], "role": "model" @@ -49,38 +50,39 @@ interactions: "usageMetadata": { "promptTokenCount": 54, "candidatesTokenCount": 15, - "totalTokenCount": 122, + "totalTokenCount": 117, "promptTokensDetails": [ { "modality": "TEXT", "tokenCount": 54 } ], - "thoughtsTokenCount": 53 + "thoughtsTokenCount": 48 }, "modelVersion": "gemini-2.5-flash", - "responseId": "b6IdafT6Kd6evdIPrZ2kqAU" + "responseId": "WACzacOoAtThz7IPuNuJoQI" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 903.990542ms + duration: 1.021697875s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1093 + content_length: 1072 host: generativelanguage.googleapis.com body: | - {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"CoICAdHtim+oSIAY8uUYR6EfmWAxA3fQg7sAam3Jw4sK1xvXAvTmomotsL1uIgSO4Kx79F3+SQ3iVydWojoLVRBdLbdc+U0K2rXqTzc739H/3nUgqnfYELuBXKYE7W5ON5r2y2LzanK4lbUpHh8M4PYAtY8yIn8wonpr1KL+Ec6ykafkiT4nGHQHmmqndKKsdkLXboxtBxeKp2ZV0aCv1NiNvuwz0kucUx1AXBTI2SUpvAEsz2BfpmJg1i3eBwHtCyuz/I7/K2hqWHsO1NY1M0mL2c+1uwRhwTO5kNJ2i5q+la5MP6GN4Un5yceWmI4LNWInHfL0PUJ1MiCkurtsFMGqNA5+"}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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"}}]}]} + {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence,Italy"},"id":"1","name":"weather"},"thoughtSignature":"CvMBAb4+9vvZC/KtDBiEfP1WF+wUiObd6G6yg5vTA8dfeleB3pTysSfmipkwxCrjEL9Y29JxnkMMXZvzkVMlyiK01pvWtZ++SnHMyuy9J04IrT/6oDhaDculJL+1gJhI+4i1UlPgJBXlUnpkPcznVuYKh6YEvWhNQc3Wrz305DeBdPIb2WmZmGv2gOVlhL3yjUrmxVWuRrtt9bQHX9B29bKtvY6L5QnE+iXEDpDlB6N5Qoe0JDqjJMn2K4WmVbxXivQN+XcYrEeRbV8v0A3yKIIxozry6h8C5cWiqMcXdaPK+tDNq4+tljWouipUhKvSkQY1yQ3K"}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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"}}]}]} headers: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:generateContent method: POST response: @@ -117,11 +119,11 @@ interactions: ] }, "modelVersion": "gemini-2.5-flash", - "responseId": "cKIdaYmFE-73vdIPyu-CiQ4" + "responseId": "WQCzaa2iA_Xpz7IP6oC2oQ8" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 580.239833ms + duration: 715.012709ms diff --git a/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/tool_streaming.yaml b/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/tool_streaming.yaml index 031d770637138437c6f49ebfcb770e94891ea09d..f2be3f88fa362da8e46496da061289f0be4a0cee 100644 --- a/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/tool_streaming.yaml +++ b/providertests/testdata/TestGoogleCommon/gemini-2.5-flash/tool_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:streamGenerateContent?alt=sse method: POST response: @@ -25,22 +26,22 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"weather\",\"args\": {\"location\": \"Florence, Italy\"}},\"thoughtSignature\": \"CiQB0e2Kb5hLxW4oJvRVAtEyLSHknL6TrwoTlUrzV/NIKu+R2z8KYwHR7YpvSN4fng8omWFL8Aqjsl9X3H+kgDzmS7IrsQLTYrFyl7mDqVImhz66isD523DqKjTNM+VDowi7QGeoVmSGy4+iDSNmK4JMcn8hMxHExBdm1BDyf2m5oXW+6Q2hVWscoQqJAgHR7YpvKGTVtc/SBxH4DcGgHUE2vbnfSF8icr79c/9Z4JUVIM8e3vDxVSlSoXqSyOBIjCYx75OWcokqKhKSbksYQhgWj2OBK4yqkjgDn4Ei6a3mO4m1B+fCX39c73spRSK+0RCGfPdkmL0iTB+lTB4QjKZZGqjEe87oL4rt26ZlndfpPRmdqqqdC4MVnRDqXOO4xrSr4A+n27MCr/mzu0FGg2ld13WUuu42nvb+pSgIoQC1ARz5CsDhTfXp2vFywCpbFzK1w61QJSgyjcBph/SljYIVLLwcY8uaWr1ZLIc+6sdZU9g3n2jlZ/HIR9zc62qdIcdLWLaqfuRKfRQXykjOAJwwMziZ7ncKIwHR7YpvVfOT+ooTKaMyWqreuH0LElgmp0tV5T5M+SoXjTTp\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0,\"finishMessage\": \"Model generated function call(s).\"}],\"usageMetadata\": {\"promptTokenCount\": 54,\"candidatesTokenCount\": 15,\"totalTokenCount\": 139,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 54}],\"thoughtsTokenCount\": 70},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"caIdad66Iaq-vdIPlaK54Ak\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"weather\",\"args\": {\"location\": \"Florence,Italy\"}},\"thoughtSignature\": \"CiQBvj72+xCKZ6n2ewHIHg3nIWfu6zy4Znh/TJTlgZMDBj7UcfoKZwG+Pvb7HC0+ds8yTx13X71T68CdLhgHBq/EHSe1cdetUYt/hbcv5aJy5o7Bhux5fWqkmSsGNBs9HiMdsbRqRN4YXh9UR3LTnYuV7Bp0gR8nIE/QLK2BQtGNxrxaD8scXwvrZ2q3izMKmgEBvj72++/EmTKY6Vq77EISxk0GbpbjN6ypU29fapjcLCRtNSNfgpdcqgMgWIGqH6E9d20r2UYGXgyGsx5cdtWBvI0q5dQwy2xATovEZNRPNJC/+vY0yBsTojt61TKhp26PJ5fIdu02X8RN89S15Xr3egRayx72aPeUzfheqRxqGWjiMcbK4EWyiX+UxHHFqKTppeSRhBjtMdse\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0,\"finishMessage\": \"Model generated function call(s).\"}],\"usageMetadata\": {\"promptTokenCount\": 54,\"candidatesTokenCount\": 15,\"totalTokenCount\": 112,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 54}],\"thoughtsTokenCount\": 43},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"WQCzaayhL8Xmz7IP-63dqQk\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 1.638936291s + duration: 1.022032708s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1337 + content_length: 1144 host: generativelanguage.googleapis.com body: | - {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"CiQB0e2Kb5hLxW4oJvRVAtEyLSHknL6TrwoTlUrzV/NIKu+R2z8KYwHR7YpvSN4fng8omWFL8Aqjsl9X3H+kgDzmS7IrsQLTYrFyl7mDqVImhz66isD523DqKjTNM+VDowi7QGeoVmSGy4+iDSNmK4JMcn8hMxHExBdm1BDyf2m5oXW+6Q2hVWscoQqJAgHR7YpvKGTVtc/SBxH4DcGgHUE2vbnfSF8icr79c/9Z4JUVIM8e3vDxVSlSoXqSyOBIjCYx75OWcokqKhKSbksYQhgWj2OBK4yqkjgDn4Ei6a3mO4m1B+fCX39c73spRSK+0RCGfPdkmL0iTB+lTB4QjKZZGqjEe87oL4rt26ZlndfpPRmdqqqdC4MVnRDqXOO4xrSr4A+n27MCr/mzu0FGg2ld13WUuu42nvb+pSgIoQC1ARz5CsDhTfXp2vFywCpbFzK1w61QJSgyjcBph/SljYIVLLwcY8uaWr1ZLIc+6sdZU9g3n2jlZ/HIR9zc62qdIcdLWLaqfuRKfRQXykjOAJwwMziZ7ncKIwHR7YpvVfOT+ooTKaMyWqreuH0LElgmp0tV5T5M+SoXjTTp"}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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"}}]}]} + {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence,Italy"},"id":"1","name":"weather"},"thoughtSignature":"CiQBvj72+xCKZ6n2ewHIHg3nIWfu6zy4Znh/TJTlgZMDBj7UcfoKZwG+Pvb7HC0+ds8yTx13X71T68CdLhgHBq/EHSe1cdetUYt/hbcv5aJy5o7Bhux5fWqkmSsGNBs9HiMdsbRqRN4YXh9UR3LTnYuV7Bp0gR8nIE/QLK2BQtGNxrxaD8scXwvrZ2q3izMKmgEBvj72++/EmTKY6Vq77EISxk0GbpbjN6ypU29fapjcLCRtNSNfgpdcqgMgWIGqH6E9d20r2UYGXgyGsx5cdtWBvI0q5dQwy2xATovEZNRPNJC/+vY0yBsTojt61TKhp26PJ5fIdu02X8RN89S15Xr3egRayx72aPeUzfheqRxqGWjiMcbK4EWyiX+UxHHFqKTppeSRhBjtMdse"}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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 @@ -48,7 +49,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:streamGenerateContent?alt=sse method: POST response: @@ -56,10 +58,10 @@ interactions: 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\": 152,\"candidatesTokenCount\": 4,\"totalTokenCount\": 156,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 152}]},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"cqIdaf_pKt20xN8P1r_twQg\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \", Italy is 40 C.\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 152,\"candidatesTokenCount\": 12,\"totalTokenCount\": 164,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 152}]},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"cqIdaf_pKt20xN8P1r_twQg\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"The weather in Florence\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 127,\"candidatesTokenCount\": 4,\"totalTokenCount\": 131,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 127}]},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"WgCzaZzmMLnoz7IP_czm6Q4\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \",Italy is 40 C.\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 127,\"candidatesTokenCount\": 12,\"totalTokenCount\": 139,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 127}]},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"WgCzaZzmMLnoz7IP_czm6Q4\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 744.812791ms + duration: 714.666833ms diff --git a/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/multi_tool.yaml b/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/multi_tool.yaml index bc03680e1443312acedc771592725ee73e0a87b2..17a56cf21ca321cc923d6e6f9d5e7b4675928471 100644 --- a/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/multi_tool.yaml +++ b/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/multi_tool.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:generateContent method: POST response: @@ -33,11 +34,11 @@ interactions: "functionCall": { "name": "add", "args": { - "a": 2, - "b": 3 + "b": 3, + "a": 2 } }, - "thoughtSignature": "Ct4DAdHtim86WQIPk3bh2XALNHL2XEV9TyeNz9k+Z06RPzFlt9c10RhGIIiLApE4rqlKdDjjly0ZJY0+UYfFkA1ZnAYgz8v/GnqX822cM936bMf2yQ3BLMQn9KYN2iabIhiS0wy9eF2MYE/xjlaYrAfH6Ek6/gmyTSjmstOU0/ipD+XcmqRiryIEEDINK4SjFK4aGAy6pkVYtNPT/1mm5l01Nr8b6IJaPq5YyPTHud14tw0ZnJaqff0TfM4t0NLYV0cgFTCR9phlWyR2ByE0xLigMSVOwNqWow4JPanV4CmxliGwuzJzrhhc7Olc9oIX0CVE8sLJwgH2I4lCUBx4g2JxvLI4flrY4d3nVbAbOtjLgAB0jQO24VL1tjRM+N/TP1KcdGKMhqLvv8TPAuKLsuoreI70Ggfph0ZstnQt/CgRIrvdG1q1j6+3S5H9l+5OL1JHwqPNfEcxawFtWbE1etM0EHXG0c1lRa090y+e2lLMDxNUyiUXl9UfLeQR0dCWqW+lL98DBYpT8eVF4VUCaxKR2uDlKuoBrP9KchziKXh4W61Guj3dGXSOQvo3UrQXna80k0rcIWnJ93Ri2/b6zjWUJoGPPr74qAID2ld3dA4DwsSG2oaVZ9SkDuO1RfdkUA==" + "thoughtSignature": "CrIJAb4+9vsevRLWMg/DbSUUnH+a5Hr8Vg5V+4qx3ROznUuRtiK4FNftUpY7Z9qgj1VA1q0/8pOlUG379d3XIV9dn8iAI0xwobN3c861BdSYjwL1Gvsbx5SKTDbDWuLTReZOPWjQQsuEoC5Y7s5kWt9MWvnmdbS27H6Sb3Q1mWyqncoDsztgRo2lLdnDHqZkxfaYTEmVpxzHqgigcrkdfSh+hHS9EAOfZKWsE9+XynQsbHPUXmpae/i5AkL873FDn5B0WuybY8mKTShyZ8rdv03C/DUpTarD7LVuLGNy3qxWGzxjyyGMlM5s0dZ+LTYrHCqseEKDXgnI/gR9gCjChgvOI91wuU4AxJtMrexhQe3acRF6GswPKhhmmnM23+0MIv7pj9gQ8NC1CJ8fp7lOtxM09Gb8agpSMOxbGulUsTWdHnT8XVS4u8VLygIWgQUBZryES0Cs+YwnUCZvrFTWwy/KnkoZkcLw9owlHMnGO6uNGdm3DiN4ISAux1AdwVzCQ2VshLXMfDk4Q2ZSIRtcyEwdth1G+lBVX8LhQ6LETNiaFVbwbIwMfVlUnrHvcMQ5fxccLzyzE/BFiaMcTun5juo8+DTKb/j0hBEu+z0HMywhBjck1lV+5DCRBuJIE5XPCjh2vE+wHjNLC9h0PAhNEAJ6wYp+27jS362Is7BwuFe6I7kDTkhtPrtkrSHrG5ANIkb/XHw//lfsErV1/4I+VZLmVwgU2rFXyuIVIDngmJ4c4HlDkhsgTH1/Xmihd9SDwD/Av3HkbrdOQ9+L3tsZt3r5VD1BVsG/IcQ00rR695L9G2eP1T2kmSctDr7vYMPNZsdeKUiPupqRr/e45tW3HqbDAydK1C4zYfJnyAlBtiuoIoFEyr1l2mnPPkJU+jv8EhEHpZcpCyhpDCvUno7D2wGA0JDlc8ewN5tXgLRulIX8fjG1CoztJCZJb6otUm5SITdo3jZ/NCN8TwzGAkOb3tcI/P9zaztVqr4mwNYBPGuelHBBE6BwZQYP31rWGRBNLXdZb4NUoRq5ijObMAN6kjV0tPTt7uoRNgAT4gPD2+xXsU7OvKlCG62jFS230vJ6ZiO63hPTG5LYYWlcoYLE/Gp0NpeZNmRo7Wwpat2UGJ9GqCEaRXMeWvBnGk2SzvM7lVlVtXRfdrsHwPrbo3WGwxU+P3FuldzoWYmkbUwN7P6Ib2uFO4FzdsOy16G/fNY095GOaTz+XYYVMnQx8nFOLke25RCz82ITeAK4dwao+fN0Pn7eFRyFXr5IYGe/gbg5mH+n39enkoBKkKDOes3RsCeFmabm8bbltIq1sLchA1TqZ0JJnVHqTq2syQLWbo40s6Yiz5yOT8mYnIjSsUeJaP244zbUckJudOAAhOoOUJJyTH69Ns5iVg3//6mMsHnbwfDIRhsoujKqnd/YIYoZgQefGvMKsbNRGF3LASN2v52fFOXo5e95j5HU8cvuMGabw0wjcQlmWaQ40FTJ1lQFjCF/KTi5ZoHT6kCmUpzgae5sIKubNIs3x24Y9rwwjydTNYgjeICeqky0JirHP+lYZQai6D5vVu/nLMFCnqpbt4eSsdFz/YV8Ok7vOEMLRX7vyhldEnk=" }, { "functionCall": { @@ -59,38 +60,39 @@ interactions: "usageMetadata": { "promptTokenCount": 125, "candidatesTokenCount": 36, - "totalTokenCount": 292, + "totalTokenCount": 503, "promptTokensDetails": [ { "modality": "TEXT", "tokenCount": 125 } ], - "thoughtsTokenCount": 131 + "thoughtsTokenCount": 342 }, "modelVersion": "gemini-2.5-pro", - "responseId": "kKIdaerxBqH6xs0P87WrgAk" + "responseId": "CiKzadPvHanUz7IPhsKmmQw" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 2.442287917s + duration: 4.354329875s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1821 + content_length: 2785 host: generativelanguage.googleapis.com body: | - {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"1","name":"add"},"thoughtSignature":"Ct4DAdHtim86WQIPk3bh2XALNHL2XEV9TyeNz9k+Z06RPzFlt9c10RhGIIiLApE4rqlKdDjjly0ZJY0+UYfFkA1ZnAYgz8v/GnqX822cM936bMf2yQ3BLMQn9KYN2iabIhiS0wy9eF2MYE/xjlaYrAfH6Ek6/gmyTSjmstOU0/ipD+XcmqRiryIEEDINK4SjFK4aGAy6pkVYtNPT/1mm5l01Nr8b6IJaPq5YyPTHud14tw0ZnJaqff0TfM4t0NLYV0cgFTCR9phlWyR2ByE0xLigMSVOwNqWow4JPanV4CmxliGwuzJzrhhc7Olc9oIX0CVE8sLJwgH2I4lCUBx4g2JxvLI4flrY4d3nVbAbOtjLgAB0jQO24VL1tjRM+N/TP1KcdGKMhqLvv8TPAuKLsuoreI70Ggfph0ZstnQt/CgRIrvdG1q1j6+3S5H9l+5OL1JHwqPNfEcxawFtWbE1etM0EHXG0c1lRa090y+e2lLMDxNUyiUXl9UfLeQR0dCWqW+lL98DBYpT8eVF4VUCaxKR2uDlKuoBrP9KchziKXh4W61Guj3dGXSOQvo3UrQXna80k0rcIWnJ93Ri2/b6zjWUJoGPPr74qAID2ld3dA4DwsSG2oaVZ9SkDuO1RfdkUA=="},{"functionCall":{"args":{"a":2,"b":3},"id":"2","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"2","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} + {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"1","name":"add"},"thoughtSignature":"CrIJAb4+9vsevRLWMg/DbSUUnH+a5Hr8Vg5V+4qx3ROznUuRtiK4FNftUpY7Z9qgj1VA1q0/8pOlUG379d3XIV9dn8iAI0xwobN3c861BdSYjwL1Gvsbx5SKTDbDWuLTReZOPWjQQsuEoC5Y7s5kWt9MWvnmdbS27H6Sb3Q1mWyqncoDsztgRo2lLdnDHqZkxfaYTEmVpxzHqgigcrkdfSh+hHS9EAOfZKWsE9+XynQsbHPUXmpae/i5AkL873FDn5B0WuybY8mKTShyZ8rdv03C/DUpTarD7LVuLGNy3qxWGzxjyyGMlM5s0dZ+LTYrHCqseEKDXgnI/gR9gCjChgvOI91wuU4AxJtMrexhQe3acRF6GswPKhhmmnM23+0MIv7pj9gQ8NC1CJ8fp7lOtxM09Gb8agpSMOxbGulUsTWdHnT8XVS4u8VLygIWgQUBZryES0Cs+YwnUCZvrFTWwy/KnkoZkcLw9owlHMnGO6uNGdm3DiN4ISAux1AdwVzCQ2VshLXMfDk4Q2ZSIRtcyEwdth1G+lBVX8LhQ6LETNiaFVbwbIwMfVlUnrHvcMQ5fxccLzyzE/BFiaMcTun5juo8+DTKb/j0hBEu+z0HMywhBjck1lV+5DCRBuJIE5XPCjh2vE+wHjNLC9h0PAhNEAJ6wYp+27jS362Is7BwuFe6I7kDTkhtPrtkrSHrG5ANIkb/XHw//lfsErV1/4I+VZLmVwgU2rFXyuIVIDngmJ4c4HlDkhsgTH1/Xmihd9SDwD/Av3HkbrdOQ9+L3tsZt3r5VD1BVsG/IcQ00rR695L9G2eP1T2kmSctDr7vYMPNZsdeKUiPupqRr/e45tW3HqbDAydK1C4zYfJnyAlBtiuoIoFEyr1l2mnPPkJU+jv8EhEHpZcpCyhpDCvUno7D2wGA0JDlc8ewN5tXgLRulIX8fjG1CoztJCZJb6otUm5SITdo3jZ/NCN8TwzGAkOb3tcI/P9zaztVqr4mwNYBPGuelHBBE6BwZQYP31rWGRBNLXdZb4NUoRq5ijObMAN6kjV0tPTt7uoRNgAT4gPD2+xXsU7OvKlCG62jFS230vJ6ZiO63hPTG5LYYWlcoYLE/Gp0NpeZNmRo7Wwpat2UGJ9GqCEaRXMeWvBnGk2SzvM7lVlVtXRfdrsHwPrbo3WGwxU+P3FuldzoWYmkbUwN7P6Ib2uFO4FzdsOy16G/fNY095GOaTz+XYYVMnQx8nFOLke25RCz82ITeAK4dwao+fN0Pn7eFRyFXr5IYGe/gbg5mH+n39enkoBKkKDOes3RsCeFmabm8bbltIq1sLchA1TqZ0JJnVHqTq2syQLWbo40s6Yiz5yOT8mYnIjSsUeJaP244zbUckJudOAAhOoOUJJyTH69Ns5iVg3//6mMsHnbwfDIRhsoujKqnd/YIYoZgQefGvMKsbNRGF3LASN2v52fFOXo5e95j5HU8cvuMGabw0wjcQlmWaQ40FTJ1lQFjCF/KTi5ZoHT6kCmUpzgae5sIKubNIs3x24Y9rwwjydTNYgjeICeqky0JirHP+lYZQai6D5vVu/nLMFCnqpbt4eSsdFz/YV8Ok7vOEMLRX7vyhldEnk="},{"functionCall":{"args":{"a":2,"b":3},"id":"2","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"2","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} headers: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:generateContent method: POST response: @@ -106,7 +108,7 @@ interactions: "content": { "parts": [ { - "text": "The sum of 2 and 3 is 5. The product of 2 and 3 is 6.\n" + "text": "The sum of 2 and 3 is 5, and the product is 6." } ], "role": "model" @@ -117,8 +119,8 @@ interactions: ], "usageMetadata": { "promptTokenCount": 185, - "candidatesTokenCount": 24, - "totalTokenCount": 209, + "candidatesTokenCount": 19, + "totalTokenCount": 204, "promptTokensDetails": [ { "modality": "TEXT", @@ -127,11 +129,11 @@ interactions: ] }, "modelVersion": "gemini-2.5-pro", - "responseId": "kqIdaYyhHaq-vdIPkaK54Ak" + "responseId": "CyKzaY_zNemtz7IP9PSe8Ak" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 2.379932167s + duration: 1.340707083s diff --git a/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/multi_tool_streaming.yaml b/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/multi_tool_streaming.yaml index ca92c65f739b8e83f28376f8264cdc63d50ad196..641caea241fe8d8c59efab5159588e7bfc6fa762 100644 --- a/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/multi_tool_streaming.yaml +++ b/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/multi_tool_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:streamGenerateContent?alt=sse method: POST response: @@ -25,22 +26,22 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"add\",\"args\": {\"a\": 2,\"b\": 3}},\"thoughtSignature\": \"CiQB0e2Kbx/zJCGX4QRM1YjdG/0vM0O4q138GSgP9DFjPo5BvxgKXgHR7Ypvpmm3CK4gVVZtV0AvJ5MhonziwhvNMCDxg+jdrww42W8UHrTuM1cvExKrM1WsQkHnTo1PUMcUH9Ju006B1GZbgQvs3J8svt8NYJgh0WNDt8UHPO6b6VGSss4KkQEB0e2Kb68CHsB09XAnHX229MS+YrPraiD8fPqMxVLLkc2FuCR5+fI7A+kzP91qGr92hzdvYlksVeLRy5a5n1LEQmnxxFXtY8xsKDaBXDUlIvdK7VEUb60Gn9vss03eABVgI6cmwR46HFzDAvSwsl3sWtP2U4qoHTTNZ4Dt36pl/S4nxB7Lp14pcLP7sOLZkowTCoEBAdHtim8Pb7C65eIUdYFOqURU6C1ur0uJa+zVoM2/bIsSO8LXUpvdLcOM6mPhIxLisPAwhhk35D3vgnRW+luq0e8A0VsKo6AhR0NAsIN3IQnC0+vreFuIzaCYOpNuHlYXjNVbfX/CbLHsIF0+waFfbkF2ZO3GFOji0b0BTsrXoheuCo4BAdHtim8nuIkYXJNfCkRLNH8/SIGCEBIFitZzjcwzbfOLkNm/ibVwVYY8D838Gii33aJN1DyuxE4k3A+c0W8pe/YXPkdV9SXSsQ+N8KDwKRNjgjpog9psIBwG+7GfNkk3ImBvN1NwptAWKOgk5AO4dt0K7aGzWpdN+a8CfHlIjv3SKlt8AHvS82uRqv235QpmAdHtim9SMTkv6plfjBrsVRQqxAgl0jx8LVeR230NGsiTtc79hjGV1U/s2pDAdJDZp717tUJ0qL7L222pR5YbwtxqZZKBUl/ouOKOaYbZwXfuVAfL6U22ByxWWzjqXv360BthO8IVCogBAdHtim+nET8Gb9Oab/o8GshmXqUY2b7baafXDOcauibkZcx71dgfKxCnCm22wy1rTGG1Nz0nsJTPsAn2cVw+8XcWqSzpwDTRlxqnLu4/XoxjgE2nWADt8xTOgp5wFd4nw9tIs+5G2ApE2wCpRZ2cVWo2m/3onEfP9+GUJutE5YEzyXgThr7nGgpOAdHtim+uYwn7607G/Pg+uC0cCWm7SJZxDYhohc40e5tqDXxIXfixJ5CYUiKURKX658TamimYkiBr8FGZs2XkdMKkn1gFbQj4tZjpHu+R\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 121,\"candidatesTokenCount\": 18,\"totalTokenCount\": 308,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 121}],\"thoughtsTokenCount\": 169},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"k6Idad-8PLLUvdIP9tDr8As\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"multiply\",\"args\": {\"b\": 3,\"a\": 2}}}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0,\"finishMessage\": \"Model generated function call(s).\"}],\"usageMetadata\": {\"promptTokenCount\": 121,\"candidatesTokenCount\": 36,\"totalTokenCount\": 326,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 121}],\"thoughtsTokenCount\": 169},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"k6Idad-8PLLUvdIP9tDr8As\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"add\",\"args\": {\"b\": 3,\"a\": 2}},\"thoughtSignature\": \"CiQBvj72+/5mzhxPMHPnuLp75uv0yLiXlilHJLAP+kJiaYBuOWMKXgG+Pvb7cVVqLAomoUlGHWT11Qpw9y385/61+scbxb8OIInn4iCkBmjAGUZRQzLepGleNqs5cgSE0aU7tHEqK+VFg8NkWslo6qK56AfAV92M56MTL4W2paG5/3y83G8KiwEBvj72+5i8WiXe1K5jKOI8hwA2av98K2GygjwYmqRU4cLlRqUC22+iVRdyP+8aL7LdrZ10IskKtQTiHLI52oSYRDOhAg5EvZfdwafQTsgcx1IInXYJuwe2yzeXUHZvFoacZTO2dxi4Z6JlUSUWFF1HMOhKuAAYeEQxSkX1dEbYVu8IC2Qit0JByARSCocBAb4+9vtGE2otvUtKcRXW/SSI15YSb2JZ6w9A5T+WYdHW+MAOuQm9CgtSfMKrzzXMr9UmEbHbwlVOEiW3abzN2AFojZPi6XqHyXRHBvP/8MF7nkOJDOJbO7emTzV9RVazpZPYEXqUoo2sNc59iypviQcmIulZMb0taC7WlG50gryqguU+qb5BCnABvj72+2ATXsihLeTacbu6hu7eAvbkLIYbTO0wGbeXgz7oOgYV8x8rXSHL/mIjYZH71F62NrXEYbKCZ4Od90fDb+NhnQVnGGwxyHhwn2umg6SFMO4PT/o+zJ27TprRm2PLpWopSje7GQANxH824e6NCmcBvj72+4EH9/SSwSSHoKKCfLyFentqtyuBjtmhbeeIoyED8cSb4BGrk+f/B61G38KAziEwzOvi3wKB1T6GVgVptx25df4yO7r9qJ1YcAaeh4VRF/ynpMwn9I5YiHjPdHs/uoPmn4XmCmUBvj72+0YYsEi4h6bKy5Tw8FBnsvdL0vMZBt7WBoK1NvnIGRqXL4wIDu1I/5jPBk1z/1k9zh6F6vmBjXkjN2lqPhET130bSGTY9KdAbBOMEnuVj06r8Hn4AgsdWSTx7bs8B2yn8wqTAQG+Pvb7T6xeLfI61h/hxHameQM8Hkcv0VsgZHZzJlTVfZ19G/WyZQ56NngYuaorVyscil5FilTskmPkUwlml7TWPUnZcH2H274SN0ErLS5xPPOhNMDXoNVI5IfuXCwgGQQ0q8/SQMkmTsdLhKj0l+h6Sbxj8JOR0QV8bDzLdJJc5xgnsDK1sjWqYaLU+XTajQcxAQqCAQG+Pvb7mWy6L8k7foZKaqbqbjtwr54V4QB2cf9u9co60/UFJvvtlAZ+2vt1i7OLSQOE4tb6AJ3n6BG6tGTCl855QAy4BsozAmTUacfBju7NpvFP6jyaSBydTezN/07gy2Sy8i9xLGhEslI++rQ70JckuuD/J1XFX1+9xc2k/MwgpJgKNwG+Pvb79q0WkumGwUdgGKyG0srSCxFua+rIg3C0wRHQLc/Q5Wt2ff6dhi/ni0JLeDqT2BMpVlA=\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 121,\"candidatesTokenCount\": 18,\"totalTokenCount\": 332,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 121}],\"thoughtsTokenCount\": 193},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"fwCzaajKAZDmz7IP9Pvy-AE\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"multiply\",\"args\": {\"a\": 2,\"b\": 3}}}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0,\"finishMessage\": \"Model generated function call(s).\"}],\"usageMetadata\": {\"promptTokenCount\": 121,\"candidatesTokenCount\": 36,\"totalTokenCount\": 350,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 121}],\"thoughtsTokenCount\": 193},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"fwCzaajKAZDmz7IP9Pvy-AE\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 2.96572975s + duration: 2.94081375s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2336 + content_length: 2596 host: generativelanguage.googleapis.com body: | - {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"1","name":"add"},"thoughtSignature":"CiQB0e2Kbx/zJCGX4QRM1YjdG/0vM0O4q138GSgP9DFjPo5BvxgKXgHR7Ypvpmm3CK4gVVZtV0AvJ5MhonziwhvNMCDxg+jdrww42W8UHrTuM1cvExKrM1WsQkHnTo1PUMcUH9Ju006B1GZbgQvs3J8svt8NYJgh0WNDt8UHPO6b6VGSss4KkQEB0e2Kb68CHsB09XAnHX229MS+YrPraiD8fPqMxVLLkc2FuCR5+fI7A+kzP91qGr92hzdvYlksVeLRy5a5n1LEQmnxxFXtY8xsKDaBXDUlIvdK7VEUb60Gn9vss03eABVgI6cmwR46HFzDAvSwsl3sWtP2U4qoHTTNZ4Dt36pl/S4nxB7Lp14pcLP7sOLZkowTCoEBAdHtim8Pb7C65eIUdYFOqURU6C1ur0uJa+zVoM2/bIsSO8LXUpvdLcOM6mPhIxLisPAwhhk35D3vgnRW+luq0e8A0VsKo6AhR0NAsIN3IQnC0+vreFuIzaCYOpNuHlYXjNVbfX/CbLHsIF0+waFfbkF2ZO3GFOji0b0BTsrXoheuCo4BAdHtim8nuIkYXJNfCkRLNH8/SIGCEBIFitZzjcwzbfOLkNm/ibVwVYY8D838Gii33aJN1DyuxE4k3A+c0W8pe/YXPkdV9SXSsQ+N8KDwKRNjgjpog9psIBwG+7GfNkk3ImBvN1NwptAWKOgk5AO4dt0K7aGzWpdN+a8CfHlIjv3SKlt8AHvS82uRqv235QpmAdHtim9SMTkv6plfjBrsVRQqxAgl0jx8LVeR230NGsiTtc79hjGV1U/s2pDAdJDZp717tUJ0qL7L222pR5YbwtxqZZKBUl/ouOKOaYbZwXfuVAfL6U22ByxWWzjqXv360BthO8IVCogBAdHtim+nET8Gb9Oab/o8GshmXqUY2b7baafXDOcauibkZcx71dgfKxCnCm22wy1rTGG1Nz0nsJTPsAn2cVw+8XcWqSzpwDTRlxqnLu4/XoxjgE2nWADt8xTOgp5wFd4nw9tIs+5G2ApE2wCpRZ2cVWo2m/3onEfP9+GUJutE5YEzyXgThr7nGgpOAdHtim+uYwn7607G/Pg+uC0cCWm7SJZxDYhohc40e5tqDXxIXfixJ5CYUiKURKX658TamimYkiBr8FGZs2XkdMKkn1gFbQj4tZjpHu+R"},{"functionCall":{"args":{"a":2,"b":3},"id":"2","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"2","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. Always use both add and multiply at the same time."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} + {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"1","name":"add"},"thoughtSignature":"CiQBvj72+/5mzhxPMHPnuLp75uv0yLiXlilHJLAP+kJiaYBuOWMKXgG+Pvb7cVVqLAomoUlGHWT11Qpw9y385/61+scbxb8OIInn4iCkBmjAGUZRQzLepGleNqs5cgSE0aU7tHEqK+VFg8NkWslo6qK56AfAV92M56MTL4W2paG5/3y83G8KiwEBvj72+5i8WiXe1K5jKOI8hwA2av98K2GygjwYmqRU4cLlRqUC22+iVRdyP+8aL7LdrZ10IskKtQTiHLI52oSYRDOhAg5EvZfdwafQTsgcx1IInXYJuwe2yzeXUHZvFoacZTO2dxi4Z6JlUSUWFF1HMOhKuAAYeEQxSkX1dEbYVu8IC2Qit0JByARSCocBAb4+9vtGE2otvUtKcRXW/SSI15YSb2JZ6w9A5T+WYdHW+MAOuQm9CgtSfMKrzzXMr9UmEbHbwlVOEiW3abzN2AFojZPi6XqHyXRHBvP/8MF7nkOJDOJbO7emTzV9RVazpZPYEXqUoo2sNc59iypviQcmIulZMb0taC7WlG50gryqguU+qb5BCnABvj72+2ATXsihLeTacbu6hu7eAvbkLIYbTO0wGbeXgz7oOgYV8x8rXSHL/mIjYZH71F62NrXEYbKCZ4Od90fDb+NhnQVnGGwxyHhwn2umg6SFMO4PT/o+zJ27TprRm2PLpWopSje7GQANxH824e6NCmcBvj72+4EH9/SSwSSHoKKCfLyFentqtyuBjtmhbeeIoyED8cSb4BGrk+f/B61G38KAziEwzOvi3wKB1T6GVgVptx25df4yO7r9qJ1YcAaeh4VRF/ynpMwn9I5YiHjPdHs/uoPmn4XmCmUBvj72+0YYsEi4h6bKy5Tw8FBnsvdL0vMZBt7WBoK1NvnIGRqXL4wIDu1I/5jPBk1z/1k9zh6F6vmBjXkjN2lqPhET130bSGTY9KdAbBOMEnuVj06r8Hn4AgsdWSTx7bs8B2yn8wqTAQG+Pvb7T6xeLfI61h/hxHameQM8Hkcv0VsgZHZzJlTVfZ19G/WyZQ56NngYuaorVyscil5FilTskmPkUwlml7TWPUnZcH2H274SN0ErLS5xPPOhNMDXoNVI5IfuXCwgGQQ0q8/SQMkmTsdLhKj0l+h6Sbxj8JOR0QV8bDzLdJJc5xgnsDK1sjWqYaLU+XTajQcxAQqCAQG+Pvb7mWy6L8k7foZKaqbqbjtwr54V4QB2cf9u9co60/UFJvvtlAZ+2vt1i7OLSQOE4tb6AJ3n6BG6tGTCl855QAy4BsozAmTUacfBju7NpvFP6jyaSBydTezN/07gy2Sy8i9xLGhEslI++rQ70JckuuD/J1XFX1+9xc2k/MwgpJgKNwG+Pvb79q0WkumGwUdgGKyG0srSCxFua+rIg3C0wRHQLc/Q5Wt2ff6dhi/ni0JLeDqT2BMpVlA="},{"functionCall":{"args":{"a":2,"b":3},"id":"2","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"2","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. Always use both add and multiply at the same time."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} form: alt: - sse @@ -48,7 +49,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:streamGenerateContent?alt=sse method: POST response: @@ -56,10 +58,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"The\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 348,\"candidatesTokenCount\": 1,\"totalTokenCount\": 349,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 348}]},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"lqIdafyeNI7WvdIP2uCBoAw\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" sum of 2 and 3 is 5, and the product of 2 and \"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 348,\"candidatesTokenCount\": 19,\"totalTokenCount\": 367,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 348}]},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"lqIdafyeNI7WvdIP2uCBoAw\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"3 is 6.\\n\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 348,\"candidatesTokenCount\": 24,\"totalTokenCount\": 372,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 348}]},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"lqIdafyeNI7WvdIP2uCBoAw\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"The\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 374,\"candidatesTokenCount\": 1,\"totalTokenCount\": 375,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 374}]},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"gQCzacGbM8Xgz7IPpMmF2AI\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" sum of 2 and 3 is 5. The product of 2 and 3\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 374,\"candidatesTokenCount\": 20,\"totalTokenCount\": 394,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 374}]},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"gQCzacGbM8Xgz7IPpMmF2AI\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" is 6.\\n\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 374,\"candidatesTokenCount\": 24,\"totalTokenCount\": 398,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 374}]},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"gQCzacGbM8Xgz7IPpMmF2AI\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 1.420692s + duration: 1.229607833s diff --git a/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/simple.yaml b/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/simple.yaml index 409caf5eaecc3d0549c78b813789b6a9b9d14d81..e481b2a5591990c075d49ba90fbcf3ff25a6fd87 100644 --- a/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/simple.yaml +++ b/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/simple.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:generateContent method: POST response: @@ -30,7 +31,7 @@ interactions: "content": { "parts": [ { - "text": "Of course!\n\nThe most common ways to say \"hi\" in Portuguese are:\n\n* **Olá** (oh-LAH) - This is the direct translation of \"hello\" and can be used in any situation, formal or informal.\n* **Oi** (oy) - This is more informal and very common, just like \"hi\" in English.\n\nYou can also use:\n\n* **Tudo bem?** (too-doh beng?) - Which means \"How are you?\" or \"Is everything good?\" and is a very common way to greet someone." + "text": "Of course!\n\nThe most common ways to say \"hi\" in Portuguese are:\n\n* **Olá** (oh-LAH) - This is the direct translation of \"hello\" and can be used in any situation, formal or informal.\n* **Oi** (OY) - This is more like \"hi\" and is very common and casual, especially in Brazil.\n\nYou can also use greetings that depend on the time of day:\n\n* **Bom dia** (bohm GEE-ah) - Good morning\n* **Boa tarde** (BOH-ah TAR-jee) - Good afternoon\n* **Boa noite** (BOH-ah NOY-chee) - Good evening / Good night" } ], "role": "model" @@ -41,22 +42,22 @@ interactions: ], "usageMetadata": { "promptTokenCount": 11, - "candidatesTokenCount": 122, - "totalTokenCount": 849, + "candidatesTokenCount": 152, + "totalTokenCount": 816, "promptTokensDetails": [ { "modality": "TEXT", "tokenCount": 11 } ], - "thoughtsTokenCount": 716 + "thoughtsTokenCount": 653 }, "modelVersion": "gemini-2.5-pro", - "responseId": "fqIdabztHPjXxs0P146HoQk" + "responseId": "aACzadbaBJboz7IPu7SlwQE" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 8.426214208s + duration: 9.00807775s diff --git a/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/simple_streaming.yaml b/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/simple_streaming.yaml index d384ea4d4ff84b4e29871590ac1656ed32c5f67a..d7b6afa8f5b1a0ce36f37dde8b3ed76e8a7865ac 100644 --- a/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/simple_streaming.yaml +++ b/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/simple_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:streamGenerateContent?alt=sse method: POST response: @@ -25,10 +26,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"Of course!\\n\\nThe most common ways to say \\\"hi\\\" in Portuguese are:\\n\\n* **Olá!** (\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 11,\"candidatesTokenCount\": 25,\"totalTokenCount\": 645,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 11}],\"thoughtsTokenCount\": 609},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"gKIdacu9Ct_UvdIPu_e3-QY\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"This is the direct translation of \\\"hello\\\" and works in any situation.)\\n* **Oi!** (This\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 11,\"candidatesTokenCount\": 49,\"totalTokenCount\": 669,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 11}],\"thoughtsTokenCount\": 609},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"gKIdacu9Ct_UvdIPu_e3-QY\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" is more informal and very common, like saying \\\"hi\\\" or \\\"hey.\\\")\\n\\nYou can also use greetings based on the\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 11,\"candidatesTokenCount\": 74,\"totalTokenCount\": 694,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 11}],\"thoughtsTokenCount\": 609},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"gKIdacu9Ct_UvdIPu_e3-QY\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" time of day:\\n\\n* **Bom dia** (Good morning)\\n* **Boa tarde** (Good\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 11,\"candidatesTokenCount\": 98,\"totalTokenCount\": 718,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 11}],\"thoughtsTokenCount\": 609},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"gKIdacu9Ct_UvdIPu_e3-QY\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" afternoon)\\n* **Boa noite** (Good evening / Good night)\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 11,\"candidatesTokenCount\": 115,\"totalTokenCount\": 735,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 11}],\"thoughtsTokenCount\": 609},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"gKIdacu9Ct_UvdIPu_e3-QY\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"Of course!\\n\\nThe most common way to say \\\"hi\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 11,\"candidatesTokenCount\": 12,\"totalTokenCount\": 626,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 11}],\"thoughtsTokenCount\": 603},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"aQCzaYSIIp3Uz7IP4L7z4Qk\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\\\" in Portuguese is:\\n\\n**Oi**\\n\\nYou can also say:\\n\\n**Olá** (This is a bit more\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 11,\"candidatesTokenCount\": 37,\"totalTokenCount\": 651,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 11}],\"thoughtsTokenCount\": 603},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"aQCzaYSIIp3Uz7IP4L7z4Qk\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" like \\\"Hello\\\" and can be used in any situation.)\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 11,\"candidatesTokenCount\": 49,\"totalTokenCount\": 663,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 11}],\"thoughtsTokenCount\": 603},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"aQCzaYSIIp3Uz7IP4L7z4Qk\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 7.118728083s + duration: 6.857090167s diff --git a/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/tool.yaml b/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/tool.yaml index 3042c2ee8b56c3ef18eff7246d7a91faf030f7e2..313869ea0d2f8ca742b6b4b9300fb3211a5d5044 100644 --- a/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/tool.yaml +++ b/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/tool.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:generateContent method: POST response: @@ -33,10 +34,10 @@ interactions: "functionCall": { "name": "weather", "args": { - "location": "Florence, Italy" + "location": "Florence,Italy" } }, - "thoughtSignature": "CtcDAdHtim8sltjSbCOxCM3sW652tUKKCiplDIoViEhKUuXpAUkg8vvhGpNwIBQdUOU091dd13FYdNYoTg/N62xtEIbin8xsVkDAhEBNTyciVa1cUORxFwTjID5b4z8/byy0Zf/e6sbKXMxbf9BpAVMHQW0mF6Yz82BQsczMi3B00lOO+0VV82ClVs4tBXYf7o3kekAAVD+XGCfuB/YGr9V6CeJCMXc8+gVpLIFS4DaPlNMoG3Lv4PnZp4beJ4puuIxh+3ipmGv8hJKAwUFAZmuU/knnUMqc09ddXtJdPKyssWbuR51SIU49+eVtxOib43fUOILlOO+J0oukfCSt2JS6EuVVSNYDMC7HOUkkY9T7V9IbCEtiuL42gvWbCAEwbta/QuGH1L9emajt2yiX+bIcuCl3GuRU0wQ/AB4mMBFwmnATUiaEKAmtSpiSvHy20SUHMh/KPNEOfQ0J6IyBWWhKhEaiAezRaKZSao6g68ymM5xOAyY0Vkrq3pWeUjboR9Z65I/tKiE2Qs6PuQJWI1sL67D9a885x10iR6NpaJyETpOYqGDqjZ3zs8ZiibLy0iitwibDwXzJyCLrJzEoTRmtotxoSkTm2wQVUpVpQzZBl4pzMbY2CRoR" + "thoughtSignature": "CvAEAb4+9vtxNfQaVSMvYzllmvVB1mXbjZ/qnb4x+ly3Srx40E5gyHmg0LvGfTs6yXFSywSUSD6tcGVUHOKlwVy7iG+xxOL2sBFKa2uPJYvbFIDPEbp+qxwewOczGBAe74tqcbVyy+ulV7vlMeajS1Yu/xDipVuNvKPiLr/bOlNVCtGr2dNccPdCwifE47yKkDwrKVbHjgF/T0b2757DMN7aRp2fsQN5eRCJ8z4P14MoPIsPjvnIInT//t8bz0ZgU36urTFQt9s8sRrIRYOoyh0wfLCMH+5RLoZWVOGvtVG4OasSZmWOix4cSq74VAvhk9TY3XoIDH/CTWn266rR1/OyjDImoAvcGAYF0YGNaEI9TS9OStKLBI+YAZrQC5L884F5+ry3k8xwmx3omToKECwFPx66Tg27fGAIf0T/M0abfKJhCuobRChab4MXZKJbBTfNxPpP/bOB3P7chC/S4uNoIPNU8cQs6zJECujeY5J4eFSwTsMhgOXcWnd9xUNM2zbyiTwPyiVNa8/M3TlvHYc0H32ClWTfTOUFQo2HSLNXXhTI3qZ3/PnZzOIbF2HTSgWqf5jhWDPLp+q1MGBmqBarhwwoie8yl6RKSP1XFJuEgUuW53LnP7esFSGZymfJvLynPnUDUiu3Nyf2W9YwN3FGt7cvMsO3YX34dFwbKr9Wy2ZOM5RNEP/Cf5qzDYvzQnkr4WmAQYQg5Rpt8YVoOuXJDK2z1Qb8MIQfv75RTt4CzkIjrMxIVy1q1L+iUWaSxh/b7HDkh/7CLNF/pvRnB/KjsFU5j2BeXRKF2hIVPRNC8PhnB6rbpDtrEcIrpC9lmIQA" } ], "role": "model" @@ -49,38 +50,39 @@ interactions: "usageMetadata": { "promptTokenCount": 54, "candidatesTokenCount": 15, - "totalTokenCount": 181, + "totalTokenCount": 216, "promptTokensDetails": [ { "modality": "TEXT", "tokenCount": 54 } ], - "thoughtsTokenCount": 112 + "thoughtsTokenCount": 147 }, "modelVersion": "gemini-2.5-pro", - "responseId": "iKIdafbaFtX8vdIPueXoyAk" + "responseId": "cQCzae6gL5DRz7IP65zX0A4" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 2.134031542s + duration: 2.6726995s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1377 + content_length: 1580 host: generativelanguage.googleapis.com body: | - {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"CtcDAdHtim8sltjSbCOxCM3sW652tUKKCiplDIoViEhKUuXpAUkg8vvhGpNwIBQdUOU091dd13FYdNYoTg/N62xtEIbin8xsVkDAhEBNTyciVa1cUORxFwTjID5b4z8/byy0Zf/e6sbKXMxbf9BpAVMHQW0mF6Yz82BQsczMi3B00lOO+0VV82ClVs4tBXYf7o3kekAAVD+XGCfuB/YGr9V6CeJCMXc8+gVpLIFS4DaPlNMoG3Lv4PnZp4beJ4puuIxh+3ipmGv8hJKAwUFAZmuU/knnUMqc09ddXtJdPKyssWbuR51SIU49+eVtxOib43fUOILlOO+J0oukfCSt2JS6EuVVSNYDMC7HOUkkY9T7V9IbCEtiuL42gvWbCAEwbta/QuGH1L9emajt2yiX+bIcuCl3GuRU0wQ/AB4mMBFwmnATUiaEKAmtSpiSvHy20SUHMh/KPNEOfQ0J6IyBWWhKhEaiAezRaKZSao6g68ymM5xOAyY0Vkrq3pWeUjboR9Z65I/tKiE2Qs6PuQJWI1sL67D9a885x10iR6NpaJyETpOYqGDqjZ3zs8ZiibLy0iitwibDwXzJyCLrJzEoTRmtotxoSkTm2wQVUpVpQzZBl4pzMbY2CRoR"}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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"}}]}]} + {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence,Italy"},"id":"1","name":"weather"},"thoughtSignature":"CvAEAb4+9vtxNfQaVSMvYzllmvVB1mXbjZ/qnb4x+ly3Srx40E5gyHmg0LvGfTs6yXFSywSUSD6tcGVUHOKlwVy7iG+xxOL2sBFKa2uPJYvbFIDPEbp+qxwewOczGBAe74tqcbVyy+ulV7vlMeajS1Yu/xDipVuNvKPiLr/bOlNVCtGr2dNccPdCwifE47yKkDwrKVbHjgF/T0b2757DMN7aRp2fsQN5eRCJ8z4P14MoPIsPjvnIInT//t8bz0ZgU36urTFQt9s8sRrIRYOoyh0wfLCMH+5RLoZWVOGvtVG4OasSZmWOix4cSq74VAvhk9TY3XoIDH/CTWn266rR1/OyjDImoAvcGAYF0YGNaEI9TS9OStKLBI+YAZrQC5L884F5+ry3k8xwmx3omToKECwFPx66Tg27fGAIf0T/M0abfKJhCuobRChab4MXZKJbBTfNxPpP/bOB3P7chC/S4uNoIPNU8cQs6zJECujeY5J4eFSwTsMhgOXcWnd9xUNM2zbyiTwPyiVNa8/M3TlvHYc0H32ClWTfTOUFQo2HSLNXXhTI3qZ3/PnZzOIbF2HTSgWqf5jhWDPLp+q1MGBmqBarhwwoie8yl6RKSP1XFJuEgUuW53LnP7esFSGZymfJvLynPnUDUiu3Nyf2W9YwN3FGt7cvMsO3YX34dFwbKr9Wy2ZOM5RNEP/Cf5qzDYvzQnkr4WmAQYQg5Rpt8YVoOuXJDK2z1Qb8MIQfv75RTt4CzkIjrMxIVy1q1L+iUWaSxh/b7HDkh/7CLNF/pvRnB/KjsFU5j2BeXRKF2hIVPRNC8PhnB6rbpDtrEcIrpC9lmIQA"}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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"}}]}]} headers: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:generateContent method: POST response: @@ -96,7 +98,7 @@ interactions: "content": { "parts": [ { - "text": "The weather in Florence, Italy is 40 C." + "text": "The weather in Florence, Italy is 40 degrees Celsius. \n" } ], "role": "model" @@ -107,8 +109,8 @@ interactions: ], "usageMetadata": { "promptTokenCount": 84, - "candidatesTokenCount": 12, - "totalTokenCount": 96, + "candidatesTokenCount": 13, + "totalTokenCount": 97, "promptTokensDetails": [ { "modality": "TEXT", @@ -117,11 +119,11 @@ interactions: ] }, "modelVersion": "gemini-2.5-pro", - "responseId": "iqIdaYfpG6_9xN8Pgt6ymQk" + "responseId": "cwCzaeipJJ_pz7IP4qeRQA" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 2.067662125s + duration: 1.829672291s diff --git a/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/tool_streaming.yaml b/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/tool_streaming.yaml index ec87ed3592d38ccadf3af72289ecdfb57d4a2ef7..82f6c461fdd930d46b108da4bee4bb37ef1764bf 100644 --- a/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/tool_streaming.yaml +++ b/providertests/testdata/TestGoogleCommon/gemini-2.5-pro/tool_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:streamGenerateContent?alt=sse method: POST response: @@ -25,22 +26,22 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"weather\",\"args\": {\"location\": \"Florence, Italy\"}},\"thoughtSignature\": \"CiIB0e2Kb8A87l6fcJFqiyFOsaqJQbuIyvqWWGMyVLlvR5BOCmcB0e2KbzIGGc8QCp2X4zQ5F7dQvkx1zJbHigOjmr6JMhp1opsOUlDm2O34WqYMy1TooaTT5N/h3ufeU3dl5Ss2qP6omWLzzoF4kXUCbwcvIgTiqDayYrPfwHx93XC7rU1nG4aTBIMtCocBAdHtim/dvxkuVr2NRUIhqXz/yVDiYbflnMhp6AqlkPkqChqNrP6BOzT5kw9Vh6cx8NrTCTdd+oqM01fXQC+EuV4nD52dDrViwxVoMmiObnjvL1kdkMN+mlXsdwQMXbbZuZG0KwY5baJR5OKgTlXW7nOgzjYo2iEGk9g5V6jF6F0ZBCKMUWWcCoABAdHtim/3KIej0FWXxbVioSBF/JIkCmmTHOFTT+1/VNK1YKl7nZ6e6OarSZ9Q1Qam4bf5Aw4hg0JmRPI8UpB3SrFva3dkfHceyPIWBbjtmIEawNZaSnCv+oYXJGdQze8bUSZ3bD6HnDhju2eLNqRzVEAkYwCQPD8DjmAbGPdN4j0KhAEB0e2Kb0BS3VRBfKzWnObbM9W8DaK8rHpUWYE/gUfOEHEWQTT4cJe2ilhneXgGffnK24wYtqIbyGnbZnBcpkifQHhTJAz9tEAToRfckSr2qiDdyxlxtmuzLopPgjWLTO4S/hNAKKOrkcZkyvkfQaEPnvoDNutWb5GNLs8RkAkUeXTzlbcKYgHR7YpvgZXPWWUaxQ3ehM2VoAPQ6RV2cQHT+95ahkTE6PzT2PKJ/m5dgAohTAX7NEsG74SOFrdZWtnspq9T23ebHIyyxwyTbsmmzaxsPw/nEI2KpAfc+brA0lvP740peGWC\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0,\"finishMessage\": \"Model generated function call(s).\"}],\"usageMetadata\": {\"promptTokenCount\": 54,\"candidatesTokenCount\": 15,\"totalTokenCount\": 176,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 54}],\"thoughtsTokenCount\": 107},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"i6IdafXaGKePvdIPj5TpsQk\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"weather\",\"args\": {\"location\": \"Florence, Italy\"}},\"thoughtSignature\": \"CiIBvj72+1v4QKkYPOC2jG3Va8DRpe8ihI2ScnfIBJDY2N8fCmcBvj72+/d+0GymuiakCGulxoE09dJ4iFALSGX9PK6RqSe3jO+BC4uHmnsIENG/1ry0N/ScX9Daqn4wmWIQ6y2yl0HgVo3MCEN2nI6Fe0HOsg+Znw6NYdDxL//CixiAVrJUEe60eoxLCocBAb4+9vtOKB25uRUGO8ff8YSXhdJeXwc8HV+8WC1Hfk4rQgaRRNkgmbfUCBr4Nc9QhypeVqodo+7YV2hEsFiWRdrMGTQoHLJ1+mq1e3taKJtJGrvwnsbPJaNFcv5iF/GiZV4NJmjbZEo1Tnvo4VLcv8syybSkH5KAhgdtEs2qUjccw/sXmoRcCoABAb4+9vtHE4LrV/lmqX2OO7koVDHduhTXREfiHj8QHMSQb8f7KYxxD+hemOcozCJVmQtnd8WpaDZWKZtBO3CyHep7ag6OOqFE0IxXZ5RKB+s1zrOdfIhaJRWWisQZ37IXi0MPCpDLkLyqWolJ/mnHD+NNi4d8JXaecy8p8E7o4JMKgQEBvj72+zqAt0jZkkAsfVRWnWs/mMAcYWRcuu4QH9ayaABA8EPMmtEJ16g6XsDFACBnhvNGs1XyfUYpDVNfzg0jCw83td7wvZY5iuf2JcOeCNPcJNtNOffYb0KKPu0tmUM6chn0G3m2Ls9qo8r5pnW9BoRsofrkVI+7RKEe+w4VWXwKkwEBvj72+6AYTIrtLPVxXAVq+TnIUzttMGWkJQDH+UIqc1EG6P/YH2xJ0rw//VtjHEeuQ/vYXpwB2VqHf8zNbmiXEM50Y5glpU6nYfEy0Qpa3jMAc0/cl/xX8lPYpwihChpf0tCbR/pvHyOPVoK0QRSnbIpRsHCvyFAbhVdwc2VeNl+bsBupkUxsm2f1o4aQ7VP6pEkKmgEBvj72+xUNgiMacUJoqo/5GO3Gu9EqQ87RDkT8471x+BPuaZbCxUno4AE7P6KkjsE5UWaEzvGQtct+64XKfbXW/Xz8FDjhW1R0CUDeHchJxN0hbeUbI3CEnTx1kl9zTjJlaWGpIPe1VJr1qqWro+VAJYWf0DymNVAlKPpGe5sSBrqwpAiztFvFLWJg9nz090+BliguV5PBn2Y5CoUBAb4+9vv7rXqsVZL4DDyPOuHt8bOfjzkZl0mt9BjZWqIjtknczJuoAmFIGQrzpc2viLvumINdmxTkq9Z4F/X5TMy3ECPLtVVCi63K73k693bz2STSIrKlRepFNIX6dvrRBZPUDKZp2r3wHhvcGhFir/s/Me3TOqHhJiDT3jff7tUH643SKAqKAQG+Pvb7DVgdIzgt4wE7iwTlmQXYWbksQ/tcpEezQB3nbo9tAL3calCnINp/tN3v7XPC/T8ohtrtzOLyOIwUYRStcGmusDLjKBioNgllneaelLi3IcJTIXOREtGtY+m2X3U5q32DQHT+vHrfZS7zY0g+KPcu3gVD/YiZJJlHPbeZiZ7ikwOi74H1tg==\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0,\"finishMessage\": \"Model generated function call(s).\"}],\"usageMetadata\": {\"promptTokenCount\": 54,\"candidatesTokenCount\": 15,\"totalTokenCount\": 259,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 54}],\"thoughtsTokenCount\": 190},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"dQCzaYOcOPaEz7IP5YenwQM\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 1.958855542s + duration: 4.2315165s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1605 + content_length: 2249 host: generativelanguage.googleapis.com body: | - {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"CiIB0e2Kb8A87l6fcJFqiyFOsaqJQbuIyvqWWGMyVLlvR5BOCmcB0e2KbzIGGc8QCp2X4zQ5F7dQvkx1zJbHigOjmr6JMhp1opsOUlDm2O34WqYMy1TooaTT5N/h3ufeU3dl5Ss2qP6omWLzzoF4kXUCbwcvIgTiqDayYrPfwHx93XC7rU1nG4aTBIMtCocBAdHtim/dvxkuVr2NRUIhqXz/yVDiYbflnMhp6AqlkPkqChqNrP6BOzT5kw9Vh6cx8NrTCTdd+oqM01fXQC+EuV4nD52dDrViwxVoMmiObnjvL1kdkMN+mlXsdwQMXbbZuZG0KwY5baJR5OKgTlXW7nOgzjYo2iEGk9g5V6jF6F0ZBCKMUWWcCoABAdHtim/3KIej0FWXxbVioSBF/JIkCmmTHOFTT+1/VNK1YKl7nZ6e6OarSZ9Q1Qam4bf5Aw4hg0JmRPI8UpB3SrFva3dkfHceyPIWBbjtmIEawNZaSnCv+oYXJGdQze8bUSZ3bD6HnDhju2eLNqRzVEAkYwCQPD8DjmAbGPdN4j0KhAEB0e2Kb0BS3VRBfKzWnObbM9W8DaK8rHpUWYE/gUfOEHEWQTT4cJe2ilhneXgGffnK24wYtqIbyGnbZnBcpkifQHhTJAz9tEAToRfckSr2qiDdyxlxtmuzLopPgjWLTO4S/hNAKKOrkcZkyvkfQaEPnvoDNutWb5GNLs8RkAkUeXTzlbcKYgHR7YpvgZXPWWUaxQ3ehM2VoAPQ6RV2cQHT+95ahkTE6PzT2PKJ/m5dgAohTAX7NEsG74SOFrdZWtnspq9T23ebHIyyxwyTbsmmzaxsPw/nEI2KpAfc+brA0lvP740peGWC"}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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"}}]}]} + {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"CiIBvj72+1v4QKkYPOC2jG3Va8DRpe8ihI2ScnfIBJDY2N8fCmcBvj72+/d+0GymuiakCGulxoE09dJ4iFALSGX9PK6RqSe3jO+BC4uHmnsIENG/1ry0N/ScX9Daqn4wmWIQ6y2yl0HgVo3MCEN2nI6Fe0HOsg+Znw6NYdDxL//CixiAVrJUEe60eoxLCocBAb4+9vtOKB25uRUGO8ff8YSXhdJeXwc8HV+8WC1Hfk4rQgaRRNkgmbfUCBr4Nc9QhypeVqodo+7YV2hEsFiWRdrMGTQoHLJ1+mq1e3taKJtJGrvwnsbPJaNFcv5iF/GiZV4NJmjbZEo1Tnvo4VLcv8syybSkH5KAhgdtEs2qUjccw/sXmoRcCoABAb4+9vtHE4LrV/lmqX2OO7koVDHduhTXREfiHj8QHMSQb8f7KYxxD+hemOcozCJVmQtnd8WpaDZWKZtBO3CyHep7ag6OOqFE0IxXZ5RKB+s1zrOdfIhaJRWWisQZ37IXi0MPCpDLkLyqWolJ/mnHD+NNi4d8JXaecy8p8E7o4JMKgQEBvj72+zqAt0jZkkAsfVRWnWs/mMAcYWRcuu4QH9ayaABA8EPMmtEJ16g6XsDFACBnhvNGs1XyfUYpDVNfzg0jCw83td7wvZY5iuf2JcOeCNPcJNtNOffYb0KKPu0tmUM6chn0G3m2Ls9qo8r5pnW9BoRsofrkVI+7RKEe+w4VWXwKkwEBvj72+6AYTIrtLPVxXAVq+TnIUzttMGWkJQDH+UIqc1EG6P/YH2xJ0rw//VtjHEeuQ/vYXpwB2VqHf8zNbmiXEM50Y5glpU6nYfEy0Qpa3jMAc0/cl/xX8lPYpwihChpf0tCbR/pvHyOPVoK0QRSnbIpRsHCvyFAbhVdwc2VeNl+bsBupkUxsm2f1o4aQ7VP6pEkKmgEBvj72+xUNgiMacUJoqo/5GO3Gu9EqQ87RDkT8471x+BPuaZbCxUno4AE7P6KkjsE5UWaEzvGQtct+64XKfbXW/Xz8FDjhW1R0CUDeHchJxN0hbeUbI3CEnTx1kl9zTjJlaWGpIPe1VJr1qqWro+VAJYWf0DymNVAlKPpGe5sSBrqwpAiztFvFLWJg9nz090+BliguV5PBn2Y5CoUBAb4+9vv7rXqsVZL4DDyPOuHt8bOfjzkZl0mt9BjZWqIjtknczJuoAmFIGQrzpc2viLvumINdmxTkq9Z4F/X5TMy3ECPLtVVCi63K73k693bz2STSIrKlRepFNIX6dvrRBZPUDKZp2r3wHhvcGhFir/s/Me3TOqHhJiDT3jff7tUH643SKAqKAQG+Pvb7DVgdIzgt4wE7iwTlmQXYWbksQ/tcpEezQB3nbo9tAL3calCnINp/tN3v7XPC/T8ohtrtzOLyOIwUYRStcGmusDLjKBioNgllneaelLi3IcJTIXOREtGtY+m2X3U5q32DQHT+vHrfZS7zY0g+KPcu3gVD/YiZJJlHPbeZiZ7ikwOi74H1tg=="}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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 @@ -48,7 +49,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:streamGenerateContent?alt=sse method: POST response: @@ -56,10 +58,10 @@ interactions: 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\": 189,\"candidatesTokenCount\": 4,\"totalTokenCount\": 193,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 189}]},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"jaIdafjSJqTyxs0PnYinqAk\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \", Italy is 40 C. \\n\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 189,\"candidatesTokenCount\": 12,\"totalTokenCount\": 201,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 189}]},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"jaIdafjSJqTyxs0PnYinqAk\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"The weather in Florence\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 274,\"candidatesTokenCount\": 4,\"totalTokenCount\": 278,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 274}]},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"eQCzaYyMA7znz7IP7oS00Ak\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \", Italy is 40 C.\\n\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 274,\"candidatesTokenCount\": 12,\"totalTokenCount\": 286,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 274}]},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"eQCzaYyMA7znz7IP7oS00Ak\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 1.21722675s + duration: 1.238609834s diff --git a/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/multi_tool.yaml b/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/multi_tool.yaml index cd2d444cff9964098b5510b51fcd8ebb0d739399..65fb8020cbcdf0649b9afbebd743a2b02dd85d05 100644 --- a/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/multi_tool.yaml +++ b/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/multi_tool.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-preview:generateContent method: POST response: @@ -35,17 +36,19 @@ interactions: "args": { "b": 3, "a": 2 - } + }, + "id": "wxvlv0tv" }, - "thoughtSignature": "Ep8DCpwDAdHtim9QdO0y9bZ65Rujicbol+wCUJKbtFVKI8R2aVL5g9KNn25HRk9RQTnn6Mf/bHwNDvm17S/NkwMNRHTnsrgsFhCnID3D3UUhs2a0PJAw2qr4I2JkLlDxSarHaYQL8FkzDJCyEfaKHa4wPEFCTQL4DYtVutBbO5/f8meUiUhZxBBuKshtXWlqO0ecRIKJ1UD+wMZ0BlFGdJGYoVVpYFlbk3/MJzmKzy21oDuzYLPSpHFi79QB6QucplXCYu37zxdYlzr6Hq5aGYf2Cw6qKr5j8F85I+zX5S0MPfVdK68nuPC4qb/qYGRUhMHzb05e13X1SotaSS8hZJo+u9pUXhwrSnNbSoVZEBKC+dSqoksI6YHm89pUKA94eC++gJ1ul/HHMHrF49r1wvAKO7EUP0TBCtemyZYtVSrh0TmIkucyU9pUCzNB375Kmox8qbARrUXdlHjCkdisVqJMIZhEn34dfNah7Uc/lQj975ZR5k0zetyhnUHG7E/Blv1Nezo8rB2n4HxhTrKKLyRDXl3dtt2fDSr5UvzzZEBEiQ==" + "thoughtSignature": "Es8KCswKAb4+9vtrVmO0plQ64ERt0uQKzZonNy53D/+nFxRO1TcWH0HSxBilFjTw//xDeRj7pCIvNED3q2jhDQWHNRM4vTLAqKcGwlHjkJSQn88aU1H1O7fAsu0zLvlF1Jfoy/emXhw+YbBcYCUzZ32L+EFJNP5qVw9l97ZNqPk0vq4ZpCUMKwdWWhd0eZ4kQTPckw9e69vp9CSaf9lWlThy/KrmtxWLHijFLKQaR112BwWN/7TyzAdesZB3z5r7Cnj16o2HxJUzB+GBD1UFUNiQEVWiU4SPv1fHdR9ME6TSBDgRceBJE/AbBHVO2IDrGNxHXbrJR4GUGX+komQ7SJTD/hkF1BMnOIa2GSKf99Nv8O1jMJbMF4hUnUbZuWlvycu0CWGqx6A3Qq3DvXkX7TDXV6u6y+mA5Aox5404QzKLf1bMI6IS4zU/Zd/0AhY/tBaJgPtDTnL7Gz5Nvmtd7/7DUub+0IRSU657IZESa/UnN8A9yk+mGjE7tdfESZ2f5hMhAKAjAKBiec+H/LBI3O9ptR4wy6NzdTtqHGXJObyMkBzqPAmUDb6msoBMD0KJsH7ZYeLHCF5RPWpC+O1mpF3cK9sHHaAXkN2GjtMDc7swar3eq/JBoZMoo6N38Mwc5+oHFJlT0TcSrFaJTEeSefdIuL/hsxscQPVUY5KidWX9dZ9QQiSBxf+SgUpF+w3R++LDtcld2VW+e8bSIQwICX/PfNNRUGQ619IY5Eu53mReGV+pojgiJqDiFtLVONFJMY0oToEWZrjdkoZVRuTBXMsGAgAOQCIcmexfqs2NuzFd6vlCyGP/Lwy8ZEbkkaK2QFoSkvInsnAfCCAKt35n/SBW5tQlhlw393lsX8lRNQSL+2jQa40So32IwCE/wt6wD+6FhZWP7BKI83phPqKqz7Z9+lmbfNQPq4wRtegwhYtQTeenN69rWwB1z+zap+gRT9odg3bZaP0Do7tsIiy0Bc0rieT0C7gMWIp57wtaXTcVirLCscztBvlOlI7ZemzNWFo//HQaHBCCR4Jk5wWjyVu5sKnAHwSlmQ8tpShd3s+RWfUr2YFlf8DNCThOYy4U5iw5/TJAw2WwlpQYDPGAZpXdWmAgtjTb04QfvWJL/RX73+2Cviv3YNqWnoUln+Ppw7qSXfOhRVmVAbYLzBjxg8A/KM3rA5pSBv3bV2+9DnQHqT4xx3g+elvVM4sOvnJnfETSNUjKRG3xAnsl4rzsOJgnEVh633IiYT6TMJHIJuKforsrljN4sttp4kIafrYT9zoHXfyJLsyNf6Uj0+OshTUHYs/Suucb+ZH+HAnd9SUodCXXZtInzeo6LEm68kptq+u9QiDCXt1TkredXyNLIO6vPCUftWciCgebZ8tZ0Do7bfK0DOT8YPFSQ2Vxtb58p4gpWXVYLCb2pZ61sMkvXiKsztCPCAEJ4OTsYmeqaf1Et4NzAI0zaSAy4N4NWQBt4RUdoNNCX/WQ9gXGljw2+sERTAnhl8NzLP0+CzbMYnd/ACtHHxG2CgzHNWs7dXarz1xYzdLbQRYAoNrWQPtPacsKxt5iiYiqoyIg5w5+zgQEoUWt6CQKv9SnxFVu/jQNGB6XNJSIEhL5Wl1JkOoMnBsfyuvT4fyIT1KBBA2DZTJW5z6wspBFiRuSlBMuA04tAInhzNAeajxpitzm0czJHC8V0bMwiU/sIoJeYJ1omraxgtak7bqo7jvcp9+oksAqsqYVosaX2Shn0BwQIsfCScwKc8T8yYU3doqobL8K74gIdATos5hAHXJ3hEpabgiqCF+C+ef39KnoFtOHyqmWOn6a" }, { "functionCall": { "name": "multiply", "args": { - "a": 2, - "b": 3 - } + "b": 3, + "a": 2 + }, + "id": "75p2opbh" } } ], @@ -57,40 +60,41 @@ interactions: } ], "usageMetadata": { - "promptTokenCount": 161, + "promptTokenCount": 299, "candidatesTokenCount": 32, - "totalTokenCount": 289, + "totalTokenCount": 826, "promptTokensDetails": [ { "modality": "TEXT", - "tokenCount": 161 + "tokenCount": 299 } ], - "thoughtsTokenCount": 96 + "thoughtsTokenCount": 495 }, - "modelVersion": "gemini-3-pro-preview", - "responseId": "Z6IdadLwMIDXvdIPwbrDyAY" + "modelVersion": "gemini-3.1-pro-preview", + "responseId": "SgCzaaS4CdHVz7IPuaO42Qk" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 2.545695292s + duration: 8.086101416s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1737 + content_length: 3021 host: generativelanguage.googleapis.com body: | - {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"1","name":"add"},"thoughtSignature":"Ep8DCpwDAdHtim9QdO0y9bZ65Rujicbol+wCUJKbtFVKI8R2aVL5g9KNn25HRk9RQTnn6Mf/bHwNDvm17S/NkwMNRHTnsrgsFhCnID3D3UUhs2a0PJAw2qr4I2JkLlDxSarHaYQL8FkzDJCyEfaKHa4wPEFCTQL4DYtVutBbO5/f8meUiUhZxBBuKshtXWlqO0ecRIKJ1UD+wMZ0BlFGdJGYoVVpYFlbk3/MJzmKzy21oDuzYLPSpHFi79QB6QucplXCYu37zxdYlzr6Hq5aGYf2Cw6qKr5j8F85I+zX5S0MPfVdK68nuPC4qb/qYGRUhMHzb05e13X1SotaSS8hZJo+u9pUXhwrSnNbSoVZEBKC+dSqoksI6YHm89pUKA94eC++gJ1ul/HHMHrF49r1wvAKO7EUP0TBCtemyZYtVSrh0TmIkucyU9pUCzNB375Kmox8qbARrUXdlHjCkdisVqJMIZhEn34dfNah7Uc/lQj975ZR5k0zetyhnUHG7E/Blv1Nezo8rB2n4HxhTrKKLyRDXl3dtt2fDSr5UvzzZEBEiQ=="},{"functionCall":{"args":{"a":2,"b":3},"id":"2","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"2","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} + {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"wxvlv0tv","name":"add"},"thoughtSignature":"Es8KCswKAb4+9vtrVmO0plQ64ERt0uQKzZonNy53D/+nFxRO1TcWH0HSxBilFjTw//xDeRj7pCIvNED3q2jhDQWHNRM4vTLAqKcGwlHjkJSQn88aU1H1O7fAsu0zLvlF1Jfoy/emXhw+YbBcYCUzZ32L+EFJNP5qVw9l97ZNqPk0vq4ZpCUMKwdWWhd0eZ4kQTPckw9e69vp9CSaf9lWlThy/KrmtxWLHijFLKQaR112BwWN/7TyzAdesZB3z5r7Cnj16o2HxJUzB+GBD1UFUNiQEVWiU4SPv1fHdR9ME6TSBDgRceBJE/AbBHVO2IDrGNxHXbrJR4GUGX+komQ7SJTD/hkF1BMnOIa2GSKf99Nv8O1jMJbMF4hUnUbZuWlvycu0CWGqx6A3Qq3DvXkX7TDXV6u6y+mA5Aox5404QzKLf1bMI6IS4zU/Zd/0AhY/tBaJgPtDTnL7Gz5Nvmtd7/7DUub+0IRSU657IZESa/UnN8A9yk+mGjE7tdfESZ2f5hMhAKAjAKBiec+H/LBI3O9ptR4wy6NzdTtqHGXJObyMkBzqPAmUDb6msoBMD0KJsH7ZYeLHCF5RPWpC+O1mpF3cK9sHHaAXkN2GjtMDc7swar3eq/JBoZMoo6N38Mwc5+oHFJlT0TcSrFaJTEeSefdIuL/hsxscQPVUY5KidWX9dZ9QQiSBxf+SgUpF+w3R++LDtcld2VW+e8bSIQwICX/PfNNRUGQ619IY5Eu53mReGV+pojgiJqDiFtLVONFJMY0oToEWZrjdkoZVRuTBXMsGAgAOQCIcmexfqs2NuzFd6vlCyGP/Lwy8ZEbkkaK2QFoSkvInsnAfCCAKt35n/SBW5tQlhlw393lsX8lRNQSL+2jQa40So32IwCE/wt6wD+6FhZWP7BKI83phPqKqz7Z9+lmbfNQPq4wRtegwhYtQTeenN69rWwB1z+zap+gRT9odg3bZaP0Do7tsIiy0Bc0rieT0C7gMWIp57wtaXTcVirLCscztBvlOlI7ZemzNWFo//HQaHBCCR4Jk5wWjyVu5sKnAHwSlmQ8tpShd3s+RWfUr2YFlf8DNCThOYy4U5iw5/TJAw2WwlpQYDPGAZpXdWmAgtjTb04QfvWJL/RX73+2Cviv3YNqWnoUln+Ppw7qSXfOhRVmVAbYLzBjxg8A/KM3rA5pSBv3bV2+9DnQHqT4xx3g+elvVM4sOvnJnfETSNUjKRG3xAnsl4rzsOJgnEVh633IiYT6TMJHIJuKforsrljN4sttp4kIafrYT9zoHXfyJLsyNf6Uj0+OshTUHYs/Suucb+ZH+HAnd9SUodCXXZtInzeo6LEm68kptq+u9QiDCXt1TkredXyNLIO6vPCUftWciCgebZ8tZ0Do7bfK0DOT8YPFSQ2Vxtb58p4gpWXVYLCb2pZ61sMkvXiKsztCPCAEJ4OTsYmeqaf1Et4NzAI0zaSAy4N4NWQBt4RUdoNNCX/WQ9gXGljw2+sERTAnhl8NzLP0+CzbMYnd/ACtHHxG2CgzHNWs7dXarz1xYzdLbQRYAoNrWQPtPacsKxt5iiYiqoyIg5w5+zgQEoUWt6CQKv9SnxFVu/jQNGB6XNJSIEhL5Wl1JkOoMnBsfyuvT4fyIT1KBBA2DZTJW5z6wspBFiRuSlBMuA04tAInhzNAeajxpitzm0czJHC8V0bMwiU/sIoJeYJ1omraxgtak7bqo7jvcp9+oksAqsqYVosaX2Shn0BwQIsfCScwKc8T8yYU3doqobL8K74gIdATos5hAHXJ3hEpabgiqCF+C+ef39KnoFtOHyqmWOn6a"},{"functionCall":{"args":{"a":2,"b":3},"id":"75p2opbh","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"wxvlv0tv","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"75p2opbh","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} headers: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-preview:generateContent method: POST response: @@ -106,7 +110,8 @@ interactions: "content": { "parts": [ { - "text": "The sum of 2 and 3 is 5, and the product of 2 and 3 is 6." + "text": "The sum of 2 and 3 is 5, and their product is 6.", + "thoughtSignature": "ErUCCrICAb4+9vuEA8Ej10Oo5t9ABqd1EGoXsM3Jd7bei8s8ro77g6l2Muq48QXLL3g9AMIqkVBxElsR5fiyzjmvX8jI3TedXqfYhj4qpkcynRdfqjvQfgwlRgzrXVbG/6EY4LtQcvJmWxL9OZ+E4jJYQCH/rewB85WvGm9W45tUuwUnpOruUtROi1Csr22iXy2kBYbUQLCvyhwDv8MDPL3okdhVApB/CXs7YZj0se1dYXcdkdWcjib56i78sBIirruhhRTIgMtkoqQfKjWmcLH7kRfDhCaVChscgxNjNp+72xfav+AxUMtfYXAwCevchm5fq7YcgjCP5nBTRtZBGxSIm1t1G/x4idWk8/EnTZBVfpPpYJGwRPM8T+YOdDQAuK8rsNu7fjY0VAA8dCgKyrtpTUeGBOM1" } ], "role": "model" @@ -116,22 +121,23 @@ interactions: } ], "usageMetadata": { - "promptTokenCount": 309, - "candidatesTokenCount": 25, - "totalTokenCount": 334, + "promptTokenCount": 606, + "candidatesTokenCount": 19, + "totalTokenCount": 703, "promptTokensDetails": [ { "modality": "TEXT", - "tokenCount": 309 + "tokenCount": 606 } - ] + ], + "thoughtsTokenCount": 78 }, - "modelVersion": "gemini-3-pro-preview", - "responseId": "aaIdadm_HNiCvdIPwrjEkAg" + "modelVersion": "gemini-3.1-pro-preview", + "responseId": "TACzac_zK8Dtz7IPxu3IsAs" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 1.649148834s + duration: 2.561874375s diff --git a/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/multi_tool_streaming.yaml b/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/multi_tool_streaming.yaml index ee048e4faa3720d2c6bb2a60a2268e78d6db5b36..6d4a01d06cdc9010bf5fb06d700fc971372b18ca 100644 --- a/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/multi_tool_streaming.yaml +++ b/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/multi_tool_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-preview:streamGenerateContent?alt=sse method: POST response: @@ -25,22 +26,22 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"add\",\"args\": {\"b\": 3,\"a\": 2}},\"thoughtSignature\": \"ErwDCrkDAdHtim+tgyYiwTOKgDBZ5Psa/ivtDDfvnlqoGDEj97rV2/GvhSSnwedTysVM5tAb6zPepWfsdb2DQy7jdoiKr4XdeSCOUS5LrLlcfBYsfeYrCJv7eDxJMNRqh8yATI6m4HrsM8xmRv4r4T+ciSH6NVMBSRiTuq5+NbIlV1EYnedFeo6Bz76LYZhbeKg0bzOG+VsUQHmyzlevfzZGkJTcDNf16mnN6ncN3dnQEtKg3NCk2KB/zhAyXLRPxBCCYLgv70NKSPAmGhs8v4Qz3vRUCy8ikYN9XGTxPFyFepS/c1N9hWFeGOUerVCmLneXn/LaXHoD5d/w54Cz6EGetOskF9jdNnkZ9SDdAUCHmrcR69A84p/v+900Oxvt39e9KMvSTuar1K+XXuDX/ba6uQoi4ZStXZJKN/oCRmyKUKHUwsUs/1PAGIOgeizxETzC/ExIx4sVeQ7/aslTLP2Dt7842mwgP+TguCkpRmSccZGSqQ6lg+KMiDmqnfYf86Q5Vu5gjqm1o6Y9lRsgsec0ZW2l2+cCuIV1/jQxfSYI3L7lPRPkmmMCZJoXAYNLH1adCMil0Pfzl6rsRGc4\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 157,\"candidatesTokenCount\": 16,\"totalTokenCount\": 264,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 157}],\"thoughtsTokenCount\": 91},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"bKIdaeD9AuPUxs0Pk8v7uA0\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"multiply\",\"args\": {\"b\": 3,\"a\": 2}}}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 157,\"candidatesTokenCount\": 32,\"totalTokenCount\": 280,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 157}],\"thoughtsTokenCount\": 91},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"bKIdaeD9AuPUxs0Pk8v7uA0\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 157,\"candidatesTokenCount\": 32,\"totalTokenCount\": 280,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 157}],\"thoughtsTokenCount\": 91},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"bKIdaeD9AuPUxs0Pk8v7uA0\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"add\",\"args\": {\"a\": 2,\"b\": 3},\"id\": \"8hd01vsf\"},\"thoughtSignature\": \"EsINCr8NAb4+9vvezzPlSWg3IND7j7dwH2JkUoR3rZt+a6RbNB9nGqsoixREEMcXg9XqV/2dLCt2UmjxNbHLvxwsDEvXazz6l7i6AcQCIgYhkkgaVI9OP3jEIqjEMcI5pumbK72audtKnCk+OHxy8rMITAcb2miD7TAsrdznW8MwnXVFEQR2MTOFgBi5I/pZhHLS55NLZIxxm96DMqTlIYkPZhBW7ve0KYJ2647vtMwmdFgs7NlTd8Ki6Q+hN3HzmXcrGFyYYJinaIkrj6l+KuJSny2dNkmlwyudgsnxlTh5asBhZHgHfdkokdbzPUhhYb0H0x+10d2dFsGS4C/rlCHgVaUkmjtur5wb1e/dw5oN0pV4kZJYZzoA6GpVRxEiuRZfffyV4xSEmbq6peAU//BONMvvmxaq3YXjnZEq8FjPRJ/3OzYBdSWQas7jUqP7qNHeYU9rXcKvamXzjHC1raoXdnpsS/BSbZmNY0hhb3y+TAuCEqGzQ+XsmkRWHyBJIpFqxcPn+e/TdzibuLB7tnDsNvSFkQVDXpS3x7/6Q3eVNORtFJLaD45ZPqPNfyhvpMSA6RmibpcNMtDTmdlTHjWfoEMrU9RQ/+uuuO8qBCWbAksttyqH+DFqOTljhsnQH5834QchZXif5L/Nt2iMUPlqiy32ffYLNs0QwZrlIVCdzaqmarUHJY9SUucrrrqdd2Om2ufiBRvjPX5PRdPxBKB5/CotbLBVDG5gd9cz2VtZJI1IuFjUDaj2kf1FtwzV/QPEvAqKbxPbH7uhwH5Rk4iq0p6nOwi8WKkzCNhx00jyEP6x4V4oP4Z+xCIme8YMpt+E4pq3fUqmx568CTf4Be8nfWib2lk3GEKKESp+RhMaft/JLWZwKbzhRdEHGNOEZOfePDLQ3LE8jp+sPd4SAG8hkatM4/MpHuYfYPIQkOC3MHR28rik01sDsP7LThp0EhRjRemv0ByTZFmwiIJvytKVuU4MgkiXF2U0IJN+7Vu1E2fQy33LgYcwvyGY6ec/QaHYVvj6aDq/WKwLLEbg0fC/ZDfbpvQxWn97MhabO9kO2hsUKQttE0EMhhMkL8viuoUgppxET33UQ+GdQ09vBCAyiKJS3/61ReLoF1KUQy+otGwSuEfmUCc3c2FA8uUKV8v41eO9GWeKpKnq6EnMMwxkHeZPYxOrISWyQtfiK4Ex1DJ18Qi1HRAfTnXJVQ/O3lyVVmnm8XyVp6hxE30lskbPPfPITCPa0oGlJNz9COnHdG9P74TKWjXxAYU6m1e05SacApV2wu2vtsYB3QD93mFIt6ii5vOEhQTLJkoAM+x7tASsXmDvkY1/3n7kr/dIFh5+kgOCSPSRRaX2/WFDWlyTA+oDAyaHRZcuEORkfVVAuWNcRFQ8vE7Ue8RyHOWSpVIAQGa8IZ8aRyanYfHwStNOcFFiMjV4QF70cNUI4n73ZMrXk0q0H4BT4d4oZkH2tjZxR2QGAOSzHOBsQKouvbIQRlBfZEBgkzefCLV1vOk1FmcLwyEaR3uxupa74E0PpGBn1nPD1aa8cLB8PC0VmCvCZwwp5JnmgCeVb6GIseMxL7yUKWyfmHdXiHTBMtxzut6H0gv9/8TMGbS5CZDYOtf8D20tGANsLSWACkUm3WB3Y5K11FA5Hjzo4JzLM0dFLyjh+zQyKkA5NtCCYpoJG7/hwX1yJBCoRlh3P6/vwK74EtIrWSeuyOJFl28eXIUgih+HbNEdERI6Shzds23Lt6/g2qMY6CuuRHM8v+LheuJzV3Fn1SNIbVyPyJx8pX5C8pBk4gpoATa6Ie1zfNlzAxSCLdpucPus2ccukMX6tPrWCylOG9uSDCflkQ0ZDDbqdMWpbR4l/MVHlw7+55uz1s6+LJMhOB5dNQuoMdI+tivWFI83A6ptnRgodjMRdnye9dkjdJOzRfuJJW9yqeXRkyq8+jb4ed5QDh+e5m6roNfgMo5kt+Izg0SQ9BcsF2rX75RFzXfwYQiEN18gcmmfK3stctYwzI6Wufosj/VLeX0b+v8FsBBKQ5lADqxxp3UxV7u6k7YERXytKZTzPFfyOyQ+1dXHPAfbnX5BD+JkQoSdIAKATiZeOMJ8idzZ7dB3b2ebE4Sjv6UmRYgbTQw1/fm0CYyXfh6VbPfBRfTmFEpkK1qe2KHO3/NGmbK/O9pPttd+Wk1dEQu/7h4N3BZ2k++jTAUdSn2icSN72ZidXRp/XrP0+9mr/ZmOZj3wj1HtdSLZkHymmT3jaHV+1gG4zWEfeYihyLmhpQTBbvNvWGUv6IiNtiKuCcAYx08wVRSsh5EAHUw=\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 157,\"candidatesTokenCount\": 16,\"totalTokenCount\": 611,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 157}],\"thoughtsTokenCount\": 438},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"UwCzaaGdI_aEz7IPqoinwQM\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"multiply\",\"args\": {\"b\": 3,\"a\": 2},\"id\": \"k0srpqrc\"}}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 157,\"candidatesTokenCount\": 32,\"totalTokenCount\": 627,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 157}],\"thoughtsTokenCount\": 438},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"UwCzaaGdI_aEz7IPqoinwQM\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 157,\"candidatesTokenCount\": 32,\"totalTokenCount\": 627,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 157}],\"thoughtsTokenCount\": 438},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"UwCzaaGdI_aEz7IPqoinwQM\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 2.587839083s + duration: 6.852588125s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1756 + content_length: 3500 host: generativelanguage.googleapis.com body: | - {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"1","name":"add"},"thoughtSignature":"ErwDCrkDAdHtim+tgyYiwTOKgDBZ5Psa/ivtDDfvnlqoGDEj97rV2/GvhSSnwedTysVM5tAb6zPepWfsdb2DQy7jdoiKr4XdeSCOUS5LrLlcfBYsfeYrCJv7eDxJMNRqh8yATI6m4HrsM8xmRv4r4T+ciSH6NVMBSRiTuq5+NbIlV1EYnedFeo6Bz76LYZhbeKg0bzOG+VsUQHmyzlevfzZGkJTcDNf16mnN6ncN3dnQEtKg3NCk2KB/zhAyXLRPxBCCYLgv70NKSPAmGhs8v4Qz3vRUCy8ikYN9XGTxPFyFepS/c1N9hWFeGOUerVCmLneXn/LaXHoD5d/w54Cz6EGetOskF9jdNnkZ9SDdAUCHmrcR69A84p/v+900Oxvt39e9KMvSTuar1K+XXuDX/ba6uQoi4ZStXZJKN/oCRmyKUKHUwsUs/1PAGIOgeizxETzC/ExIx4sVeQ7/aslTLP2Dt7842mwgP+TguCkpRmSccZGSqQ6lg+KMiDmqnfYf86Q5Vu5gjqm1o6Y9lRsgsec0ZW2l2+cCuIV1/jQxfSYI3L7lPRPkmmMCZJoXAYNLH1adCMil0Pfzl6rsRGc4"},{"functionCall":{"args":{"a":2,"b":3},"id":"2","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"2","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. Always use both add and multiply at the same time."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} + {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"8hd01vsf","name":"add"},"thoughtSignature":"EsINCr8NAb4+9vvezzPlSWg3IND7j7dwH2JkUoR3rZt+a6RbNB9nGqsoixREEMcXg9XqV/2dLCt2UmjxNbHLvxwsDEvXazz6l7i6AcQCIgYhkkgaVI9OP3jEIqjEMcI5pumbK72audtKnCk+OHxy8rMITAcb2miD7TAsrdznW8MwnXVFEQR2MTOFgBi5I/pZhHLS55NLZIxxm96DMqTlIYkPZhBW7ve0KYJ2647vtMwmdFgs7NlTd8Ki6Q+hN3HzmXcrGFyYYJinaIkrj6l+KuJSny2dNkmlwyudgsnxlTh5asBhZHgHfdkokdbzPUhhYb0H0x+10d2dFsGS4C/rlCHgVaUkmjtur5wb1e/dw5oN0pV4kZJYZzoA6GpVRxEiuRZfffyV4xSEmbq6peAU//BONMvvmxaq3YXjnZEq8FjPRJ/3OzYBdSWQas7jUqP7qNHeYU9rXcKvamXzjHC1raoXdnpsS/BSbZmNY0hhb3y+TAuCEqGzQ+XsmkRWHyBJIpFqxcPn+e/TdzibuLB7tnDsNvSFkQVDXpS3x7/6Q3eVNORtFJLaD45ZPqPNfyhvpMSA6RmibpcNMtDTmdlTHjWfoEMrU9RQ/+uuuO8qBCWbAksttyqH+DFqOTljhsnQH5834QchZXif5L/Nt2iMUPlqiy32ffYLNs0QwZrlIVCdzaqmarUHJY9SUucrrrqdd2Om2ufiBRvjPX5PRdPxBKB5/CotbLBVDG5gd9cz2VtZJI1IuFjUDaj2kf1FtwzV/QPEvAqKbxPbH7uhwH5Rk4iq0p6nOwi8WKkzCNhx00jyEP6x4V4oP4Z+xCIme8YMpt+E4pq3fUqmx568CTf4Be8nfWib2lk3GEKKESp+RhMaft/JLWZwKbzhRdEHGNOEZOfePDLQ3LE8jp+sPd4SAG8hkatM4/MpHuYfYPIQkOC3MHR28rik01sDsP7LThp0EhRjRemv0ByTZFmwiIJvytKVuU4MgkiXF2U0IJN+7Vu1E2fQy33LgYcwvyGY6ec/QaHYVvj6aDq/WKwLLEbg0fC/ZDfbpvQxWn97MhabO9kO2hsUKQttE0EMhhMkL8viuoUgppxET33UQ+GdQ09vBCAyiKJS3/61ReLoF1KUQy+otGwSuEfmUCc3c2FA8uUKV8v41eO9GWeKpKnq6EnMMwxkHeZPYxOrISWyQtfiK4Ex1DJ18Qi1HRAfTnXJVQ/O3lyVVmnm8XyVp6hxE30lskbPPfPITCPa0oGlJNz9COnHdG9P74TKWjXxAYU6m1e05SacApV2wu2vtsYB3QD93mFIt6ii5vOEhQTLJkoAM+x7tASsXmDvkY1/3n7kr/dIFh5+kgOCSPSRRaX2/WFDWlyTA+oDAyaHRZcuEORkfVVAuWNcRFQ8vE7Ue8RyHOWSpVIAQGa8IZ8aRyanYfHwStNOcFFiMjV4QF70cNUI4n73ZMrXk0q0H4BT4d4oZkH2tjZxR2QGAOSzHOBsQKouvbIQRlBfZEBgkzefCLV1vOk1FmcLwyEaR3uxupa74E0PpGBn1nPD1aa8cLB8PC0VmCvCZwwp5JnmgCeVb6GIseMxL7yUKWyfmHdXiHTBMtxzut6H0gv9/8TMGbS5CZDYOtf8D20tGANsLSWACkUm3WB3Y5K11FA5Hjzo4JzLM0dFLyjh+zQyKkA5NtCCYpoJG7/hwX1yJBCoRlh3P6/vwK74EtIrWSeuyOJFl28eXIUgih+HbNEdERI6Shzds23Lt6/g2qMY6CuuRHM8v+LheuJzV3Fn1SNIbVyPyJx8pX5C8pBk4gpoATa6Ie1zfNlzAxSCLdpucPus2ccukMX6tPrWCylOG9uSDCflkQ0ZDDbqdMWpbR4l/MVHlw7+55uz1s6+LJMhOB5dNQuoMdI+tivWFI83A6ptnRgodjMRdnye9dkjdJOzRfuJJW9yqeXRkyq8+jb4ed5QDh+e5m6roNfgMo5kt+Izg0SQ9BcsF2rX75RFzXfwYQiEN18gcmmfK3stctYwzI6Wufosj/VLeX0b+v8FsBBKQ5lADqxxp3UxV7u6k7YERXytKZTzPFfyOyQ+1dXHPAfbnX5BD+JkQoSdIAKATiZeOMJ8idzZ7dB3b2ebE4Sjv6UmRYgbTQw1/fm0CYyXfh6VbPfBRfTmFEpkK1qe2KHO3/NGmbK/O9pPttd+Wk1dEQu/7h4N3BZ2k++jTAUdSn2icSN72ZidXRp/XrP0+9mr/ZmOZj3wj1HtdSLZkHymmT3jaHV+1gG4zWEfeYihyLmhpQTBbvNvWGUv6IiNtiKuCcAYx08wVRSsh5EAHUw="},{"functionCall":{"args":{"a":2,"b":3},"id":"k0srpqrc","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"8hd01vsf","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"k0srpqrc","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. Always use both add and multiply at the same time."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} form: alt: - sse @@ -48,7 +49,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-preview:streamGenerateContent?alt=sse method: POST response: @@ -56,10 +58,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"The addition of \"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 211,\"candidatesTokenCount\": 4,\"totalTokenCount\": 215,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 211}]},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"baIdafSbGseSxN8P7IGBoAw\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"2 and 3 is 5, and the multiplication of 2 and \"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 211,\"candidatesTokenCount\": 20,\"totalTokenCount\": 231,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 211}]},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"baIdafSbGseSxN8P7IGBoAw\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"3 is 6.\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 211,\"candidatesTokenCount\": 25,\"totalTokenCount\": 236,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 211}]},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"baIdafSbGseSxN8P7IGBoAw\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 300,\"candidatesTokenCount\": 25,\"totalTokenCount\": 325,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 300}]},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"baIdafSbGseSxN8P7IGBoAw\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"The sum of 2 and 3 is 5, and their product is 6\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 211,\"candidatesTokenCount\": 18,\"totalTokenCount\": 249,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 211}],\"thoughtsTokenCount\": 20},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"VgCzafjWBa_Qz7IP1KnJoQk\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \".\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 211,\"candidatesTokenCount\": 19,\"totalTokenCount\": 250,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 211}],\"thoughtsTokenCount\": 20},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"VgCzafjWBa_Qz7IP1KnJoQk\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\",\"thoughtSignature\": \"EpEBCo4BAb4+9vueD6qXh+z6U+4AqU940Oj5Cdxb85BS4kZ2qdo/Y9VJGyog8DcshmXFSqqX9uP+fAbN5sHoRxt9Fb1OB26Rys1ta8uqCdGB2BgNVOHLczMzhIE4Zi9wjbuxNVjxrzzHK7OPxNjPDgJO/r/pJrsyNJXbEJD7XzoRKzHC/H0Ds3EXfMNoZrUmHSf7hw==\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 646,\"candidatesTokenCount\": 19,\"totalTokenCount\": 685,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 646}],\"thoughtsTokenCount\": 20},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"VgCzafjWBa_Qz7IP1KnJoQk\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 1.385585417s + duration: 2.517556875s diff --git a/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/simple.yaml b/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/simple.yaml index f689e7f44b34c062925e23e06d089d11c4b15e6f..f175eefeafa1eba15634fded0352c8fe81c146fa 100644 --- a/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/simple.yaml +++ b/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/simple.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-preview:generateContent method: POST response: @@ -30,8 +31,8 @@ interactions: "content": { "parts": [ { - "text": "You can say **\"Oi\"** or **\"Olá\"**.", - "thoughtSignature": "Eu0GCuoGAdHtim/zutMjuEtbqFE0m3XHTgdm//ZDW7T5jsfXf8yWoYnJdjR3t52kdvNti1XtYOu1jAkcFlOJFxXFUtkO4rqxHjYAYNZuT6ONqFVaEmdfuYQYc6qk5qMRc24mbbUGM12zKY+JI1HMUV+Wa5YOtHNz96VFcRdI0DrZ7s8uSIrVV7CuV9+FkPRxfWq+tZ4gdqP5802+dBSwciDRAFLFCKCy8ZrpJIzcqmfGQPsbqiVBb3b8qtrlC2sSOHyHQklq+F9Jgkuka25MI2FSBah3IHaSYvtAz4YIXMbEoLVaRINy4+aPKjJvzwKAzva3EzNliJnb8N+fA2O/YdPDFqx2Mt+bb+2hl5buM6Xt7RO6RJ1fL1sSyVClETJGghUtIQd5mBON6Ts7Kpg468/wzU94Y/BMUSISITeZpipEG6BCM/cn7lhLK9DeWzGYRr5sYbUOMCBQhpbAVpzL0g9U4ySEhgTpR/+uVVYlPut77WYA/L9icnoBVf3+FovhSAKzx0C76p6Bp5SGR1abD5vb/2HeOTVaSWrJa9/tIYgiZNzZ777m9ymHUW1XCjjTPGGC97HaGA1jcwcryQ5FtG3IzaJjIIYpgKH6Fi3/yQlMS6xjFvb1ADoM3qz790L5HNUcX+9qfMpw91/aMDOGBTdaldH8poQkRLEB0kZwZ2yPdT2Y4RVaZCTn7MMtcGyp9gx7kuEiB3OfW2Sb6m3yC4n8fdGOfMoNUYeQsjavRpfQ+KzH+Fv9/QyTbMZKcVjfa1/dqJ8uRq9Oq/V6w7arhWLz5iJrtWMmDjwrwbNaOPCeUfBCINspvS+Q2qq5qu84lyd/3m7Bae/Uoz+VN2AlDwllUlMrd3cQ4e6Sp6Ibi+e7TPOF4xaOiCmPuLaqPEErZeNfzvAXQ6/ft8BGPOX835DQngZC70xgZnJqNSajVUl+i5P+hCxK58zFBPLswSCRaQHWd76hC3/Tv0CgsiuyNqfkpcLbT+C8E4TIkrbMsWEk3PZ4WAn/2+r/W3R+ox9pLYge+cx6/lz4oM4WKwCKHfipXmISKxqaTsVJaNJb/PIOdfEt+eVgxBzUill5exqksKQBn4wDDpy+TEQ1E5S1i+80XWumQBVlrDHIdYh3FROkK1n/P2GBS70sy9uScTKS8YJT2kfNcpuXQpnfHaoOpQ==" + "text": "**Oi** (pronounced like \"oy\") is the most common way to say hi in Portuguese! \n\nYou can also use **Olá**, which means \"Hello\".", + "thoughtSignature": "Eo0HCooHAb4+9vvmzjTCCR5H7kYVqqoZGutxZML9q6zHxLv+SpV8G645af8pq1n7c7C8jK25Uh+lJKnhUi/Qqhsrh0dY/SDZuCFE0QmL8mWX8tApxdDzq5xfP/P7VVqUuBfmwrm5zfTSGC5H/YTfVda9WaAWeMgkWYXoT/dAKoXnFXTfVt7SbYKuZoeZA7WQu5JDb013tCocrKxgl+NDnD2Ur2eTBYS1jpHD7NS3ILeh3fCGbr4J69J93Z9VdtDeUR4Rx7wL38Wehc22tlNUfBaNVYdnuWCQo5Q3u44BF1D7B1zeAd0pDvk68JntEGMK8gHhEKB0HHOtGbrKf71Wvy4rHZMwP4Bx8GglsfgHemgKMUZKdwPjP3FfuIrDC7SnaTNCFKHGDhE9vVK+3S7n3uL6bBzJv64TxkOIbin7AkPOsgouQ5xmkcufF+6+/4c3yDO6ATZLlvtbb643ZQwn7m8RRiAlZbq/gel9AxPCwgQJAYwdv8SGrDkbYfw/WQb3ZAb53Gidrz4EJyCZWnwHgFNQ/JyM8a6y098XQ6HLCvA48mI9Q+NTCldVa0hI9QSXC/uoLT2woVvWPH/rcbq9vCKh/UBT+qbZ92hDK8xXejNAlHkp4W/rQnoFivgiEz+FGinAhQRpTZJowag82GQ9vfWSjQG0CKsb7gJ495YM70CNPSolmOwCFJHbxFx13PddviH0Ooh+43r4XuPOmq7oGopm5baIjSTyE7uw/iRqIx7L3MLHeh62qSufybpGX2BXsmp52VJexvm6/Cl8VfGMW0JgqXnvBKQWvqzS0cWaRLoVmu5Khg+NtaszEgGHhBbQAIrETMf0CJgpNjwUMpjgTfv/98/31kpFoO14gfEiWE3clFS/GQhCG2dj7VEiOs5d5HJUKmDZS9QEnWkQpJbupa0LEjwVKy23AQlPrqqbTf4Vr+ehSK3Js4Zqa5EOUgQdLIWDu3T3dIPfpWiaEzTp9cVJAdI9rP+Tw1grScEZCoWhmD5Md+528fRzUQqYTVDX+sCPVbgX+QsgPAb3OeJrE5uGdqZnzRtDAi48lTHSRjyoZtKjnz8IErwFXptrE/FTHW11JfNkeafx4i/d/MiZ7gqdusL7fy9Yhhj7dkTeXuK5vK289vA5L0ft2YhKiA6I3YM+c5YrR/IGTIEZcdPfqgNF1N5J3rXwWkep3NcCNqygEt0d7pTcGoDAgSGsoRJN" } ], "role": "model" @@ -42,22 +43,22 @@ interactions: ], "usageMetadata": { "promptTokenCount": 11, - "candidatesTokenCount": 14, - "totalTokenCount": 243, + "candidatesTokenCount": 34, + "totalTokenCount": 267, "promptTokensDetails": [ { "modality": "TEXT", "tokenCount": 11 } ], - "thoughtsTokenCount": 218 + "thoughtsTokenCount": 222 }, - "modelVersion": "gemini-3-pro-preview", - "responseId": "WKIdaZPHHfXzxs0Pn66hoAk" + "modelVersion": "gemini-3.1-pro-preview", + "responseId": "MgCzabnPN-fmz7IPgpGGgQI" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 3.97765625s + duration: 5.869259458s diff --git a/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/simple_streaming.yaml b/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/simple_streaming.yaml index dd97e00299d4d8b41114e80ad16837f0ff84c30d..3309fab4d0e430a0becd5fb7c5913f0d8eb2c05c 100644 --- a/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/simple_streaming.yaml +++ b/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/simple_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-preview:streamGenerateContent?alt=sse method: POST response: @@ -25,10 +26,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"You can say **\\\"Oi\\\"** or **\\\"Olá\\\"**.\\n\\n* **Oi** is more informal (like \\\"Hi\\\").\\n* **Olá** is slightly more formal (like \\\"Hello\\\").\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 11,\"candidatesTokenCount\": 43,\"totalTokenCount\": 361,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 11}],\"thoughtsTokenCount\": 307},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"XKIdabjbOtH3xN8P5NmBkQk\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\",\"thoughtSignature\": \"ErkKCrYKAdHtim/DFrUx3uJvLE4jfIqzN3zSWBVxI1G7XuJBmEeNZJO64cM2d2681b4nCpBG1uTmz4sp1T2cNjZNYYav3OngCEWzmvzUbZz5WAYbuZPWdjZ9rn6v9xRynSfQ+kXScHJzG0XUTQzc+2OyG1haLUL62AEGBbFg04lbjPAOoUpTpDHk8BI9cW0dhbeDsdr7UFVvN8vpIA83xPQW/yuky2/J4pl70dIkFEhfJjaU2V/Ie7yRSup66ZDH5KdU+Dl5JQ43I8lPcqqoLXcDfNxUUzg/WuMzQ3PqvnbBpl9ScKNHJlEhg7909xrKrBtjX82r7vNgIaNL+k+DnWF3VowUaAS5g4g48gWfVcYECQCZXABr8UyDqC7eFn/z41eFbRI3DsiEQFozW2bdwQnkj4uZBZDyDWWN6bWgUZ9H5nyO4ah8B15UjMiy+rSrvciGdSfcF2uFUZ+IMh/bsWQrWHIudXyktiAv+/45864l8wmmSmmP/hvK6sC6C0c1xDVVCrX0EJYuTxhqR+s+p4XGXkUqn/FUp/MmImN+UJnM8zYuSKTQw1mCtODBGw3OEVvwXtWT50gG7tfz84S4VwCTlN2SjyvpniNpHDp/2qbrsXmpzywbnWsvRDiqcSj1NcHWeTgIf5zzcL6NyiSIjThhbl621mXJFXg1o2WBPXNE5JCAJ1dVAxpVoAz2FqMPGK4JEmgMDGzK0uHIHkZwHT+afM+H8ruurXQ9qCb7PNO0Js0kL2kbC/38Qoq3q2O0A320bTzeTwCpw7eJhSw5UPsxj1HBUgIiKmUgeC8lcsdqenVsF+WqxkUkpWWdDhIby0ejqZq7Yfn9I4C58AZwMKPsVt+2iHmTTv4VtZ13PFW/v2Khz04Eo5rkw/NZZ4FQUw4y+/9W4hoos5YDXpXKWugm6EfpRSr7KYw3nkVwJP/bIk+9Ex0xWau6cT9l7fwdvYEfDGJOKwH/AJzPNLAcOXhejG4s1FxSOoCesuLKsrQToFb2IWrM5eYL46hMDObTg60sHuFEMIrQu6CY2IYJ+eFtjydoKAMaPyF5evILUN8P6j6wURLakoEdIDq20UIIj6AFjLurOgauZNqHLiqmvlDr4rJubHhbGGYav43Rlpxql2rowEgsu+MSLGIan5VG+WNhAn2Z3ClFW8hqB7B/tTRAJAbgwM+MivX4wn2bua6erXVO8dihpWIVpjjNDhmUcweTHdb7h6M3Q80Gy9Yi+UPUJXWpoMq9TD/Hj4/wnDHKFChyTfGBohzQQa1onlGzg7kx2zHTBEj/9j06Po+OPpWHNpARP7RUEQKmMPkSfJLdsquumxM9w7uNypJ+KsADTfGT300tL3R6NMbQiPleQ8zREvXgq90tEhXP9kWOQJoXkeAtI4+9CuBlDUR8CxrQoz/ADVDYj46NLmGFObrDra7hCFpHgqSfi26ucScFKLFqnCYMaCj2/TbVLiXMnMPHvToiXzuKHPGn/FG/fYFagci8SraaYAUQjQGWenIlKf1zN6MlDJyZBr4QIw+Es0DdQOC7opu3Cdekila7XGENkJlr3tDXu30mjSJ29gPlM10aXwFIwapKpVe7mGMJBzyb64z8W+2ZOLOvBPQykWC55q+6NjLokqnZTh+2edxteBMfKC8IZV5OQgU9x573llLo6+ylCdgDCsZ68doHznPrrExj3zlw3yqvcBBLpVw+wiGRuAR6ZB4AEGMYCucbmJo82RnLQT4xK37zk2teE6sUoIPKEJa0cePMfaouAaRagmUJ+ylNPFFLT0N+B74=\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 11,\"candidatesTokenCount\": 43,\"totalTokenCount\": 361,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 11}],\"thoughtsTokenCount\": 307},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"XKIdabjbOtH3xN8P5NmBkQk\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\\\"Hi\\\" in Portuguese is **\\\"Oi\\\"** (pronounced like\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 11,\"candidatesTokenCount\": 14,\"totalTokenCount\": 231,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 11}],\"thoughtsTokenCount\": 206},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"NgCzaZz6I6nUz7IPhsKmmQw\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" \\\"oy\\\"). \\n\\nYou can also use **\\\"Olá\\\"** (pronounced oh-LAH), which means \\\"Hello\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 11,\"candidatesTokenCount\": 38,\"totalTokenCount\": 255,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 11}],\"thoughtsTokenCount\": 206},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"NgCzaZz6I6nUz7IPhsKmmQw\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\\\".\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 11,\"candidatesTokenCount\": 39,\"totalTokenCount\": 256,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 11}],\"thoughtsTokenCount\": 206},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"NgCzaZz6I6nUz7IPhsKmmQw\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\",\"thoughtSignature\": \"EpQHCpEHAb4+9vu/mjAC0d6LmaWJMcsNetDWpCWn9kOmImPTrAdAzQaRyodRopDz0rrLvokPvs5P2nJ/EYqDyau+LOVRjpUCSgriT/l0f9hPsQ5s+JgbZDYebVkfL1RwSIfYIio1pBlhTm5nraQZzRy4sQFiIO5qC9788htktcILqRC2tQhsuMHAVEvqX4BPBW/TRIFUOoc7O7NnOrFVmZ8wf2iwOJqtBQN5nat06mYhZCBNKWZbeJ11EfOiH7wZSyZvx12gU67LlP9Qj/RC8WJBRzcfSo5bdSZDysVcsSOn++QCzD5lUT5H8iNRyZ/oxwHeXfRwSoIBVHRlm5W1umcxbjD2j3xOh78eoboEB03K9xZgQTOOirwmYGqVW09PHGTUG3qyiSwMz9l5NHrw53lJW4ATzPbB6jtcyP3DkoxtSL/Q2l9yxkenhC3nC2VToauYT3nETvZQi0kZD3iTuqPdAVdzKvKN8vNypGgXGbclFNGOnBuhTLlz28KIS8kvdBT6Y/4QjSap6uU5k/THDtywYqtRt9IG5EINdI7hY+fsgWEubZV+U5jFAYncxgOpdsryQ+RYw3NGoS1eQpHySf7KLbzdHPeJaTTSaidB4Fv6rQec74yXfFCK6WTSnpBqi52ZN7oRFanG0dA2p6Wik6etlpH88jaP4r47cDqIdIqW3zM+JK631vkmMZ2kcfde7kO8hFbqUYLHFk80h2A56zjK8lNaGcEEVl1iStfLcG+9gFyH31whSUVE0kvIVeWHL067M8NB2apwrdASkUzqQXmy23OKxWRNnO47EwARmTKRJtbY4lnaWU0+l4sst+j2SX9cJSp+T61DtssnUdepgzS1tWKFr+IsP2cq73qxN843EAUfJW7OdzHNSwW2FdGBH4sEsk7pACvzlJllnn2SKhm5d7R9lM5zZfVSbFifFxNOL/+mPZRrFe0EwywjYa3ThUxinVa6uImIe1x39O0BI+j4GfZwKpsk05TrxxnvSaCyGwx5rrkm5LGKZAck4WdKB4K2X8J+N8DC2yJzo+OaKAuHTq3IYrge4BlVQkX9LZIj6quAtBy5pw80XumgpiYDoCCeqNs5qJGLCYI5jJHCT46zbFXCpj5bbuOFXi80V1NiKNbchQTZD+L8oIg+VgVY5+OeuXZ4/C7+q/pEfDDDqdLoqS1CGhjNq4Rdy6cVZE/vT/JvkTlKTrd2a2h/q5BIoE3NGY9qYA==\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 11,\"candidatesTokenCount\": 39,\"totalTokenCount\": 256,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 11}],\"thoughtsTokenCount\": 206},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"NgCzaZz6I6nUz7IPhsKmmQw\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 4.484338042s + duration: 3.642081208s diff --git a/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/tool.yaml b/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/tool.yaml index 714bb2d986c842771f18e343c9db2776b2c32559..2d283e72a2051d5eea100625890dd3285132c918 100644 --- a/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/tool.yaml +++ b/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/tool.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-preview:generateContent method: POST response: @@ -34,9 +35,10 @@ interactions: "name": "weather", "args": { "location": "Florence, Italy" - } + }, + "id": "1wzw08fx" }, - "thoughtSignature": "EvwCCvkCAdHtim+PQmLlXBFlyn5zkH9Ulj6upBtzURUlM9dI26vPsj3LG2Q4KeqoH5XyWdqCkF+ruALELNIQ27gg7Xp6EkWYYMBus01fmwUubUKhjIu0zV/3qpAfK44Zsg9QXONIVDKMwPJxDHd4XUIehDG0y1JICa9Om9hSdrcLcelx9wRMb79NsdBWO3JRwxAfaVlmtfnCdTRBfuQ1Vzs//ZxCQr9RHWnL9Z+ZXllJNvusWfUVEsyY288zIkOb4EJElnK7vto2gBY7vwlFsXg4JBjeBu9WLBu0Y3pQSZ35ktLDpO9W07OSDE57Id68JBtLxqb6XzxINYUdWTh2908VC6dnpEWSKN76uRq6G/5DVqUq5TGosYSvGsqRMLmEISxjy0g3j/foXQWeFMlLAG7Xn9sp0FHZraQ1AhlboTBW43uAJmJWmOLcti4JM/EQ0b1gc4heejJXRSjc6XOfvkczVBA4psJv4hgOXZvtoD5VwRD0WkOB5zMoo1MyqWI=" + "thoughtSignature": "EsEDCr4DAb4+9vtz3Lzm1KWmbKIe3x782+ag2WCNmnSLpPZrRIxWHAZV7clKnfj/XCOx3/6hxfzPpeu8fM/k9PMVeCS+qF0rnhNdWxzGshYizYQ1ByccUYKPb92D5ETNs/1zE7HhARHHIlj4y5R+Rci/UOWvfP/Fd64/XhmIrn8SpuZb1tnRMc4o2O+4sxlcVvOIdr3gY5gOK8Y3bB2JpopWAXQX2+CixuAilzLnO5b05TTyaTIUxOEPmvp+AjYFyvVe32jDOsQMFrvFkaWvr6Ii6sKUGmUQ61hYe2j6XhrPT9tVGSDx47Krp9itMZ7jMT+LaCyClUYp7VXeXGVrKwN5/AcOt+4bR74ovt0DZRNIyRF3pZ2xUz7eJnecJYTX/pfrt7I2atVFEg+mgcXxZKeSbsi5XKbCzms0w6TsVG9GNNkqjQmTw0zIpWO5+fIKxhuJx6bGtuZVQTJx5JIa73qKhvhvOz2EMiw4kvuyZSrWd/Z78UB4Kw3C9GFuBpjbBRZMkw0Z18ho+QKNVoLMA962yx/6iHIlR0p0Kbrk58OPmit1NjY/rnb/6HU907ytDP+n4T/FkxIaL6GJWqdGbQSnKdU=" } ], "role": "model" @@ -49,38 +51,39 @@ interactions: "usageMetadata": { "promptTokenCount": 65, "candidatesTokenCount": 16, - "totalTokenCount": 148, + "totalTokenCount": 183, "promptTokensDetails": [ { "modality": "TEXT", "tokenCount": 65 } ], - "thoughtsTokenCount": 67 + "thoughtsTokenCount": 102 }, - "modelVersion": "gemini-3-pro-preview", - "responseId": "X6IdacDzD7jZvdIP6qu5mQk" + "modelVersion": "gemini-3.1-pro-preview", + "responseId": "OQCzaZLeNYDVz7IPhPDJ0A0" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 2.275361292s + duration: 3.102164459s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1257 + content_length: 1363 host: generativelanguage.googleapis.com body: | - {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"EvwCCvkCAdHtim+PQmLlXBFlyn5zkH9Ulj6upBtzURUlM9dI26vPsj3LG2Q4KeqoH5XyWdqCkF+ruALELNIQ27gg7Xp6EkWYYMBus01fmwUubUKhjIu0zV/3qpAfK44Zsg9QXONIVDKMwPJxDHd4XUIehDG0y1JICa9Om9hSdrcLcelx9wRMb79NsdBWO3JRwxAfaVlmtfnCdTRBfuQ1Vzs//ZxCQr9RHWnL9Z+ZXllJNvusWfUVEsyY288zIkOb4EJElnK7vto2gBY7vwlFsXg4JBjeBu9WLBu0Y3pQSZ35ktLDpO9W07OSDE57Id68JBtLxqb6XzxINYUdWTh2908VC6dnpEWSKN76uRq6G/5DVqUq5TGosYSvGsqRMLmEISxjy0g3j/foXQWeFMlLAG7Xn9sp0FHZraQ1AhlboTBW43uAJmJWmOLcti4JM/EQ0b1gc4heejJXRSjc6XOfvkczVBA4psJv4hgOXZvtoD5VwRD0WkOB5zMoo1MyqWI="}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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"}}]}]} + {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1wzw08fx","name":"weather"},"thoughtSignature":"EsEDCr4DAb4+9vtz3Lzm1KWmbKIe3x782+ag2WCNmnSLpPZrRIxWHAZV7clKnfj/XCOx3/6hxfzPpeu8fM/k9PMVeCS+qF0rnhNdWxzGshYizYQ1ByccUYKPb92D5ETNs/1zE7HhARHHIlj4y5R+Rci/UOWvfP/Fd64/XhmIrn8SpuZb1tnRMc4o2O+4sxlcVvOIdr3gY5gOK8Y3bB2JpopWAXQX2+CixuAilzLnO5b05TTyaTIUxOEPmvp+AjYFyvVe32jDOsQMFrvFkaWvr6Ii6sKUGmUQ61hYe2j6XhrPT9tVGSDx47Krp9itMZ7jMT+LaCyClUYp7VXeXGVrKwN5/AcOt+4bR74ovt0DZRNIyRF3pZ2xUz7eJnecJYTX/pfrt7I2atVFEg+mgcXxZKeSbsi5XKbCzms0w6TsVG9GNNkqjQmTw0zIpWO5+fIKxhuJx6bGtuZVQTJx5JIa73qKhvhvOz2EMiw4kvuyZSrWd/Z78UB4Kw3C9GFuBpjbBRZMkw0Z18ho+QKNVoLMA962yx/6iHIlR0p0Kbrk58OPmit1NjY/rnb/6HU907ytDP+n4T/FkxIaL6GJWqdGbQSnKdU="}],"role":"model"},{"parts":[{"functionResponse":{"id":"1wzw08fx","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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"}}]}]} headers: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-preview:generateContent method: POST response: @@ -96,7 +99,8 @@ interactions: "content": { "parts": [ { - "text": "The weather in Florence, Italy is currently 40°C." + "text": "The current weather in Florence, Italy is 40°C.", + "thoughtSignature": "EsgCCsUCAb4+9vsw57zIJ+1f6+yJxsdAuUmJmBIhZuwPsNzHagQ73QMSeyg8+82Bfo3d4tSWIFHRPlr/x2BlvYF6JYA6VHi8cNqyu9vxgOfV5iDm709vf4mLFGCyg56MnPr6UJ3/7g9AFYHSEP7omoyB5UzXUDlunXkWhHrSlEK+2CRu/aWWFva8IHVpHbSkGbwX9MTwVyaKLZxMqvcHiewN2vge7dQFsdtR7ohJrpcxMEfxM66He3GZRv02Qpkh0u5Ij01g4nVGe3v+yJ8VHEy1KmKg5pMApgd2VL3yXt3P8l08F3+haOVTorBJG0lmKdfHWFD1ddOwcCRLqQt55u4AtmDbCurjT4odZtc4QKcczEFk1xQGZZY1050r36+siKsOvtTT4gxDH9jvZJ+LLf1ffRmea6/it0iTRqbWARdNXgfurEsmr3xg7A==" } ], "role": "model" @@ -106,22 +110,23 @@ interactions: } ], "usageMetadata": { - "promptTokenCount": 160, - "candidatesTokenCount": 14, - "totalTokenCount": 174, + "promptTokenCount": 197, + "candidatesTokenCount": 13, + "totalTokenCount": 281, "promptTokensDetails": [ { "modality": "TEXT", - "tokenCount": 160 + "tokenCount": 197 } - ] + ], + "thoughtsTokenCount": 71 }, - "modelVersion": "gemini-3-pro-preview", - "responseId": "YKIdafKQMoC4vdIPquKD2Ak" + "modelVersion": "gemini-3.1-pro-preview", + "responseId": "PACzae-_H-zPz7IPwpX86AI" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 1.575822583s + duration: 2.607119541s diff --git a/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/tool_streaming.yaml b/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/tool_streaming.yaml index d792124c2e0d2389ede02769114fcc7e13c7fef1..e92ee6c935edd25fc7193ff6bdd77692c9e1208f 100644 --- a/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/tool_streaming.yaml +++ b/providertests/testdata/TestGoogleCommon/gemini-3-pro-preview/tool_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-preview:streamGenerateContent?alt=sse method: POST response: @@ -25,22 +26,22 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"weather\",\"args\": {\"location\": \"Florence, Italy\"}},\"thoughtSignature\": \"EpMECpAEAdHtim8rere5R73M3xFnVzAQ/SWKTJ6rbVa0wbXbF2KEW5iJtgQdfCxBJVRFzwaosCLNPuCRPFlCgwWM6UeGWtT+u6J+7uR4caEUrLLceIrVqOGnsis0sPowTQCatpjN0XMopVvu+o1eNXQUVl0EQmv5aGURtVQG8IRg4LhKFBXa/ZgNe7ODIMdTEYw/XDt/CaOpWsc1AJmbpj4sB0uSdk7d2BfKZUc8dbl8vduiq0LTLW0vWa5TUlgyAMLQqtjKU63YQsm4LHTizrlVNIOc7n0WBxdJkvmUzCoBtKhDkAsc2YQbjlq1PiLbQsL8I1gd6zXe0AZyXq/4ZviOsmE0pzeMgYmjqLE3fuvsQctWIrDzZoNZzydYD/PAXC12GH6W0SJd9Cqo7oia9f+sSHejvWog3ztheMh0Ut60PYSCSkytq6R26Utt9RLp4xZ1gwSjOVY4dX8eEnAYu03Q/OVsVbmRM6po5los4V+ir07w7fvi5X5LoKrO7vNx+SdQDaty0UzWmw8DxET82S/nPgXOQg6nj2VHUJyGICBhwAJjMMOanLPvcS53gNfkkW0znGXjCuyTGBuhN+ngAE/SZKr6kNP1Eq2cGMECe5YyPktrcnskV8ey6Q+OLa0fvVqWhCyqYP11D173JRgqnTvKLCkO6GXM3R2kcOP/nCDqalYfpWLUpeuyRnGaggM2My6NrR84\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 65,\"candidatesTokenCount\": 16,\"totalTokenCount\": 176,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 65}],\"thoughtsTokenCount\": 95},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"Y6IdafqZF-3Zxs0PsZuluAk\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 65,\"candidatesTokenCount\": 16,\"totalTokenCount\": 176,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 65}],\"thoughtsTokenCount\": 95},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"Y6IdafqZF-3Zxs0PsZuluAk\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"weather\",\"args\": {\"location\": \"Florence, Italy\"},\"id\": \"89nz05jy\"},\"thoughtSignature\": \"EqcECqQEAb4+9vvKtw3zAyNExHKmG2Of7hrIubjtkhvACUhm5FP+RwKuFg+kEH1/e8rjdRWUPmrq3PsPjXDaHyxK2nhCb+77GeZJ9oSgw0OjytDAqq4PEouW1k6uAhQRC0DJGxdEmxL0UGzoXHm5gXdNqMaL7ulgxudloi0YK/wAZGG50TZTwxPZt6hJMFmops6VHpKLTQoBq5EAvgtl4m//r+utqyrJ2VMRoNAbmyRoE8EIs8W8S8V4Zl3EAN3kmbIoeeTTO50lbQCALesYLt0iomEhGhAfMo1HK8cByvmB+oUt9IInUV5TlIUfoYw3taRax2ZzRuJUFsTNxPNzjvZr+Bk0YbWhGKt28vXXfQtlJmb8zwd2D5SSfIQiQEgnOLL+v0YkCFxXCdPQrtsaBykl8fWyvH8jSTckkg5+fTxz3hF7oZYNF7cmbceK8JLTcAliiFlcuLjpd55JBH7TvmlwDbGZ+d5Qv7lhQfdps1yUm02G8QIGyesjyALx0m4FN73+gAYc+NbiAqXDQ+23xkVjKIQD35QaYMN5VkfI9JBlnjrT9oMtFneJATc04NA7bSox3TACuLTLLeyDNIDJtz9Kadw8II0Qumn83+b6XUPG8YFm4E0PZ+wXwxijxFdy5F6/QzUczOKNCmV98C834x6zHRhP0Wj/0jGtaV2SCw7g5qw4zdDwrBcOUO3V3CFhcr6XTWJN+i6zbOljHagBPwODlnuLinvAr9U=\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 65,\"candidatesTokenCount\": 16,\"totalTokenCount\": 192,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 65}],\"thoughtsTokenCount\": 111},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"PwCzadquEZ3Vz7IPkKeEoQ4\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 65,\"candidatesTokenCount\": 16,\"totalTokenCount\": 192,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 65}],\"thoughtsTokenCount\": 111},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"PwCzadquEZ3Vz7IPkKeEoQ4\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 2.580842917s + duration: 2.815833667s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1457 + content_length: 1499 host: generativelanguage.googleapis.com body: | - {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"EpMECpAEAdHtim8rere5R73M3xFnVzAQ/SWKTJ6rbVa0wbXbF2KEW5iJtgQdfCxBJVRFzwaosCLNPuCRPFlCgwWM6UeGWtT+u6J+7uR4caEUrLLceIrVqOGnsis0sPowTQCatpjN0XMopVvu+o1eNXQUVl0EQmv5aGURtVQG8IRg4LhKFBXa/ZgNe7ODIMdTEYw/XDt/CaOpWsc1AJmbpj4sB0uSdk7d2BfKZUc8dbl8vduiq0LTLW0vWa5TUlgyAMLQqtjKU63YQsm4LHTizrlVNIOc7n0WBxdJkvmUzCoBtKhDkAsc2YQbjlq1PiLbQsL8I1gd6zXe0AZyXq/4ZviOsmE0pzeMgYmjqLE3fuvsQctWIrDzZoNZzydYD/PAXC12GH6W0SJd9Cqo7oia9f+sSHejvWog3ztheMh0Ut60PYSCSkytq6R26Utt9RLp4xZ1gwSjOVY4dX8eEnAYu03Q/OVsVbmRM6po5los4V+ir07w7fvi5X5LoKrO7vNx+SdQDaty0UzWmw8DxET82S/nPgXOQg6nj2VHUJyGICBhwAJjMMOanLPvcS53gNfkkW0znGXjCuyTGBuhN+ngAE/SZKr6kNP1Eq2cGMECe5YyPktrcnskV8ey6Q+OLa0fvVqWhCyqYP11D173JRgqnTvKLCkO6GXM3R2kcOP/nCDqalYfpWLUpeuyRnGaggM2My6NrR84"}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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"}}]}]} + {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"89nz05jy","name":"weather"},"thoughtSignature":"EqcECqQEAb4+9vvKtw3zAyNExHKmG2Of7hrIubjtkhvACUhm5FP+RwKuFg+kEH1/e8rjdRWUPmrq3PsPjXDaHyxK2nhCb+77GeZJ9oSgw0OjytDAqq4PEouW1k6uAhQRC0DJGxdEmxL0UGzoXHm5gXdNqMaL7ulgxudloi0YK/wAZGG50TZTwxPZt6hJMFmops6VHpKLTQoBq5EAvgtl4m//r+utqyrJ2VMRoNAbmyRoE8EIs8W8S8V4Zl3EAN3kmbIoeeTTO50lbQCALesYLt0iomEhGhAfMo1HK8cByvmB+oUt9IInUV5TlIUfoYw3taRax2ZzRuJUFsTNxPNzjvZr+Bk0YbWhGKt28vXXfQtlJmb8zwd2D5SSfIQiQEgnOLL+v0YkCFxXCdPQrtsaBykl8fWyvH8jSTckkg5+fTxz3hF7oZYNF7cmbceK8JLTcAliiFlcuLjpd55JBH7TvmlwDbGZ+d5Qv7lhQfdps1yUm02G8QIGyesjyALx0m4FN73+gAYc+NbiAqXDQ+23xkVjKIQD35QaYMN5VkfI9JBlnjrT9oMtFneJATc04NA7bSox3TACuLTLLeyDNIDJtz9Kadw8II0Qumn83+b6XUPG8YFm4E0PZ+wXwxijxFdy5F6/QzUczOKNCmV98C834x6zHRhP0Wj/0jGtaV2SCw7g5qw4zdDwrBcOUO3V3CFhcr6XTWJN+i6zbOljHagBPwODlnuLinvAr9U="}],"role":"model"},{"parts":[{"functionResponse":{"id":"89nz05jy","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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 @@ -48,7 +49,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-preview:streamGenerateContent?alt=sse method: POST response: @@ -56,10 +58,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"The\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 95,\"candidatesTokenCount\": 1,\"totalTokenCount\": 96,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 95}]},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"ZaIdaeuyDKuP28oPu5_O2Q4\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" weather in Florence, Italy is currently 40 degrees Celsius.\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 95,\"candidatesTokenCount\": 14,\"totalTokenCount\": 109,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 95}]},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"ZaIdaeuyDKuP28oPu5_O2Q4\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 188,\"candidatesTokenCount\": 14,\"totalTokenCount\": 202,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 188}]},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"ZaIdaeuyDKuP28oPu5_O2Q4\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"The current weather in Florence, Italy\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 95,\"candidatesTokenCount\": 7,\"totalTokenCount\": 185,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 95}],\"thoughtsTokenCount\": 83},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"QQCzabeLNvjrz7IP_pjy-AE\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" is 40°C (104°F). Stay hydrated, it's quite hot!\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 95,\"candidatesTokenCount\": 29,\"totalTokenCount\": 207,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 95}],\"thoughtsTokenCount\": 83},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"QQCzabeLNvjrz7IP_pjy-AE\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\",\"thoughtSignature\": \"Eq8DCqwDAb4+9vsoVB3o+5OR8kFLlYCw3or574sjcB7g+ICwvnEfutLKzYi9UN4nja0zo8Zp7kJvpObHwmCAzn7Q7xHrDaXyvtI+o9iynSZElTi+lWx3y4wTIr58yeVFmfqWPo3zpYGZ5sblFC15JcSIRmdXKFBZljCcQnQ3zL/RqmpuOSbawwHUQ9CBkWnRgkRVYpGowU223oF+28stOc2ABeX89fJda3qxGahe0KeKYBj+3BZ6Y7aEjLVzWJHiz9gb3o5D16y/4PBF0Z5Yec4nGisnzQlZZlNbHpumPTDctkhSD156m80vzwTay3Xce3JNrkTvhyYNfJAn13/LBW3mcVA73zsGY9Ruy4Fg6zZgpboKS8Zg8+9XSSOK2H1bcDnmFOqKq+fjOcZkGD4AQPCoyBq5A8R1tDk2UAZ5tu5uRcnJoNOhbPMbKDE7J2SB8ELULCfyvbW2OBGKr6XddvfZ7K4IzHKAvlZ6OIhQwNfgbCShoMbt7HewQ3U0Ks/mqyoOwOOzV1lGdNw6QnSIQTjLGLc1Si4e1BBKQ/oFi8sxV6uep2Y2UZhRFlXYd3T2KU8=\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 206,\"candidatesTokenCount\": 29,\"totalTokenCount\": 318,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 206}],\"thoughtsTokenCount\": 83},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"QQCzabeLNvjrz7IP_pjy-AE\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 1.789773542s + duration: 2.659666959s diff --git a/providertests/testdata/TestGoogleCommon/vertex-claude-3-7-sonnet/simple.yaml b/providertests/testdata/TestGoogleCommon/vertex-claude-3-7-sonnet/simple.yaml index dc1cf23ec047560f088c52ea05070e15dd80ff77..2b3edff3388bbd5ec4499e902b4b0994bf0791bd 100644 --- a/providertests/testdata/TestGoogleCommon/vertex-claude-3-7-sonnet/simple.yaml +++ b/providertests/testdata/TestGoogleCommon/vertex-claude-3-7-sonnet/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://us-east5-aiplatform.googleapis.com/v1/projects/fantasy-playground-472418/locations/us-east5/publishers/anthropic/models/claude-3-7-sonnet@20250219:rawPredict method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_011D8f9pw4KabWttPrkbaAL6","type":"message","role":"assistant","content":[{"type":"text","text":"Olá! Como posso ajudar você hoje?"}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":16}}' + body: '{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_011eLZnjY8pFUmGNwLPxrGHH","type":"message","role":"assistant","content":[{"type":"text","text":"Olá! Como posso ajudar você hoje?"}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":16}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.980568375s + duration: 1.815831833s diff --git a/providertests/testdata/TestGoogleCommon/vertex-claude-3-7-sonnet/simple_streaming.yaml b/providertests/testdata/TestGoogleCommon/vertex-claude-3-7-sonnet/simple_streaming.yaml index 870d04c894a6a25b27e9c10d305eefa2e6f20413..be9be232d9f8543124e6afc4207528b3eab8e35d 100644 --- a/providertests/testdata/TestGoogleCommon/vertex-claude-3-7-sonnet/simple_streaming.yaml +++ b/providertests/testdata/TestGoogleCommon/vertex-claude-3-7-sonnet/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://us-east5-aiplatform.googleapis.com/v1/projects/fantasy-playground-472418/locations/us-east5/publishers/anthropic/models/claude-3-7-sonnet@20250219:streamRawPredict method: POST response: @@ -26,38 +26,41 @@ interactions: uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_013va9SBUhdmyiMNdWQdAJXr","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":5}} } + data: {"type":"message_start","message":{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_01LcEncTtD79dxfjPVCHda3Q","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":5}} } event: ping data: {"type": "ping"} event: content_block_start - data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + 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":"Olá! Como"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"Olá! Como"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" pos"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" pos"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"so aju"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"so aju"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"dar você hoje?"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"dar você"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" hoje?"} } event: content_block_stop - data: {"type":"content_block_stop","index":0 } + data: {"type":"content_block_stop","index":0} event: message_delta - data: {"type":"message_delta","delta":{"stop_reason":"end_turn","stop_sequence":null},"usage":{"output_tokens":16} } + data: {"type":"message_delta","delta":{"stop_reason":"end_turn","stop_sequence":null},"usage":{"output_tokens":16} } event: message_stop - data: {"type":"message_stop" } + data: {"type":"message_stop" } headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 1.261146292s + duration: 1.532301458s diff --git a/providertests/testdata/TestGoogleCommon/vertex-claude-3-7-sonnet/tool.yaml b/providertests/testdata/TestGoogleCommon/vertex-claude-3-7-sonnet/tool.yaml index dc98cb0abfd1122cb2cabef5e3fec1b8f3626dd7..6f5cf6d851bb42f5ceb8ffd5a105a8683a2fe02f 100644 --- a/providertests/testdata/TestGoogleCommon/vertex-claude-3-7-sonnet/tool.yaml +++ b/providertests/testdata/TestGoogleCommon/vertex-claude-3-7-sonnet/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://us-east5-aiplatform.googleapis.com/v1/projects/fantasy-playground-472418/locations/us-east5/publishers/anthropic/models/claude-3-7-sonnet@20250219:rawPredict method: POST response: @@ -24,28 +24,28 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_018rHJHvE1H6hfLm167nmkRj","type":"message","role":"assistant","content":[{"type":"text","text":"I''ll check the current weather in Florence, Italy for you."},{"type":"tool_use","id":"toolu_vrtx_01EKDu37P36gfuCEwCpy6fer","name":"weather","input":{"location":"Florence,Italy"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":67}}' + body: '{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_01L7SUBiWzE3rGECmhLHSZtU","type":"message","role":"assistant","content":[{"type":"text","text":"I''ll get the current weather information for Florence, Italy for you."},{"type":"tool_use","id":"toolu_vrtx_01PKrjavVyDh3fufyVCkCJ49","name":"weather","input":{"location":"Florence,Italy"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":68}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.085536084s + duration: 2.1893515s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 881 + content_length: 892 host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"text":"I''ll check the current weather in Florence, Italy for you.","type":"text"},{"id":"toolu_vrtx_01EKDu37P36gfuCEwCpy6fer","input":{"location":"Florence,Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_vrtx_01EKDu37P36gfuCEwCpy6fer","content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"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"}],"anthropic_version":"vertex-2023-10-16"}' + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"text":"I''ll get the current weather information for Florence, Italy for you.","type":"text"},{"id":"toolu_vrtx_01PKrjavVyDh3fufyVCkCJ49","input":{"location":"Florence,Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_vrtx_01PKrjavVyDh3fufyVCkCJ49","content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"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"}],"anthropic_version":"vertex-2023-10-16"}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://us-east5-aiplatform.googleapis.com/v1/projects/fantasy-playground-472418/locations/us-east5/publishers/anthropic/models/claude-3-7-sonnet@20250219:rawPredict method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_014QWCD9SGFBuL4dWvcDrX48","type":"message","role":"assistant","content":[{"type":"text","text":"The current temperature in Florence, Italy is 40°C (104°F), which is very hot. Make sure to stay hydrated and try to avoid prolonged exposure to the sun if you''re there or planning to visit soon."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":475,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":52}}' + body: '{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_01FsGwyqeLHKapS8XjDajNhG","type":"message","role":"assistant","content":[{"type":"text","text":"The current weather in Florence, Italy is quite hot at 40°C (104°F). This is extremely warm weather, typical of a summer heatwave in this region. If you''re in Florence or planning to visit soon, I''d recommend staying hydrated, seeking shade when possible, and considering indoor activities during the hottest parts of the day."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":476,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":77}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.480864125s + duration: 2.060712292s diff --git a/providertests/testdata/TestGoogleCommon/vertex-claude-3-7-sonnet/tool_streaming.yaml b/providertests/testdata/TestGoogleCommon/vertex-claude-3-7-sonnet/tool_streaming.yaml index f74bc76b6500b2c678901d3c03d48c89b9386d5b..91854626ec82d3c90ab0583c4826458230143d09 100644 --- a/providertests/testdata/TestGoogleCommon/vertex-claude-3-7-sonnet/tool_streaming.yaml +++ b/providertests/testdata/TestGoogleCommon/vertex-claude-3-7-sonnet/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://us-east5-aiplatform.googleapis.com/v1/projects/fantasy-playground-472418/locations/us-east5/publishers/anthropic/models/claude-3-7-sonnet@20250219:streamRawPredict method: POST response: @@ -26,83 +26,86 @@ interactions: uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_01BskFKCoRmtNwwLEZceS2hN","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":2}} } + data: {"type":"message_start","message":{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_015NhGGaKxyd2YQNDWYkNqXk","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":5}} } event: ping data: {"type": "ping"} event: content_block_start - data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + 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":"I'll"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"I'll help you check"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" get the"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" the weather"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" weather"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" in"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" information for Florence, Italy"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" Florence, Italy. Let"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" for you."} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" me get"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" that information for you right"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" away."} } event: content_block_stop - data: {"type":"content_block_stop","index":0} + 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_vrtx_01Ko1dsGPQQd4y3nsTPLMQcM","name":"weather","input":{}}} - - event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":""} } + data: {"type":"content_block_start","index":1,"content_block":{"type":"tool_use","id":"toolu_vrtx_01JhPy9eXqgjLWmUpoCiEkCs","name":"weather","input":{}} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"{\"lo"} } + 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":"cation\""} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"{\"lo"} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":": \"Floren"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"cation"} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"ce,Italy"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"\": \"Floren"} } event: content_block_delta - data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"\"}"} } + data: {"type":"content_block_delta","index":1,"delta":{"type":"input_json_delta","partial_json":"ce,Italy\"}"} } event: content_block_stop - data: {"type":"content_block_stop","index":1 } + data: {"type":"content_block_stop","index":1 } event: message_delta - data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"output_tokens":67} } + data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"output_tokens":76} } event: message_stop - data: {"type":"message_stop" } + data: {"type":"message_stop"} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 752.193583ms + duration: 802.422875ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 898 + content_length: 936 host: "" - body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"text":"I''ll get the weather information for Florence, Italy for you.","type":"text"},{"id":"toolu_vrtx_01Ko1dsGPQQd4y3nsTPLMQcM","input":{"location":"Florence,Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_vrtx_01Ko1dsGPQQd4y3nsTPLMQcM","content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"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,"anthropic_version":"vertex-2023-10-16"}' + body: '{"max_tokens":4000,"messages":[{"content":[{"text":"What''s the weather in Florence,Italy?","type":"text"}],"role":"user"},{"content":[{"text":"I''ll help you check the weather in Florence, Italy. Let me get that information for you right away.","type":"text"},{"id":"toolu_vrtx_01JhPy9eXqgjLWmUpoCiEkCs","input":{"location":"Florence,Italy"},"name":"weather","type":"tool_use"}],"role":"assistant"},{"content":[{"tool_use_id":"toolu_vrtx_01JhPy9eXqgjLWmUpoCiEkCs","content":[{"text":"40 C","type":"text"}],"type":"tool_result"}],"role":"user"}],"system":[{"text":"You are a helpful assistant","type":"text"}],"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,"anthropic_version":"vertex-2023-10-16"}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://us-east5-aiplatform.googleapis.com/v1/projects/fantasy-playground-472418/locations/us-east5/publishers/anthropic/models/claude-3-7-sonnet@20250219:streamRawPredict method: POST response: @@ -113,68 +116,92 @@ interactions: uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_01Lnb15G6n5yup7eiSG1MJP3","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":475,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":2}} } + data: {"type":"message_start","message":{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_01YH49AWdpXFqCfoLB7iWx4w","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":484,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":2}} } event: ping data: {"type": "ping"} event: content_block_start - data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + 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":"Currently"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":","} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" the weather"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" in Florence, Italy is"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" 40 "} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"degrees Celsius ("} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"104 degrees Fahren"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"heit). That"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"It"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"'s very hot"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"'s currently 40 "} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"!"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"degrees Celsius in Florence"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" If"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":", Italy."} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" you're in"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" That"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" Florence or"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"'s quite"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" planning to visit soon"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" hot"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":", make"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"! Make"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" sure to stay hydrate"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" sure to stay"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"d and try"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" hydrated and try"}} + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" to avoi"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" to avoid being"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"d being"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" outside during the peak"}} + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" outdoors during the hot"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" heat of the day if"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"test parts"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" possible."} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" of the day."} } event: content_block_stop - data: {"type":"content_block_stop","index":0 } + data: {"type":"content_block_stop","index":0 } event: message_delta - data: {"type":"message_delta","delta":{"stop_reason":"end_turn","stop_sequence":null},"usage":{"output_tokens":45} } + data: {"type":"message_delta","delta":{"stop_reason":"end_turn","stop_sequence":null},"usage":{"output_tokens":65}} event: message_stop - data: {"type":"message_stop" } + data: {"type":"message_stop" } headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 1.308048041s + duration: 2.12027925s diff --git a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/multi_tool.yaml b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/multi_tool.yaml index 2391bc40edab503b1c97358f56860f61bb2a8289..46966288b6bd3006ba273dcda07b331c2c6f35a2 100644 --- a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/multi_tool.yaml +++ b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/multi_tool.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-flash:generateContent method: POST response: @@ -34,11 +35,11 @@ interactions: "functionCall": { "name": "add", "args": { - "a": 2, - "b": 3 + "b": 3, + "a": 2 } }, - "thoughtSignature": "CtQBAePx/16Zez8Umc39OZNkaQcoaJ1i+yLTUes4eYNcobNd2vH2Jza1Q9tqpUP3e9MCA7Az0IRM9hVbj63fFwx8AT9u4FhaQRdazvEkYMqe+jGLiO6yex245G4qobHLIydnzgPJA6OMCVsuxxjHM1QhmT31E5Qg/ZVeh6Fc6ZI3S+q3TC1+tNxGr2EBlWfWyfHIOtr2qsGfZSSVOaB9Wj1jY/alOSKrSFC0PiCGhvmMwnawJWlzYkshIfAssUetPp+bDW5grOJoKWATcF3kTFShItAs6Xc=" + "thoughtSignature": "CpICAY89a1+Gm+gqy5KEfxpOLwsLfsZBhMovtwfzDW0gEBgOw+bpm9YTJExW/7mXnG4xCDgpd8nOmWA92HX3KWO9umiAKQc6u+TQRe7xqOvAyCdNFjxBVUbzVh8pRroWFnwr3ceqt4+4vMSONorj6Agki5CZ0wl3XHlgxr7kEAMiVuka9Mdi2dYSBB2zfaKSZMHznl8uetDyUXnGvZj4GWPHsayBrFUqYeDko8GyzlqfpN2ZB3SjqobwjWw6L3QpABB613LYDHy52QaSbX3AFyr0YEE38lujZXqDtUmEyRs9v3I7fJ6jsTDUH9tmQ7vdvpp/pNzsfE/qnEP8PF0cGnkQg04x4nOcpK1oGzzhrs6seGYDVQ==" }, { "functionCall": { @@ -52,18 +53,18 @@ interactions: ] }, "finishReason": "STOP", - "avgLogprobs": -0.58420848846435547 + "avgLogprobs": -1.3002447128295898 } ], "usageMetadata": { - "promptTokenCount": 60, + "promptTokenCount": 61, "candidatesTokenCount": 10, - "totalTokenCount": 119, + "totalTokenCount": 141, "trafficType": "ON_DEMAND", "promptTokensDetails": [ { "modality": "TEXT", - "tokenCount": 60 + "tokenCount": 61 } ], "candidatesTokensDetails": [ @@ -72,32 +73,33 @@ interactions: "tokenCount": 10 } ], - "thoughtsTokenCount": 49 + "thoughtsTokenCount": 70 }, "modelVersion": "gemini-2.5-flash", - "createTime": "2025-11-19T11:04:06.032691Z", - "responseId": "JqQdabP_AfrJptQP15PtmQI" + "createTime": "2026-03-12T18:06:01.734774Z", + "responseId": "iQCzabbsLKbEw-UP0tal0A8" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 989.592584ms + duration: 1.709144292s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1465 + content_length: 1549 host: us-east5-aiplatform.googleapis.com body: | - {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"1","name":"add"},"thoughtSignature":"CtQBAePx/16Zez8Umc39OZNkaQcoaJ1i+yLTUes4eYNcobNd2vH2Jza1Q9tqpUP3e9MCA7Az0IRM9hVbj63fFwx8AT9u4FhaQRdazvEkYMqe+jGLiO6yex245G4qobHLIydnzgPJA6OMCVsuxxjHM1QhmT31E5Qg/ZVeh6Fc6ZI3S+q3TC1+tNxGr2EBlWfWyfHIOtr2qsGfZSSVOaB9Wj1jY/alOSKrSFC0PiCGhvmMwnawJWlzYkshIfAssUetPp+bDW5grOJoKWATcF3kTFShItAs6Xc="},{"functionCall":{"args":{"a":2,"b":3},"id":"2","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"2","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} + {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"1","name":"add"},"thoughtSignature":"CpICAY89a1+Gm+gqy5KEfxpOLwsLfsZBhMovtwfzDW0gEBgOw+bpm9YTJExW/7mXnG4xCDgpd8nOmWA92HX3KWO9umiAKQc6u+TQRe7xqOvAyCdNFjxBVUbzVh8pRroWFnwr3ceqt4+4vMSONorj6Agki5CZ0wl3XHlgxr7kEAMiVuka9Mdi2dYSBB2zfaKSZMHznl8uetDyUXnGvZj4GWPHsayBrFUqYeDko8GyzlqfpN2ZB3SjqobwjWw6L3QpABB613LYDHy52QaSbX3AFyr0YEE38lujZXqDtUmEyRs9v3I7fJ6jsTDUH9tmQ7vdvpp/pNzsfE/qnEP8PF0cGnkQg04x4nOcpK1oGzzhrs6seGYDVQ=="},{"functionCall":{"args":{"a":2,"b":3},"id":"2","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"2","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} headers: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-flash:generateContent method: POST response: @@ -114,39 +116,39 @@ interactions: "role": "model", "parts": [ { - "text": "The sum of 2 and 3 is 5. The product of 2 and 3 is 6." + "text": "The sum of 2 and 3 is 5.\nThe product of 2 and 3 is 6." } ] }, "finishReason": "STOP", - "avgLogprobs": -0.038081047435601555 + "avgLogprobs": -0.099674701690673828 } ], "usageMetadata": { - "promptTokenCount": 76, - "candidatesTokenCount": 24, - "totalTokenCount": 100, + "promptTokenCount": 147, + "candidatesTokenCount": 25, + "totalTokenCount": 172, "trafficType": "ON_DEMAND", "promptTokensDetails": [ { "modality": "TEXT", - "tokenCount": 123 + "tokenCount": 147 } ], "candidatesTokensDetails": [ { "modality": "TEXT", - "tokenCount": 24 + "tokenCount": 25 } ] }, "modelVersion": "gemini-2.5-flash", - "createTime": "2025-11-19T11:04:07.021113Z", - "responseId": "J6QdafmkAeyAptQPvKrv8AI" + "createTime": "2026-03-12T18:06:03.432830Z", + "responseId": "iwCzab61GpbpotkPu6yy0QE" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 679.733ms + duration: 612.9975ms diff --git a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/multi_tool_streaming.yaml b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/multi_tool_streaming.yaml index c4251a4ef15a4b01b83aea527299f5bef61ba950..402d8b1ee0b1727cc592682a34d8632b99caa019 100644 --- a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/multi_tool_streaming.yaml +++ b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/multi_tool_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-flash:streamGenerateContent?alt=sse method: POST response: @@ -25,22 +26,22 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"functionCall\": {\"name\": \"add\",\"args\": {\"a\": 2,\"b\": 3}},\"thoughtSignature\": \"Ci8B4/H/XsVjmQllPB1vwXsit6Cy6bO83UTy/g2xrDRI+kS+lSc5zTqIPp2WuV1dFAphAePx/1778NrXCSJC9DjysS5FDbk2qa2fdkpGT8AKSg3Gb9z6oBbS7lqKRfgAiqvPKXwwxLplcnnJ3Eez3UYC+2NI+JSeeBqOhxEmH6qbFXdcQPyf7IY1BCdynZ37b4wNJApdAePx/1455hKMzvD1Dy3HayN6NX2qyXtP3OC+vwWXrjyA8J8U2TBMgsE2Rer1TmJDLu+LX2o2BX/ECsnXAIOV5CxYGbXhA0pa5PENJvWpKlKDNZhRHLDMFw4f+WZVCqUBAePx/17pAvxLAWqaxXNGe5Z1qiN/FPaqRhvnG4IAVlYbM8yniWCY1P6DLIMBQ7ocubcSFRDMaYW7Oh5/WVwBTQ9wq2Yyg2YaAjdi3h8Si8ujsXbxzSKMqHjYrhEfWmT9nxSnsyztHsPCnLL9SlnBxURfWaNJXG7r6cgf3r/tyRJ5X1ar/iH3dkjp58MubpJJaMx+H022YAPMnWmIvJ4J4vsrwoDJ\"},{\"functionCall\": {\"name\": \"multiply\",\"args\": {\"a\": 2,\"b\": 3}}}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 57,\"candidatesTokenCount\": 10,\"totalTokenCount\": 147,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 57}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 10}],\"thoughtsTokenCount\": 80},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2025-11-19T11:04:07.904252Z\",\"responseId\": \"J6QdabyYN4qb5OMPr6PXcQ\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"functionCall\": {\"name\": \"add\",\"args\": {\"b\": 3,\"a\": 2}},\"thoughtSignature\": \"Ci8Bjz1rXzqIUO4hDWx0cIAcS3Hli+/00t0xZ4R9333aTdPmmlba6GoelrnrKuw/5QpYAY89a1+iCNlnCLeZt0CFSSVel5kXqgPJj48xE+/YrJEhlVDNA03z0nIXONvDkvD+rzRU6eVqyqW/DXnkzlDMZfPtb+fkfZAbxATyw7AZKiLraxgziRvSgAp3AY89a19GL62f0CVqxq8XDq1IDLBlTjD225ayNTwB8S84TC6uBdF/KD8K9qz5o3Zcu8F4cqUuA0b8jvyuMrjS8Wyv5ZNuUgruWTbdjpuZV+JkjU74hDoom9EwIdI3A8AavPrGZiLXAdAkKQfAksXiEQOjlPiFwGYKNAGPPWtf/eKZatmuUApeWonkTgVe57SlMCNW/afNRK3Iw/inXuM2Y5IFJV0ogxj9SUEUsT0=\"},{\"functionCall\": {\"name\": \"multiply\",\"args\": {\"b\": 3,\"a\": 2}}}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 57,\"candidatesTokenCount\": 10,\"totalTokenCount\": 109,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 57}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 10}],\"thoughtsTokenCount\": 42},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2026-03-12T18:06:04.325486Z\",\"responseId\": \"jACzae7uE_mew-UP9PGpKQ\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 1.012000667s + duration: 898.923209ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1708 + content_length: 1580 host: us-east5-aiplatform.googleapis.com body: | - {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"1","name":"add"},"thoughtSignature":"Ci8B4/H/XsVjmQllPB1vwXsit6Cy6bO83UTy/g2xrDRI+kS+lSc5zTqIPp2WuV1dFAphAePx/1778NrXCSJC9DjysS5FDbk2qa2fdkpGT8AKSg3Gb9z6oBbS7lqKRfgAiqvPKXwwxLplcnnJ3Eez3UYC+2NI+JSeeBqOhxEmH6qbFXdcQPyf7IY1BCdynZ37b4wNJApdAePx/1455hKMzvD1Dy3HayN6NX2qyXtP3OC+vwWXrjyA8J8U2TBMgsE2Rer1TmJDLu+LX2o2BX/ECsnXAIOV5CxYGbXhA0pa5PENJvWpKlKDNZhRHLDMFw4f+WZVCqUBAePx/17pAvxLAWqaxXNGe5Z1qiN/FPaqRhvnG4IAVlYbM8yniWCY1P6DLIMBQ7ocubcSFRDMaYW7Oh5/WVwBTQ9wq2Yyg2YaAjdi3h8Si8ujsXbxzSKMqHjYrhEfWmT9nxSnsyztHsPCnLL9SlnBxURfWaNJXG7r6cgf3r/tyRJ5X1ar/iH3dkjp58MubpJJaMx+H022YAPMnWmIvJ4J4vsrwoDJ"},{"functionCall":{"args":{"a":2,"b":3},"id":"2","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"2","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. Always use both add and multiply at the same time."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} + {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"1","name":"add"},"thoughtSignature":"Ci8Bjz1rXzqIUO4hDWx0cIAcS3Hli+/00t0xZ4R9333aTdPmmlba6GoelrnrKuw/5QpYAY89a1+iCNlnCLeZt0CFSSVel5kXqgPJj48xE+/YrJEhlVDNA03z0nIXONvDkvD+rzRU6eVqyqW/DXnkzlDMZfPtb+fkfZAbxATyw7AZKiLraxgziRvSgAp3AY89a19GL62f0CVqxq8XDq1IDLBlTjD225ayNTwB8S84TC6uBdF/KD8K9qz5o3Zcu8F4cqUuA0b8jvyuMrjS8Wyv5ZNuUgruWTbdjpuZV+JkjU74hDoom9EwIdI3A8AavPrGZiLXAdAkKQfAksXiEQOjlPiFwGYKNAGPPWtf/eKZatmuUApeWonkTgVe57SlMCNW/afNRK3Iw/inXuM2Y5IFJV0ogxj9SUEUsT0="},{"functionCall":{"args":{"a":2,"b":3},"id":"2","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"2","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. Always use both add and multiply at the same time."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} form: alt: - sse @@ -48,7 +49,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-flash:streamGenerateContent?alt=sse method: POST response: @@ -56,10 +58,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"The sum of 2 and\"}]}}],\"usageMetadata\": {\"trafficType\": \"ON_DEMAND\"},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2025-11-19T11:04:08.930164Z\",\"responseId\": \"KKQdafTiOKnzptQPke-o4AE\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \" 3 is 5. The product of 2 and 3 is 6.\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 151,\"candidatesTokenCount\": 24,\"totalTokenCount\": 175,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 151}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 24}]},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2025-11-19T11:04:08.930164Z\",\"responseId\": \"KKQdafTiOKnzptQPke-o4AE\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"The sum of\"}]}}],\"usageMetadata\": {\"trafficType\": \"ON_DEMAND\"},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2026-03-12T18:06:05.232680Z\",\"responseId\": \"jQCzaeiZDqbEw-UP0tal0A8\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \" 2 and 3 is 5. The product of 2 and \"}]}}],\"usageMetadata\": {\"trafficType\": \"ON_DEMAND\"},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2026-03-12T18:06:05.232680Z\",\"responseId\": \"jQCzaeiZDqbEw-UP0tal0A8\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"3 is 6.\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 115,\"candidatesTokenCount\": 24,\"totalTokenCount\": 139,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 115}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 24}]},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2026-03-12T18:06:05.232680Z\",\"responseId\": \"jQCzaeiZDqbEw-UP0tal0A8\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 550.507042ms + duration: 752.957709ms diff --git a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/simple.yaml b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/simple.yaml index b3d6e85017a1c0ba10e1f8324356d90d4fd9e5d7..8a2520d308606033e768ad53ad362a00dbb65798 100644 --- a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/simple.yaml +++ b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/simple.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-flash:generateContent method: POST response: @@ -36,13 +37,13 @@ interactions: ] }, "finishReason": "STOP", - "avgLogprobs": -0.58062881231307983 + "avgLogprobs": -0.6419329047203064 } ], "usageMetadata": { "promptTokenCount": 9, "candidatesTokenCount": 2, - "totalTokenCount": 37, + "totalTokenCount": 35, "trafficType": "ON_DEMAND", "promptTokensDetails": [ { @@ -56,15 +57,15 @@ interactions: "tokenCount": 2 } ], - "thoughtsTokenCount": 26 + "thoughtsTokenCount": 24 }, "modelVersion": "gemini-2.5-flash", - "createTime": "2025-11-19T11:04:00.570529Z", - "responseId": "IKQdaaHpIuyAptQPvKrv8AI" + "createTime": "2026-03-12T18:05:55.473045Z", + "responseId": "gwCzadXvHKzFw-UPou_44AQ" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 1.624110084s + duration: 1.541615625s diff --git a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/simple_streaming.yaml b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/simple_streaming.yaml index d4b10d18ff30e406dee086d95df57b9469a2ed87..48513a9dca9e07be9d0e853c02c999a7c43686f5 100644 --- a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/simple_streaming.yaml +++ b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/simple_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-flash:streamGenerateContent?alt=sse method: POST response: @@ -25,10 +26,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"Olá!\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 9,\"candidatesTokenCount\": 2,\"totalTokenCount\": 37,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 9}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 2}],\"thoughtsTokenCount\": 26},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2025-11-19T11:04:01.771732Z\",\"responseId\": \"IaQdaZSNL_rJptQP15PtmQI\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"Olá!\"}]}}],\"usageMetadata\": {\"trafficType\": \"ON_DEMAND\"},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2026-03-12T18:05:56.457623Z\",\"responseId\": \"hACzaZf3G-Tjt8gPydPHkAI\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \" (pronounced \\\"oh-LAH\\\")\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 9,\"candidatesTokenCount\": 9,\"totalTokenCount\": 54,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 9}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 9}],\"thoughtsTokenCount\": 36},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2026-03-12T18:05:56.457623Z\",\"responseId\": \"hACzaZf3G-Tjt8gPydPHkAI\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 725.084625ms + duration: 944.514542ms diff --git a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/tool.yaml b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/tool.yaml index 961e84b47ca4a7b57e97a1f7782cf3ca77b1f128..3882020a9160c09ebb27d17b53dd2b8473b09c64 100644 --- a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/tool.yaml +++ b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/tool.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-flash:generateContent method: POST response: @@ -37,18 +38,18 @@ interactions: "location": "Florence,Italy" } }, - "thoughtSignature": "Cq4CAePx/17lfvNzeD1UgoF8F6LxiSlPe5DfakwGl5buoL2pFazz+R2IYIE4Z5S71KgiO9VbYj/6bJK5FBJm21GoJref0w1PDVF+/93xJylQhMB6ID/QCMDzRQfucel2hkwuhQscItWpTbvh5+/0NGY3Uo/bO5F4FLgrwmCRfqXl3EIkavxBOfk8Z4/H7SCd7/fYFvvTgCu+7ycBYyLYhvzYyGxTH7Ups0SWNaYueSPusvRa3FG8Y4BQKENgTWVlReJyuCHjyFHSxCtuDL8xEGaBE24ltsiN6qXw5F4uZyZndKskWLtdedDAjxOW/2bAwb5l9UZhfSmBDV4mHEz8JeMoejbUdSnBZk+hoahL6NhTLyEB6tHsnFqHC5bI4FOJmCgH6LsguTmD2Fmjf+QE5yw=" + "thoughtSignature": "CogCAY89a18llPaHtTc0RYmJYfqVzv67knJ0LLYW0uvvORLIbJ1go3t6f8qRUiA9NNmQPcujynZUv2T+UE/FdtglMNc4+tdvkjKNGp3YGstAa8NRco+/eUOWLdiYI793P8hzr2XCRmu7kPt6nQiLOauQseZ7Ldf/eYAHVZRVYmO1GcMtQYIpUI2n6w5eO1HIDdkB74FgZujPNJHICHGMt7nuI1M1t2yNkLh1v12Iht1NJEhu1JdkCGXQtrE9P1k6B2qlVG0+IL7el9ZsQKMs7Z0Cjqx8nIkjJnMGoBP8MQbP+mHxyNs6ClqGxQcy4gCtktP0/BB2Kh2ebnQA8Nu+W3bzKZxlx+G2IfoK" } ] }, "finishReason": "STOP", - "avgLogprobs": -1.5359557151794434 + "avgLogprobs": -2.0499895095825194 } ], "usageMetadata": { "promptTokenCount": 28, "candidatesTokenCount": 5, - "totalTokenCount": 95, + "totalTokenCount": 85, "trafficType": "ON_DEMAND", "promptTokensDetails": [ { @@ -62,32 +63,33 @@ interactions: "tokenCount": 5 } ], - "thoughtsTokenCount": 62 + "thoughtsTokenCount": 52 }, "modelVersion": "gemini-2.5-flash", - "createTime": "2025-11-19T11:04:02.601478Z", - "responseId": "IqQdaYbbJNmDptQP7qyZuAE" + "createTime": "2026-03-12T18:05:57.737661Z", + "responseId": "hQCzaf2CLfmew-UP9PGpKQ" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 882.023417ms + duration: 1.09585s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1152 + content_length: 1100 host: us-east5-aiplatform.googleapis.com body: | - {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence,Italy"},"id":"1","name":"weather"},"thoughtSignature":"Cq4CAePx/17lfvNzeD1UgoF8F6LxiSlPe5DfakwGl5buoL2pFazz+R2IYIE4Z5S71KgiO9VbYj/6bJK5FBJm21GoJref0w1PDVF+/93xJylQhMB6ID/QCMDzRQfucel2hkwuhQscItWpTbvh5+/0NGY3Uo/bO5F4FLgrwmCRfqXl3EIkavxBOfk8Z4/H7SCd7/fYFvvTgCu+7ycBYyLYhvzYyGxTH7Ups0SWNaYueSPusvRa3FG8Y4BQKENgTWVlReJyuCHjyFHSxCtuDL8xEGaBE24ltsiN6qXw5F4uZyZndKskWLtdedDAjxOW/2bAwb5l9UZhfSmBDV4mHEz8JeMoejbUdSnBZk+hoahL6NhTLyEB6tHsnFqHC5bI4FOJmCgH6LsguTmD2Fmjf+QE5yw="}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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"}}]}]} + {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence,Italy"},"id":"1","name":"weather"},"thoughtSignature":"CogCAY89a18llPaHtTc0RYmJYfqVzv67knJ0LLYW0uvvORLIbJ1go3t6f8qRUiA9NNmQPcujynZUv2T+UE/FdtglMNc4+tdvkjKNGp3YGstAa8NRco+/eUOWLdiYI793P8hzr2XCRmu7kPt6nQiLOauQseZ7Ldf/eYAHVZRVYmO1GcMtQYIpUI2n6w5eO1HIDdkB74FgZujPNJHICHGMt7nuI1M1t2yNkLh1v12Iht1NJEhu1JdkCGXQtrE9P1k6B2qlVG0+IL7el9ZsQKMs7Z0Cjqx8nIkjJnMGoBP8MQbP+mHxyNs6ClqGxQcy4gCtktP0/BB2Kh2ebnQA8Nu+W3bzKZxlx+G2IfoK"}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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"}}]}]} headers: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-flash:generateContent method: POST response: @@ -104,23 +106,23 @@ interactions: "role": "model", "parts": [ { - "text": "The weather in Florence, Italy is 40 C." + "text": "The weather in Florence,Italy is 40 C." } ] }, "finishReason": "STOP", - "avgLogprobs": -0.027842623492081959 + "avgLogprobs": -0.1068742573261261 } ], "usageMetadata": { - "promptTokenCount": 38, + "promptTokenCount": 90, "candidatesTokenCount": 12, - "totalTokenCount": 50, + "totalTokenCount": 102, "trafficType": "ON_DEMAND", "promptTokensDetails": [ { "modality": "TEXT", - "tokenCount": 98 + "tokenCount": 90 } ], "candidatesTokensDetails": [ @@ -131,12 +133,12 @@ interactions: ] }, "modelVersion": "gemini-2.5-flash", - "createTime": "2025-11-19T11:04:03.494403Z", - "responseId": "I6QdacOWHqrL5OMPtpzzmA8" + "createTime": "2026-03-12T18:05:58.832195Z", + "responseId": "hgCzacPlMt2Rt8gP1vXiYA" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 540.870084ms + duration: 615.291833ms diff --git a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/tool_streaming.yaml b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/tool_streaming.yaml index 4956ca65049eadef0a9f23e53b874e30e5aba654..5fb36de3d081f5364fdc0ff3cfb97af60995312d 100644 --- a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/tool_streaming.yaml +++ b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-flash/tool_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-flash:streamGenerateContent?alt=sse method: POST response: @@ -25,22 +26,22 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"functionCall\": {\"name\": \"weather\",\"args\": {\"location\": \"Florence, Italy\"}},\"thoughtSignature\": \"CiwB4/H/XgPBx7H41mQWWTneSxzTQCyc0wzScVKc5AIn3b8TgdZFbTC1d2qUdgptAePx/15mCGBnWhulJd1gjHhny9mo+yzbH7tj5jIXAk1vLBp/plv9Qndwx+68CtQ3eZQa82W27zN7rJWw8Q5FW3NDGOiyXnfKXLOGKQ1x5+iF6wqe1Ec/nGhHEwB9t7NlhMWdtibPkELCfMhomgp6AePx/1608eQCMND2Pl/a47/lzL/nrECGx9ZAjsU+/4UHzTGH6vxQRmwNDZYqhrBcSxC2VA/ocT1F3eP6wMj8xDTWBHddDiA6WimCaXKT+aGRbnIXQfjhtOadLyNcCtea/7ny7CvrmsrTjJ4BfjToI87NtfObamCGJgIKVAHj8f9e2NadgSaLliJnkuWSr5p9PHqLP9pI0Fos4xq1pTJU3X4ar6fcLqymxxXfqgFmrcIWRkDiDG0N8LDtk1hsA4kZThlWIEvrGiLYFpx+HCqTTw==\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 28,\"candidatesTokenCount\": 5,\"totalTokenCount\": 86,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 28}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 5}],\"thoughtsTokenCount\": 53},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2025-11-19T11:04:04.229621Z\",\"responseId\": \"JKQdafWBDrrIptQPxeKNkA4\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"functionCall\": {\"name\": \"weather\",\"args\": {\"location\": \"Florence,Italy\"}},\"thoughtSignature\": \"CiwBjz1rX5J0Jni1UwQkH3SeTysS4TF4kGuzSS99EDy6+inHVbJu1Xo0pYpXeQprAY89a18NHhloDuIj0yld57PAo2oNpG6rOh/35G9rcOwGsXkiTJHGjRY2kvEit3Re266ZMK2YpihBVAkZllpxOWlb/QZN7Cial15OT3HGih3VCgpPirbUHnr1W3xjYncuUEWiboS9GunS2foKegGPPWtfqxLOOBCOHYMB1vAbHSWDwTHtlQmKO8gOjjB+E7rIAvoI5c/zje1zY9TIePouZwvtbh4hW0W0RkY1X0JqcVVCsdoxAa177NpMX32OsBI4ADKGIJWKfyUxHqYVTWqRPQCUm+vMMcCBkhEpQl1e4h+elfClBEXzClYBjz1rX3o0PFc+JJWTsLa7RFOQY12RaETWEvaTPmkUSJjWK0s+pMC6adOFzZMC/3NY4wPGdqSA/P5xnES40TQMQNvL9zL7G8O1sU6LExlHc9wVoyeOcw==\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 28,\"candidatesTokenCount\": 5,\"totalTokenCount\": 84,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 28}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 5}],\"thoughtsTokenCount\": 51},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2026-03-12T18:05:59.704936Z\",\"responseId\": \"hwCzaaiDK5-Ew-UP4tT9sAY\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 945.3105ms + duration: 1.073018292s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1237 + content_length: 1236 host: us-east5-aiplatform.googleapis.com body: | - {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"CiwB4/H/XgPBx7H41mQWWTneSxzTQCyc0wzScVKc5AIn3b8TgdZFbTC1d2qUdgptAePx/15mCGBnWhulJd1gjHhny9mo+yzbH7tj5jIXAk1vLBp/plv9Qndwx+68CtQ3eZQa82W27zN7rJWw8Q5FW3NDGOiyXnfKXLOGKQ1x5+iF6wqe1Ec/nGhHEwB9t7NlhMWdtibPkELCfMhomgp6AePx/1608eQCMND2Pl/a47/lzL/nrECGx9ZAjsU+/4UHzTGH6vxQRmwNDZYqhrBcSxC2VA/ocT1F3eP6wMj8xDTWBHddDiA6WimCaXKT+aGRbnIXQfjhtOadLyNcCtea/7ny7CvrmsrTjJ4BfjToI87NtfObamCGJgIKVAHj8f9e2NadgSaLliJnkuWSr5p9PHqLP9pI0Fos4xq1pTJU3X4ar6fcLqymxxXfqgFmrcIWRkDiDG0N8LDtk1hsA4kZThlWIEvrGiLYFpx+HCqTTw=="}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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"}}]}]} + {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence,Italy"},"id":"1","name":"weather"},"thoughtSignature":"CiwBjz1rX5J0Jni1UwQkH3SeTysS4TF4kGuzSS99EDy6+inHVbJu1Xo0pYpXeQprAY89a18NHhloDuIj0yld57PAo2oNpG6rOh/35G9rcOwGsXkiTJHGjRY2kvEit3Re266ZMK2YpihBVAkZllpxOWlb/QZN7Cial15OT3HGih3VCgpPirbUHnr1W3xjYncuUEWiboS9GunS2foKegGPPWtfqxLOOBCOHYMB1vAbHSWDwTHtlQmKO8gOjjB+E7rIAvoI5c/zje1zY9TIePouZwvtbh4hW0W0RkY1X0JqcVVCsdoxAa177NpMX32OsBI4ADKGIJWKfyUxHqYVTWqRPQCUm+vMMcCBkhEpQl1e4h+elfClBEXzClYBjz1rX3o0PFc+JJWTsLa7RFOQY12RaETWEvaTPmkUSJjWK0s+pMC6adOFzZMC/3NY4wPGdqSA/P5xnES40TQMQNvL9zL7G8O1sU6LExlHc9wVoyeOcw=="}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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 @@ -48,7 +49,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-flash:streamGenerateContent?alt=sse method: POST response: @@ -56,10 +58,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"The weather in Florence, Italy\"}]}}],\"usageMetadata\": {\"trafficType\": \"ON_DEMAND\"},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2025-11-19T11:04:05.175922Z\",\"responseId\": \"JaQdabLeCoqb5OMPr6PXcQ\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \" is 40 C.\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 89,\"candidatesTokenCount\": 12,\"totalTokenCount\": 101,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 89}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 12}]},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2025-11-19T11:04:05.175922Z\",\"responseId\": \"JaQdabLeCoqb5OMPr6PXcQ\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"The\"}]}}],\"usageMetadata\": {\"trafficType\": \"ON_DEMAND\"},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2026-03-12T18:06:00.786631Z\",\"responseId\": \"iACzaceBMJzr_dQPkszy8QI\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \" weather in Florence, Italy is 40 C.\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 89,\"candidatesTokenCount\": 12,\"totalTokenCount\": 101,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 89}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 12}]},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2026-03-12T18:06:00.786631Z\",\"responseId\": \"iACzaceBMJzr_dQPkszy8QI\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 520.063542ms + duration: 567.852625ms diff --git a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/multi_tool.yaml b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/multi_tool.yaml index c05e87a09ad02c2b6c479039e98fde805973b4fe..7881deac25aa3346ce49b303853bbf59078ae9ee 100644 --- a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/multi_tool.yaml +++ b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/multi_tool.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-pro:generateContent method: POST response: @@ -34,11 +35,11 @@ interactions: "functionCall": { "name": "add", "args": { - "b": 3, - "a": 2 + "a": 2, + "b": 3 } }, - "thoughtSignature": "CukEAePx/15QJY0aW7MHjQUB+ypu3XOoG34numgtrxgqkyaR0fEZ6GidH4rlWetcv9trdN9jcp+uPvzLT6T24tPBx5XFJdZJn1ZtouXhZhcPHqTcl4a10cV5aL21bSWLls81NkGLTKqs1cAvaERIxIBcgAnw+IyilHbLMii3/axH5VzzpKkfcutk7k/1E0en0cp4HxV49f1jIGA3UrUWTEd4F9ntyCONE4gwOZSAmGJj/ZQv/O4dM2cWehyIgzGhlZ/Wg6cd9kQHU1FCgWBRSgAWmMKhq81PdeXwOBqPC25fyGjba2jRUN9+o1LalYwTK19XDy62YIaNa3XBkouKTyLisalJG7rs6Ch/5oBGWkOCgrIumkAFV1dkqiFpFEcZO++RLblx3yaTIltm0RAD2cohnwXe80RXek7V6Z07fIT9C7SLcFPyl9NIYTnWzT1AI0YLj3J7BK1BFzjRpVsuXE7tWp0uRzVdR2Up/iZYoMuFKJEDx3oqOBlEMFlKytCWU8+c9NgRKEkOlDzyf033XU0kth6YNlXab08xkxwPSVQps+pqyuIYaGvtZncB6lpnGznQ/x5x33Td6/0xgLH2A+QVNME/GVIEXIGOHvVQ09WTKRYAYLxWFY3U+ybXUh5gLaTa2bEuF588YQUL0fIka8KiMUbBvRi78QRWAEQNks/Z/zFNhmMzseiOSfAuhBZ3rlGsvSc676kIWziYC/kq710p5DQP0jTFbPV1InSnqToaXFY766vK6yjZJ8FVHlqRM+YK6g5pxpmJu05TS1V1xYCu+g2o7lQVtCZI1O0ELqnZkU8ESk2kxtw8qrU=" + "thoughtSignature": "CowCAY89a1/vAaqniXrmhElp8qu3tCETdO3UfyX6GAedsXE7vdfpKTvda4xMGK9wFBEmw0aN24fmJRBi5AmBiHSc9Vo9JMEjyusxOednzWJCXbVjmyyz2e7L8Y2XN4azmNC2YVxOIP00SBFByCBSz2Ev1cqQY1UYl+u9mtAC5PvlPx6gOTGFZdnN+0C8j9DkPpTgPqE4M/tD0NVZU7kVLk25+Bz+WvGUAhdstMDl2LZQ3NiTyeMr+QUu/e5BB8ePV/BbKIlMbQFOwKPmna4kOCaQPO31HfWGA0tJ2ZT4SyQEYj7vLrgQ4TyTfBG/NPFT7Ud37LZpSFY29312jvmR3aArX4nztAlsG6hpoAGFRg==" }, { "functionCall": { @@ -52,18 +53,18 @@ interactions: ] }, "finishReason": "STOP", - "avgLogprobs": -1.2367894172668457 + "avgLogprobs": -0.3190230131149292 } ], "usageMetadata": { - "promptTokenCount": 60, + "promptTokenCount": 61, "candidatesTokenCount": 10, - "totalTokenCount": 241, + "totalTokenCount": 140, "trafficType": "ON_DEMAND", "promptTokensDetails": [ { "modality": "TEXT", - "tokenCount": 60 + "tokenCount": 61 } ], "candidatesTokensDetails": [ @@ -72,32 +73,33 @@ interactions: "tokenCount": 10 } ], - "thoughtsTokenCount": 171 + "thoughtsTokenCount": 69 }, "modelVersion": "gemini-2.5-pro", - "createTime": "2025-11-19T11:04:37.627146Z", - "responseId": "RaQdacqjJrCI0ekP8tCGkAk" + "createTime": "2026-03-12T18:06:32.920805Z", + "responseId": "qACzaeWZOILU8eEP-5ez4QM" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 3.051268875s + duration: 1.964643417s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2005 + content_length: 1541 host: us-east5-aiplatform.googleapis.com body: | - {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"1","name":"add"},"thoughtSignature":"CukEAePx/15QJY0aW7MHjQUB+ypu3XOoG34numgtrxgqkyaR0fEZ6GidH4rlWetcv9trdN9jcp+uPvzLT6T24tPBx5XFJdZJn1ZtouXhZhcPHqTcl4a10cV5aL21bSWLls81NkGLTKqs1cAvaERIxIBcgAnw+IyilHbLMii3/axH5VzzpKkfcutk7k/1E0en0cp4HxV49f1jIGA3UrUWTEd4F9ntyCONE4gwOZSAmGJj/ZQv/O4dM2cWehyIgzGhlZ/Wg6cd9kQHU1FCgWBRSgAWmMKhq81PdeXwOBqPC25fyGjba2jRUN9+o1LalYwTK19XDy62YIaNa3XBkouKTyLisalJG7rs6Ch/5oBGWkOCgrIumkAFV1dkqiFpFEcZO++RLblx3yaTIltm0RAD2cohnwXe80RXek7V6Z07fIT9C7SLcFPyl9NIYTnWzT1AI0YLj3J7BK1BFzjRpVsuXE7tWp0uRzVdR2Up/iZYoMuFKJEDx3oqOBlEMFlKytCWU8+c9NgRKEkOlDzyf033XU0kth6YNlXab08xkxwPSVQps+pqyuIYaGvtZncB6lpnGznQ/x5x33Td6/0xgLH2A+QVNME/GVIEXIGOHvVQ09WTKRYAYLxWFY3U+ybXUh5gLaTa2bEuF588YQUL0fIka8KiMUbBvRi78QRWAEQNks/Z/zFNhmMzseiOSfAuhBZ3rlGsvSc676kIWziYC/kq710p5DQP0jTFbPV1InSnqToaXFY766vK6yjZJ8FVHlqRM+YK6g5pxpmJu05TS1V1xYCu+g2o7lQVtCZI1O0ELqnZkU8ESk2kxtw8qrU="},{"functionCall":{"args":{"a":2,"b":3},"id":"2","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"2","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} + {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"1","name":"add"},"thoughtSignature":"CowCAY89a1/vAaqniXrmhElp8qu3tCETdO3UfyX6GAedsXE7vdfpKTvda4xMGK9wFBEmw0aN24fmJRBi5AmBiHSc9Vo9JMEjyusxOednzWJCXbVjmyyz2e7L8Y2XN4azmNC2YVxOIP00SBFByCBSz2Ev1cqQY1UYl+u9mtAC5PvlPx6gOTGFZdnN+0C8j9DkPpTgPqE4M/tD0NVZU7kVLk25+Bz+WvGUAhdstMDl2LZQ3NiTyeMr+QUu/e5BB8ePV/BbKIlMbQFOwKPmna4kOCaQPO31HfWGA0tJ2ZT4SyQEYj7vLrgQ4TyTfBG/NPFT7Ud37LZpSFY29312jvmR3aArX4nztAlsG6hpoAGFRg=="},{"functionCall":{"args":{"a":2,"b":3},"id":"2","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"2","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} headers: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-pro:generateContent method: POST response: @@ -114,39 +116,41 @@ interactions: "role": "model", "parts": [ { - "text": "OK. The sum is 5 and the product is 6.\n" + "text": "The sum of 2 and 3 is 5, and the product is 6.", + "thoughtSignature": "CscBAY89a1/2yqSCpyPzXmW7CFH+/u94LfU2YYw6FljZU5ciMqeXif3lMN/IUG5eDvETLtNszUSQZp/itemcLocGi9osVT7T5kv2+kOp7saHIZrU0+nmZHZef+u4lOd+mTdbPLkkv/FGBba1wmwsDNJb2h/xm/BxDuJWvDs06A+YF0b6Djkv84oHaQOqPSiUdi2GdyofLc185pCwoPCMlTjCPgmwJ9oiXCl40vjyjvT6daatkW/RgtWutVBMNDcBkKWFih1rKoXYrw==" } ] }, "finishReason": "STOP", - "avgLogprobs": -0.17488816579182942 + "avgLogprobs": -0.33660158358122172 } ], "usageMetadata": { - "promptTokenCount": 76, - "candidatesTokenCount": 15, - "totalTokenCount": 91, + "promptTokenCount": 146, + "candidatesTokenCount": 19, + "totalTokenCount": 206, "trafficType": "ON_DEMAND", "promptTokensDetails": [ { "modality": "TEXT", - "tokenCount": 245 + "tokenCount": 146 } ], "candidatesTokensDetails": [ { "modality": "TEXT", - "tokenCount": 15 + "tokenCount": 19 } - ] + ], + "thoughtsTokenCount": 41 }, "modelVersion": "gemini-2.5-pro", - "createTime": "2025-11-19T11:04:40.692907Z", - "responseId": "SKQdaaulKqWO0ekPgvO5sQY" + "createTime": "2026-03-12T18:06:34.881582Z", + "responseId": "qgCzaa7nNZeq8eEP6tq10Q4" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 1.02390475s + duration: 1.597976042s diff --git a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/multi_tool_streaming.yaml b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/multi_tool_streaming.yaml index 0c4f0b2926a69a347370d0973cec34db1e6a2368..c4a944cfdffdc12a251c78eb596dd31966f8b92f 100644 --- a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/multi_tool_streaming.yaml +++ b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/multi_tool_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-pro:streamGenerateContent?alt=sse method: POST response: @@ -25,22 +26,22 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"functionCall\": {\"name\": \"add\",\"args\": {\"a\": 2,\"b\": 3}},\"thoughtSignature\": \"CjYB4/H/XqxbQHp2lO9C6z3WWzvVvCiyYUrbBx1L6sQ7hZMExUrufaOgtboKjNVDxYTfY4AsVGcKagHj8f9e1baijGdlfKMfiyGh7mqF3XxfqA9oBZ0mq80e35Kg/CFJiNoFvmmg5vzmSNFq+VLsp92Hw1SCypKySEiF01T0znZgyHN0XwoHeKXAgKk1zFd/Mh9qSsLSC/TPC4vMzjL0qu8Y9RwKZwHj8f9e76FXbccQAPVDxI0QWNsv8dAlgeOaMF1nWU5bouU3cBMwhHFlxz3vz6Ke7XSUiaRYCKz02ZkAd+nxIhHQCCdsl+UUxeybFhfcnmXkIt+zCNFE6SN27CGNDksDumieTr1ZuwIKmgEB4/H/XirqiC8E/xdsBnuN9R4FskbNkWDsLZEenVvz5z3xEAYNGZQpWrw11Wbh/djAiI+HLKgR7VNL7wIbCLO9Jp49wXmNYQg07zeT08rxomsPAHzQAx2TbhoYlMyQSgh/P2aV9yQyGoqaed6NWw0LcKH6RADevMvjfsSxSqb7XHDd7FsSlz+khkGU+gAPSc/rWKBIIz5HakAkCqYBAePx/14T3qNkdp51GdNccS6BIdTKyfkJyjEzghaYr/+sX9aMa2nEpZRrkFj2j6lhorejLvuTBzKDiFQzebD+cTO6ajefAsMsvlO/4+QQ6oF/DviC/T/DIV5N2sf4FbC2qdiR+rfeplH3OYy3XYVlVhjlDc/ruvla0lMhRjlSHscPCCI4mBzaMRlgfWC3rGlrat2Mvw/Vpfg8U5t0vyxsS/mu+BWgzQ==\"},{\"functionCall\": {\"name\": \"multiply\",\"args\": {\"b\": 3,\"a\": 2}}}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 57,\"candidatesTokenCount\": 10,\"totalTokenCount\": 176,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 57}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 10}],\"thoughtsTokenCount\": 109},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2025-11-19T11:04:41.912108Z\",\"responseId\": \"SaQdaezVN9aD0ekPxJfk-Qg\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"functionCall\": {\"name\": \"add\",\"args\": {\"b\": 3,\"a\": 2}},\"thoughtSignature\": \"CiQBjz1rX9vXzx2kuVvHI7K1og7PRomR1HnReMQI5SRJMSPzcAIKXgGPPWtfnWtXrgO5+AzYP5pnrCj2zZQuYQN0+s8HD4ukcOblaIEB1+ol370baALNpJqz131WB7VTe7FEKvlvrDglcKIAp9nu+AFphYHm4M1jyYxVoWtN2SmsDrBzWbgKZwGPPWtfbCiEax2Ys/D5UxclK7OD6tuXVaguLSieWuIZbMLU1yx9Q1Z611Uf6Gw/IQHGuYR/muyUGA74rs7AXi+cJ38x7djHGaQR3AOaLOotrGqyGbtbrGu6hCqf1Acp/jDPLdMhnukKdgGPPWtfw7FXMbV6/HUhP8gPUid+InjyPPe7Y6yxaPYEt13mNS8LGh85JJrF6v6LyW8QlR+EnGoQxHWJzAKo1Da46RmjiSqftdKOWWFux+S5eULdHwSSp+YsdgMcEmp1I/HeqT13UiOLtlRHj3iXGAZWshN5rjwKLwGPPWtfCFqQYyE6rXmQXNrcKMx4VdDSMTkXfdt7Cz4P6h75QRfLYlBcupiVk7GR\"},{\"functionCall\": {\"name\": \"multiply\",\"args\": {\"a\": 2,\"b\": 3}}}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 57,\"candidatesTokenCount\": 10,\"totalTokenCount\": 136,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 57}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 10}],\"thoughtsTokenCount\": 69},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2026-03-12T18:06:36.729115Z\",\"responseId\": \"rACzaZvALL_p8eEPtqjmqQc\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 2.471145375s + duration: 1.931946959s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1956 + content_length: 1704 host: us-east5-aiplatform.googleapis.com body: | - {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"1","name":"add"},"thoughtSignature":"CjYB4/H/XqxbQHp2lO9C6z3WWzvVvCiyYUrbBx1L6sQ7hZMExUrufaOgtboKjNVDxYTfY4AsVGcKagHj8f9e1baijGdlfKMfiyGh7mqF3XxfqA9oBZ0mq80e35Kg/CFJiNoFvmmg5vzmSNFq+VLsp92Hw1SCypKySEiF01T0znZgyHN0XwoHeKXAgKk1zFd/Mh9qSsLSC/TPC4vMzjL0qu8Y9RwKZwHj8f9e76FXbccQAPVDxI0QWNsv8dAlgeOaMF1nWU5bouU3cBMwhHFlxz3vz6Ke7XSUiaRYCKz02ZkAd+nxIhHQCCdsl+UUxeybFhfcnmXkIt+zCNFE6SN27CGNDksDumieTr1ZuwIKmgEB4/H/XirqiC8E/xdsBnuN9R4FskbNkWDsLZEenVvz5z3xEAYNGZQpWrw11Wbh/djAiI+HLKgR7VNL7wIbCLO9Jp49wXmNYQg07zeT08rxomsPAHzQAx2TbhoYlMyQSgh/P2aV9yQyGoqaed6NWw0LcKH6RADevMvjfsSxSqb7XHDd7FsSlz+khkGU+gAPSc/rWKBIIz5HakAkCqYBAePx/14T3qNkdp51GdNccS6BIdTKyfkJyjEzghaYr/+sX9aMa2nEpZRrkFj2j6lhorejLvuTBzKDiFQzebD+cTO6ajefAsMsvlO/4+QQ6oF/DviC/T/DIV5N2sf4FbC2qdiR+rfeplH3OYy3XYVlVhjlDc/ruvla0lMhRjlSHscPCCI4mBzaMRlgfWC3rGlrat2Mvw/Vpfg8U5t0vyxsS/mu+BWgzQ=="},{"functionCall":{"args":{"a":2,"b":3},"id":"2","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"2","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. Always use both add and multiply at the same time."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} + {"contents":[{"parts":[{"text":"Add and multiply the number 2 and 3"}],"role":"user"},{"parts":[{"functionCall":{"args":{"a":2,"b":3},"id":"1","name":"add"},"thoughtSignature":"CiQBjz1rX9vXzx2kuVvHI7K1og7PRomR1HnReMQI5SRJMSPzcAIKXgGPPWtfnWtXrgO5+AzYP5pnrCj2zZQuYQN0+s8HD4ukcOblaIEB1+ol370baALNpJqz131WB7VTe7FEKvlvrDglcKIAp9nu+AFphYHm4M1jyYxVoWtN2SmsDrBzWbgKZwGPPWtfbCiEax2Ys/D5UxclK7OD6tuXVaguLSieWuIZbMLU1yx9Q1Z611Uf6Gw/IQHGuYR/muyUGA74rs7AXi+cJ38x7djHGaQR3AOaLOotrGqyGbtbrGu6hCqf1Acp/jDPLdMhnukKdgGPPWtfw7FXMbV6/HUhP8gPUid+InjyPPe7Y6yxaPYEt13mNS8LGh85JJrF6v6LyW8QlR+EnGoQxHWJzAKo1Da46RmjiSqftdKOWWFux+S5eULdHwSSp+YsdgMcEmp1I/HeqT13UiOLtlRHj3iXGAZWshN5rjwKLwGPPWtfCFqQYyE6rXmQXNrcKMx4VdDSMTkXfdt7Cz4P6h75QRfLYlBcupiVk7GR"},{"functionCall":{"args":{"a":2,"b":3},"id":"2","name":"multiply"}}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"add","response":{"result":"5"}}},{"functionResponse":{"id":"2","name":"multiply","response":{"result":"6"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"systemInstruction":{"parts":[{"text":"You are a helpful assistant. Always use both add and multiply at the same time."}],"role":"user"},"toolConfig":{"functionCallingConfig":{"mode":"AUTO"}},"tools":[{"functionDeclarations":[{"description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}},{"description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"INTEGER"},"b":{"description":"second number","type":"INTEGER"}},"required":["a","b"],"type":"OBJECT"}}]}]} form: alt: - sse @@ -48,7 +49,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-pro:streamGenerateContent?alt=sse method: POST response: @@ -56,10 +58,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"The sum of 2 and 3 is 5, and their product is 6.\",\"thoughtSignature\": \"CiQB4/H/XgEAff7RDml+8hx/1vk6IUdWokgmFVPH856Slu3zxmUKVwHj8f9e0iELx1VVsnz2CSRw1K0XNV6ScsQx9SkmpZPl5TIhANatKRSUmuKstVbZUBc/aAi9bBMR913yy474PxR9Vf20Bt+bD+sKQ2DuCUSMQeeKNtYoiwpZAePx/172xjNlka1OXW00nDDuriJX6ldv83VQ/bby5CMLN3+/K5MpNE/tlci8CT+l7YY9YMNPycjWX9p05JezAtkTeQnWmGdDycRpY9WzRz+AsoO7N3xQEcQKlwEB4/H/Xr61E3Q0KGZahZ7tuVVGq7wHbYO4/VfTZ6DuQTW3Fpu8xPEKnmWxKNpihVxV/PzfN748f6defVwCng7ZfFkXJzRmBnx5Q1evgyF0X4v1xtLyFy/sIwbtRqFd2zNKpQuPLq1AfsMAyR0nCtpLPumK7mQrn5OztVFcpa7jiOPZslDZXn+FeIaueokQt/4d0L9OPwNL\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 73,\"candidatesTokenCount\": 19,\"totalTokenCount\": 160,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 73}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 19}],\"thoughtsTokenCount\": 68},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2025-11-19T11:04:44.373725Z\",\"responseId\": \"TKQdad3nFpeI0ekPpeWk2Ac\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"The sum of 2 and 3 is 5, and the\",\"thoughtSignature\": \"ClIBjz1rX7FIBti76JKYaWPaehdPmQEfz1CDv9kmNNhLkl56+W4Tpupdrw7UyWuM5wAf6Gmo+wGAxm5wsbv3FTG06cHJz5X15P5/tQz3qxrhnEmvCmYBjz1rXw4rMCdHAlza5TGnWWQl1uvk20CaMkfn99df9c0dmoLig1p9G84h+P5pZ9KCb86xxj8sZo/Kv7RG7TOmpczIewfQmBUedVS72YcLJX8VgSjm30Dyk/fr0ySRRMyAVCp2KZoKtgEBjz1rXyhBXqbvtNG3Hl0MKixdlnH1Ni5Z0/7h027gkxGp3XV+aY/ku+ggpdR0BFDtztNqDJ5dhnRY7SsMB+trSj/nulpdi0huGUc9xMafk3Hwh3OTpsp9Z8ZXA2Bf4A0iq/vyHOZKaiZ9ORjckTMgOeFWdDooaWfnNaK5S6sNERencuWSkIx/Zno/T8mcRv5Px1xv5v+wD9dqwIEJVJ7nq4NGnDe2BVRpLFvz7qiwCp9nvOL7Jgp6AY89a1/VJhaeJrVOWtdqq7ffD3U3IWAI6Iht6aKMoztaFGxOjso25iUU+6P6EVDtrXYF7D21SL1NYYRwk4J5ZmV8NFywreBfpdSJmXVcw+HjgcM3RittJzD34NMD6nDX7MOKCgF9hmBr/h/vXwN9qPlDMNfVgf8fI48=\"}]}}],\"usageMetadata\": {\"trafficType\": \"ON_DEMAND\"},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2026-03-12T18:06:38.666193Z\",\"responseId\": \"rgCzadHUKOXS8eEP54DhuA8\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \" product of 2 and 3 is 6.\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 73,\"candidatesTokenCount\": 25,\"totalTokenCount\": 181,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 73}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 25}],\"thoughtsTokenCount\": 83},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2026-03-12T18:06:38.666193Z\",\"responseId\": \"rgCzadHUKOXS8eEP54DhuA8\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 1.575863208s + duration: 2.147560375s diff --git a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/simple.yaml b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/simple.yaml index 82a99cb1be1befdca9cd5402ca730d032b0a797c..a8ba6bf1a2c6e42eaebcb7a0a7ee06874668407c 100644 --- a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/simple.yaml +++ b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/simple.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-pro:generateContent method: POST response: @@ -31,18 +32,18 @@ interactions: "role": "model", "parts": [ { - "text": "Of course! The most common ways to say \"hi\" in Portuguese are:\n\n* **Olá** (pronounced *oh-LAH*) - This is the direct translation of \"Hello\" and can be used in any situation, formal or informal.\n* **Oi** (pronounced *OY*) - This is more casual, like \"Hi,\" and is what you'll hear most often in Brazil.\n\nYou can also combine them with \"How are you?\":\n\n* **Oi, tudo bem?** (Hi, how are you?)" + "text": "Of course!\n\nThe most common ways to say \"hi\" in Portuguese are:\n\n* **Oi** (sounds like \"oy\") - This is the most direct equivalent of \"hi\" and is very common, especially in Brazil.\n* **Olá** (sounds like \"oh-lah\") - This is the equivalent of \"hello\" and can be used in any situation, formal or informal.\n\nYou can also use greetings based on the time of day:\n\n* **Bom dia** - Good morning\n* **Boa tarde** - Good afternoon\n* **Boa noite** - Good evening / Good night" } ] }, "finishReason": "STOP", - "avgLogprobs": -1.1641908612167626 + "avgLogprobs": -0.79850663405198319 } ], "usageMetadata": { "promptTokenCount": 9, - "candidatesTokenCount": 114, - "totalTokenCount": 1001, + "candidatesTokenCount": 130, + "totalTokenCount": 857, "trafficType": "ON_DEMAND", "promptTokensDetails": [ { @@ -53,18 +54,18 @@ interactions: "candidatesTokensDetails": [ { "modality": "TEXT", - "tokenCount": 114 + "tokenCount": 130 } ], - "thoughtsTokenCount": 878 + "thoughtsTokenCount": 718 }, "modelVersion": "gemini-2.5-pro", - "createTime": "2025-11-19T11:04:09.768454Z", - "responseId": "KaQdacbzLpTEptQP6pORgAo" + "createTime": "2026-03-12T18:06:06.323808Z", + "responseId": "jgCzaeDhE92Rt8gP1vXiYA" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 10.878821375s + duration: 8.616830125s diff --git a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/simple_streaming.yaml b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/simple_streaming.yaml index ba0ac436e65c034dc2fc263daeb3b3d5da271c49..c023ecf388bdd72329b6196881f5901a82c8cd20 100644 --- a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/simple_streaming.yaml +++ b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/simple_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-pro:streamGenerateContent?alt=sse method: POST response: @@ -25,10 +26,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"Of course! The most common ways to say \\\"hi\\\" in Portuguese are:\\n\\n* **Olá** (This is the standard \\\"Hello,\\\" and it works in any situation, formal or informal.)\\n* **Oi** (This is a more informal \\\"Hi,\\\" and it's extremely common, especially\"}]}}],\"usageMetadata\": {\"trafficType\": \"ON_DEMAND\"},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2025-11-19T11:04:21.427607Z\",\"responseId\": \"NaQdadeMGo6C0ekP1u_dqQs\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \" in Brazil.)\\n\\nYou might also hear:\\n\\n* **Bom dia** - Good morning\\n* **Boa tarde** - Good afternoon\\n* **Boa noite** - Good evening / Good night\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 9,\"candidatesTokenCount\": 106,\"totalTokenCount\": 815,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 9}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 106}],\"thoughtsTokenCount\": 700},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2025-11-19T11:04:21.427607Z\",\"responseId\": \"NaQdadeMGo6C0ekP1u_dqQs\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"Of course!\\n\\n\"}]}}],\"usageMetadata\": {\"trafficType\": \"ON_DEMAND\"},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2026-03-12T18:06:15.185613Z\",\"responseId\": \"lwCzaY2qC5zr_dQPkszy8QI\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"The most common way is:\\n\\n* **Oi** (sounds like \\\"oy\\\")\\n\\nYou can also say:\\n\\n* **Olá** (sounds like \\\"oh-lah\\\")\\n\\n`Oi` is more informal and common, like \\\"hi.\\\" `Olá` is a bit more like \\\"hello.\\\" Both are used\"}]}}],\"usageMetadata\": {\"trafficType\": \"ON_DEMAND\"},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2026-03-12T18:06:15.185613Z\",\"responseId\": \"lwCzaY2qC5zr_dQPkszy8QI\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \" all the time\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 9,\"candidatesTokenCount\": 73,\"totalTokenCount\": 860,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 9}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 73}],\"thoughtsTokenCount\": 778},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2026-03-12T18:06:15.185613Z\",\"responseId\": \"lwCzaY2qC5zr_dQPkszy8QI\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 8.8158165s + duration: 7.805056292s diff --git a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/tool.yaml b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/tool.yaml index 53a50143234a49253496292666851172a06cdf40..e86fdab2073d600279f3ee11d2bad81518caad34 100644 --- a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/tool.yaml +++ b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/tool.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-pro:generateContent method: POST response: @@ -34,21 +35,21 @@ interactions: "functionCall": { "name": "weather", "args": { - "location": "Florence,Italy" + "location": "Florence, Italy" } }, - "thoughtSignature": "Cu4EAePx/14ljyE7z5hE6T9t7Cpe3xNFuB93gWa2T9NLfeE459sJp1VDMgbMx/6eM/sTYTOGkK/KU5UiVl+Kc5sQB3S6DYZfyn0K/yJmKxcXH27PwGXE7mBs4u45F3Tb+7mQHr0E5LroPO8LXN4J/UFb6g977nMHeJFXFxuQWU+tqtRy7gHRF+5ykdRmzHCkjHiCxuMO+KlJbU7PvX76b1seSG47Y+jaa/saPxnVSV1tLpTV+N6jujTYPcsgY/0+zzyERBve0PVpbGTlD2BBGOaOCG+6C0fQjS2kqgIceGWhzwfbAbl+LvaruGqmjx8lGLcXcOlbtKOlZtPQJg8gyIHGG1JB9Ufg5XD94MZ1ie4z+WCsfqtigiKKu6ndLSsycnntb1XLEhhAh+aoSab+MJf83SWnM7hvNCwLzIt7AFyWLKEDPW2sOYBtIyvR1RSCUEZqcbEwnsLdt4vzTVDsktoSpKAybdnN9MZ58z8AXsYhhumOCOxTn4mZvMXd6UBAmcOafK3awfh8CWrEc/+l1PBzsYWMepHXxEiYk53uXfz8eUTERXe9snKacpDiZTjiljFvtxMUSFXrcUjGL9GgH+2aQ9d4tunJ6sObwLodMJlYTrLNMIbEcKehmW4vEJ56ETT+6J9CfxB2SeQmfbLMsrUCmcY3yaP5qwNx6PQc/Wwi2lrYWec70EopPuOIT9/Yo/QcPTlqhsm7QrMLfflMtmGkqTUBUFOCOovA1ZzLhz+k+QsZNBjaGs62AXlgW5Y4779WMgoTOyFWdDAld6kVOOzHjHACVEfIdMlpSnbLQytA+Ri7GwoxxFv1TXlmYSXZXQ==" + "thoughtSignature": "CogEAY89a18AxcmSDT2p07Co1JRtGBB7Agd75Vj9UZkgbukirUDDeNDjpGrNB9hCvNnkXEp6Cmi1w/XoCg9ucdiWUcB3XBygzRsHEopx6+pLGO7QPFK8N+js2l+iH2YF6xjA9nTI7CAhtMS78tEdlMykkwe4tU6e1wyEDmRLYwema/Q9oaV6ziqkbYOKPix6IjZhgkJSz0rmwMXN1S1whHKC4Qd7IhOodVIp7TaNzLAxMAij6EkusUjLsCYMpuDm2NvdjlwQWsYjiZSYRDU5KNWuc6P+RgrozZj4n3bLp9g29QzPAd2qnJW8CjMsGBDVx0bTzfy2EdMkX5P0ZZre1EvkOyMTA64hDz1o4wChM6BcMKBMgs2z5Hl/yRN4eAjrC4NO/MM57kS1Lg836onZVfE5Te8vn9W0nv4M+o0NnF79xeeIXVdg9csNnfrhxlFFU300fgAk+EEQ4keVn/r4EdSsaUqdV/WUMr3GS2sbQZvP6PNJuOoc0lmLrJVpy6BEdlrofphYcFlOObgkUeYw6x9/u6zRke7PQbOiU/w2D41e0AIhrnItM3gvrQnFmjjJhj2J8aV+/MD7Vxc0OY+2DcJMhty3VUGgTvhUkTJ5gu65/waRYZcQI53hejjnmAjrmKPJzfbypYf8LLZGmNHbP88nXoEPxdL28k/2AmXq/hg7bIisyk2Q+POUhQ==" } ] }, "finishReason": "STOP", - "avgLogprobs": -0.74591360092163084 + "avgLogprobs": -0.87936477661132817 } ], "usageMetadata": { "promptTokenCount": 28, "candidatesTokenCount": 5, - "totalTokenCount": 180, + "totalTokenCount": 150, "trafficType": "ON_DEMAND", "promptTokensDetails": [ { @@ -62,32 +63,33 @@ interactions: "tokenCount": 5 } ], - "thoughtsTokenCount": 147 + "thoughtsTokenCount": 117 }, "modelVersion": "gemini-2.5-pro", - "createTime": "2025-11-19T11:04:30.222222Z", - "responseId": "PqQdaY7IDaOA0ekP6aHL2Ac" + "createTime": "2026-03-12T18:06:24.514092Z", + "responseId": "oACzaaywH57V8eEPsJbfiAE" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 2.247443792s + duration: 2.924632208s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1580 + content_length: 1445 host: us-east5-aiplatform.googleapis.com body: | - {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence,Italy"},"id":"1","name":"weather"},"thoughtSignature":"Cu4EAePx/14ljyE7z5hE6T9t7Cpe3xNFuB93gWa2T9NLfeE459sJp1VDMgbMx/6eM/sTYTOGkK/KU5UiVl+Kc5sQB3S6DYZfyn0K/yJmKxcXH27PwGXE7mBs4u45F3Tb+7mQHr0E5LroPO8LXN4J/UFb6g977nMHeJFXFxuQWU+tqtRy7gHRF+5ykdRmzHCkjHiCxuMO+KlJbU7PvX76b1seSG47Y+jaa/saPxnVSV1tLpTV+N6jujTYPcsgY/0+zzyERBve0PVpbGTlD2BBGOaOCG+6C0fQjS2kqgIceGWhzwfbAbl+LvaruGqmjx8lGLcXcOlbtKOlZtPQJg8gyIHGG1JB9Ufg5XD94MZ1ie4z+WCsfqtigiKKu6ndLSsycnntb1XLEhhAh+aoSab+MJf83SWnM7hvNCwLzIt7AFyWLKEDPW2sOYBtIyvR1RSCUEZqcbEwnsLdt4vzTVDsktoSpKAybdnN9MZ58z8AXsYhhumOCOxTn4mZvMXd6UBAmcOafK3awfh8CWrEc/+l1PBzsYWMepHXxEiYk53uXfz8eUTERXe9snKacpDiZTjiljFvtxMUSFXrcUjGL9GgH+2aQ9d4tunJ6sObwLodMJlYTrLNMIbEcKehmW4vEJ56ETT+6J9CfxB2SeQmfbLMsrUCmcY3yaP5qwNx6PQc/Wwi2lrYWec70EopPuOIT9/Yo/QcPTlqhsm7QrMLfflMtmGkqTUBUFOCOovA1ZzLhz+k+QsZNBjaGs62AXlgW5Y4779WMgoTOyFWdDAld6kVOOzHjHACVEfIdMlpSnbLQytA+Ri7GwoxxFv1TXlmYSXZXQ=="}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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"}}]}]} + {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"CogEAY89a18AxcmSDT2p07Co1JRtGBB7Agd75Vj9UZkgbukirUDDeNDjpGrNB9hCvNnkXEp6Cmi1w/XoCg9ucdiWUcB3XBygzRsHEopx6+pLGO7QPFK8N+js2l+iH2YF6xjA9nTI7CAhtMS78tEdlMykkwe4tU6e1wyEDmRLYwema/Q9oaV6ziqkbYOKPix6IjZhgkJSz0rmwMXN1S1whHKC4Qd7IhOodVIp7TaNzLAxMAij6EkusUjLsCYMpuDm2NvdjlwQWsYjiZSYRDU5KNWuc6P+RgrozZj4n3bLp9g29QzPAd2qnJW8CjMsGBDVx0bTzfy2EdMkX5P0ZZre1EvkOyMTA64hDz1o4wChM6BcMKBMgs2z5Hl/yRN4eAjrC4NO/MM57kS1Lg836onZVfE5Te8vn9W0nv4M+o0NnF79xeeIXVdg9csNnfrhxlFFU300fgAk+EEQ4keVn/r4EdSsaUqdV/WUMr3GS2sbQZvP6PNJuOoc0lmLrJVpy6BEdlrofphYcFlOObgkUeYw6x9/u6zRke7PQbOiU/w2D41e0AIhrnItM3gvrQnFmjjJhj2J8aV+/MD7Vxc0OY+2DcJMhty3VUGgTvhUkTJ5gu65/waRYZcQI53hejjnmAjrmKPJzfbypYf8LLZGmNHbP88nXoEPxdL28k/2AmXq/hg7bIisyk2Q+POUhQ=="}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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"}}]}]} headers: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-pro:generateContent method: POST response: @@ -109,18 +111,18 @@ interactions: ] }, "finishReason": "STOP", - "avgLogprobs": -0.023431075470788137 + "avgLogprobs": -0.14247493232999528 } ], "usageMetadata": { - "promptTokenCount": 38, + "promptTokenCount": 155, "candidatesTokenCount": 14, - "totalTokenCount": 52, + "totalTokenCount": 169, "trafficType": "ON_DEMAND", "promptTokensDetails": [ { "modality": "TEXT", - "tokenCount": 183 + "tokenCount": 155 } ], "candidatesTokensDetails": [ @@ -131,12 +133,12 @@ interactions: ] }, "modelVersion": "gemini-2.5-pro", - "createTime": "2025-11-19T11:04:32.497194Z", - "responseId": "QKQdaaqsHomA0ekP5JSJ8Qc" + "createTime": "2026-03-12T18:06:26.827845Z", + "responseId": "ogCzacXDMoO18eEP8uOXaQ" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 1.2568785s + duration: 1.36857775s diff --git a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/tool_streaming.yaml b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/tool_streaming.yaml index 49f489eb9f5781c37552fbe2c5298013c6589100..1e70c30385690226cc1ec53407e334facc111b58 100644 --- a/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/tool_streaming.yaml +++ b/providertests/testdata/TestGoogleCommon/vertex-gemini-2-5-pro/tool_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-pro:streamGenerateContent?alt=sse method: POST response: @@ -25,22 +26,22 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"functionCall\": {\"name\": \"weather\",\"args\": {\"location\": \"Florence,Italy\"}},\"thoughtSignature\": \"CiIB4/H/XuGEqIkixg/vsdLNO/XLdMRIZWrA4iDLpx8bp1ChCmUB4/H/Xoj6y7XCdrBliXjSjdFbjGTIHnTA9YwnccwE2dLTxHzOJ92RLCPgzO88hXs1xOzNXD8+/BC4WYDIxscHvvQevTaThD9T9w2ZR+yCElxo+PwMgDiuPFGHkB+XEtVivx1chApjAePx/14yHfyzssNIJ5Kw9cHYnXQl1hlVSRM0suf+tqfI+vE5FCVa7mhohZRmW36oYdjWkeKEIKALgBBr5C5Q+MZujY9w1b+jW+Dah66ucWpODv1LOlet4qMPuRwr/zAZ/iRSCqoBAePx/16kFfr13j/F3N5RIbe2LZPv1Jz49ZsxKJelffFaZMMCxlLIgAi+cSEQejQj3J7nehUSvpi6e6Q29QOdXZn4s089OPoZ4wvnRU4BIU5RC1OUZGrAmPv8kocrjkGr/pXTEjQ1mirmG3OX74GA+ISPTHFclQZVREd9QNp1wRsFejJ9HKVTd8f9jOhfuUuWOSBw8jW1MpSvQ4lb5rkHVogo5qVirprIFbEKrQEB4/H/XpvI9HymzllORqZ25uT8VLEfc0qPs61CgMxYMsfgL0asvIcdSB02N0pXYmiRDLjLR1T1Pkh8c/L7M0G7PTvtoNjPMzkdz0msb3Odf8LiLQWtyMbiPwjxGU7s8rsnN65To+VKIl5pyNxtyIThgA4haz1f2V6ygnu/JT1TFUd31YH2je7q1Olg9rgyy6X4Pp7mKToTqnt3yIjSU7PAbirotUM6T6kZz7tEkgqRAQHj8f9elrIUctW0pfELICfLw6h2P7DLspahCrZm2AOGGJfKoe7WA+aMM9LakL2teH+QOSmoeoRNQuBJUwe9l8dMGPEUcGixd/iyxTyKs0krpQsHlsxK3iGbuAcqNXNJxgCS1DpbW81yZ7pOFgPjnRFnD+/ctSGHBMwIffEaPruRkbE1HCCBVh8DE5kHeRJ5jK8=\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 28,\"candidatesTokenCount\": 5,\"totalTokenCount\": 164,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 28}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 5}],\"thoughtsTokenCount\": 131},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2025-11-19T11:04:33.920749Z\",\"responseId\": \"QaQdaa2ZOKKA0ekP7dGKsQc\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"functionCall\": {\"name\": \"weather\",\"args\": {\"location\": \"Florence, Italy\"}},\"thoughtSignature\": \"CiIBjz1rXyc3Jt0wjS9Mp9TZrLGwfhh2I4z86q6IZHflISCYCmcBjz1rXx+KC1eUkDiRSogUY8M9UnL2bbN9IL9BFB99rjNJ8jKqVtrTC5SncrQnBBqYo8EuWgvrv1+5FSI9Cr2nhvTwyyTpoiqxks9Xz4OTzqCTha5hpdTkLT846P9pER0Xf5aVPOXtCmEBjz1rXwxN0lNIdN5KMrHQmICcs0vijgyfM9OW6oEZIVB3mMx8vGktc9TmDsrA2+CwjcR2l49yFw35r7XPxk/Ng0DRvD3DxUrB/okaGO/ZD4hxM3c2OrFup+zFvfHd/XCcCqcBAY89a1+CIQmUJvHDk2M4F+N7Fs0l3b3lZ9iWGGM/co8kDRr54mxTDiyfwqQ8aDUwwh9glTbmvAjoUvkf8UTN22Bhvv7wdSD31CCBpIsxs6Cdio0H3rP926aZqJBVDKDok8lxfUmDZeJjnQ0o2aIHJefPfibnqzcUhEisidSiOB6ykdSnJUc1wrCqntx0g9UTuF1+rqGk2kDQMiw7OYBl9tdBdtdJerYKqAEBjz1rX+ztDgupxPgCbZALhEbGh9rxJf+DYlYGm5Me0BtIKtOzaol4Mhmn/TeoFz+uzJuK70YK5HFCj82q2aEDNza9W5jO7aYoceFhS4YCyNFTMRIg6IEWVJxS3sUe78ELLsDtGz4/wwwmz5R7ewdNgAY3++XEMwWmNcur6M+kJo8A0Rdd05lcqI9x7bIeHK26JSFNKP0q92ueLb+nFwHj6tv0wWQixz0KdAGPPWtfJWCT44joV6wQkimuxiqvNYu/QESgs3eTypb23NNIgfv49xVM0VW7RHiqw/OXFXtxl5V9VST5DCLK8ShuRYYGDvCVtsGhK75pwJqLWMG/B781gSh9LChcF/n74RT6e21GTFtKGvMGywQTkZrYJVEe\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 28,\"candidatesTokenCount\": 5,\"totalTokenCount\": 150,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 28}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 5}],\"thoughtsTokenCount\": 117},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2026-03-12T18:06:28.449115Z\",\"responseId\": \"pACzadu0G57U8eEPzcif6QU\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 2.54737625s + duration: 2.436108042s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1728 + content_length: 1677 host: us-east5-aiplatform.googleapis.com body: | - {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence,Italy"},"id":"1","name":"weather"},"thoughtSignature":"CiIB4/H/XuGEqIkixg/vsdLNO/XLdMRIZWrA4iDLpx8bp1ChCmUB4/H/Xoj6y7XCdrBliXjSjdFbjGTIHnTA9YwnccwE2dLTxHzOJ92RLCPgzO88hXs1xOzNXD8+/BC4WYDIxscHvvQevTaThD9T9w2ZR+yCElxo+PwMgDiuPFGHkB+XEtVivx1chApjAePx/14yHfyzssNIJ5Kw9cHYnXQl1hlVSRM0suf+tqfI+vE5FCVa7mhohZRmW36oYdjWkeKEIKALgBBr5C5Q+MZujY9w1b+jW+Dah66ucWpODv1LOlet4qMPuRwr/zAZ/iRSCqoBAePx/16kFfr13j/F3N5RIbe2LZPv1Jz49ZsxKJelffFaZMMCxlLIgAi+cSEQejQj3J7nehUSvpi6e6Q29QOdXZn4s089OPoZ4wvnRU4BIU5RC1OUZGrAmPv8kocrjkGr/pXTEjQ1mirmG3OX74GA+ISPTHFclQZVREd9QNp1wRsFejJ9HKVTd8f9jOhfuUuWOSBw8jW1MpSvQ4lb5rkHVogo5qVirprIFbEKrQEB4/H/XpvI9HymzllORqZ25uT8VLEfc0qPs61CgMxYMsfgL0asvIcdSB02N0pXYmiRDLjLR1T1Pkh8c/L7M0G7PTvtoNjPMzkdz0msb3Odf8LiLQWtyMbiPwjxGU7s8rsnN65To+VKIl5pyNxtyIThgA4haz1f2V6ygnu/JT1TFUd31YH2je7q1Olg9rgyy6X4Pp7mKToTqnt3yIjSU7PAbirotUM6T6kZz7tEkgqRAQHj8f9elrIUctW0pfELICfLw6h2P7DLspahCrZm2AOGGJfKoe7WA+aMM9LakL2teH+QOSmoeoRNQuBJUwe9l8dMGPEUcGixd/iyxTyKs0krpQsHlsxK3iGbuAcqNXNJxgCS1DpbW81yZ7pOFgPjnRFnD+/ctSGHBMwIffEaPruRkbE1HCCBVh8DE5kHeRJ5jK8="}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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"}}]}]} + {"contents":[{"parts":[{"text":"What's the weather in Florence,Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"CiIBjz1rXyc3Jt0wjS9Mp9TZrLGwfhh2I4z86q6IZHflISCYCmcBjz1rXx+KC1eUkDiRSogUY8M9UnL2bbN9IL9BFB99rjNJ8jKqVtrTC5SncrQnBBqYo8EuWgvrv1+5FSI9Cr2nhvTwyyTpoiqxks9Xz4OTzqCTha5hpdTkLT846P9pER0Xf5aVPOXtCmEBjz1rXwxN0lNIdN5KMrHQmICcs0vijgyfM9OW6oEZIVB3mMx8vGktc9TmDsrA2+CwjcR2l49yFw35r7XPxk/Ng0DRvD3DxUrB/okaGO/ZD4hxM3c2OrFup+zFvfHd/XCcCqcBAY89a1+CIQmUJvHDk2M4F+N7Fs0l3b3lZ9iWGGM/co8kDRr54mxTDiyfwqQ8aDUwwh9glTbmvAjoUvkf8UTN22Bhvv7wdSD31CCBpIsxs6Cdio0H3rP926aZqJBVDKDok8lxfUmDZeJjnQ0o2aIHJefPfibnqzcUhEisidSiOB6ykdSnJUc1wrCqntx0g9UTuF1+rqGk2kDQMiw7OYBl9tdBdtdJerYKqAEBjz1rX+ztDgupxPgCbZALhEbGh9rxJf+DYlYGm5Me0BtIKtOzaol4Mhmn/TeoFz+uzJuK70YK5HFCj82q2aEDNza9W5jO7aYoceFhS4YCyNFTMRIg6IEWVJxS3sUe78ELLsDtGz4/wwwmz5R7ewdNgAY3++XEMwWmNcur6M+kJo8A0Rdd05lcqI9x7bIeHK26JSFNKP0q92ueLb+nFwHj6tv0wWQixz0KdAGPPWtfJWCT44joV6wQkimuxiqvNYu/QESgs3eTypb23NNIgfv49xVM0VW7RHiqw/OXFXtxl5V9VST5DCLK8ShuRYYGDvCVtsGhK75pwJqLWMG/B781gSh9LChcF/n74RT6e21GTFtKGvMGywQTkZrYJVEe"}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"maxOutputTokens":4000},"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 @@ -48,7 +49,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-pro:streamGenerateContent?alt=sse method: POST response: @@ -56,10 +58,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"The\"}]}}],\"usageMetadata\": {\"trafficType\": \"ON_DEMAND\"},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2025-11-19T11:04:36.481439Z\",\"responseId\": \"RKQdaZ-xHa6B0ekPlJO-oQk\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \" weather in Florence, Italy is 40 degrees Celsius.\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 167,\"candidatesTokenCount\": 13,\"totalTokenCount\": 180,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 167}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 13}]},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2025-11-19T11:04:36.481439Z\",\"responseId\": \"RKQdaZ-xHa6B0ekPlJO-oQk\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"The\"}]}}],\"usageMetadata\": {\"trafficType\": \"ON_DEMAND\"},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2026-03-12T18:06:30.882336Z\",\"responseId\": \"pgCzaaDtNeLT8eEP2-rQmAc\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \" weather in Florence, Italy is 40 C.\\n\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 155,\"candidatesTokenCount\": 13,\"totalTokenCount\": 168,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 155}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 13}]},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2026-03-12T18:06:30.882336Z\",\"responseId\": \"pgCzaaDtNeLT8eEP2-rQmAc\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 803.423291ms + duration: 1.635674667s diff --git a/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-flash/complex_object.yaml b/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-flash/complex_object.yaml index 6ff9f0fd13edbc46f749fc30cf35cdb5e3707dfb..6c8b140588ffd2735787300cbba47aa2495e42de 100644 --- a/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-flash/complex_object.yaml +++ b/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-flash/complex_object.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:generateContent method: POST response: @@ -30,7 +31,7 @@ interactions: "content": { "parts": [ { - "text": "{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"fantasy\",\"adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}" + "text": "{\"author\": {\"name\": \"J.R.R. Tolkien\", \"nationality\": \"British\"}, \"genres\": [\"fantasy\", \"adventure\", \"epic fantasy\"], \"published_year\": 1954, \"title\": \"The Lord of the Rings\"}" } ], "role": "model" @@ -41,22 +42,22 @@ interactions: ], "usageMetadata": { "promptTokenCount": 38, - "candidatesTokenCount": 41, - "totalTokenCount": 230, + "candidatesTokenCount": 55, + "totalTokenCount": 269, "promptTokensDetails": [ { "modality": "TEXT", "tokenCount": 38 } ], - "thoughtsTokenCount": 151 + "thoughtsTokenCount": 176 }, "modelVersion": "gemini-2.5-flash", - "responseId": "yaIdaduGCfahxN8P3p7vwQc" + "responseId": "9QCzafXqGZDRz7IP6ZzX0A4" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 1.690439333s + duration: 1.733883042s diff --git a/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-flash/complex_object_streaming.yaml b/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-flash/complex_object_streaming.yaml index 52dc75f196b38ebeb806140609033ad7aa22f6fc..f848c20b47735bbf5d73893b6c696e4053d962ac 100644 --- a/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-flash/complex_object_streaming.yaml +++ b/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-flash/complex_object_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:streamGenerateContent?alt=sse method: POST response: @@ -25,10 +26,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"{\\\"author\\\":{\\\"name\\\":\\\"J.R.R. Tolkien\\\",\\\"nationality\\\":\\\"British\\\"},\\\"genres\\\":[\\\"fantasy\\\",\\\"adventure\\\"],\\\"published_year\\\":1954,\\\"title\\\":\\\"The Lord\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 38,\"candidatesTokenCount\": 37,\"totalTokenCount\": 210,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 38}],\"thoughtsTokenCount\": 135},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"yaIdaYqFMfuDvdIPn_iEyAk\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" of the Rings\\\"}\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 38,\"candidatesTokenCount\": 41,\"totalTokenCount\": 214,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 38}],\"thoughtsTokenCount\": 135},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"yaIdaYqFMfuDvdIPn_iEyAk\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"{\\\"author\\\": {\\\"name\\\": \\\"J\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 38,\"candidatesTokenCount\": 8,\"totalTokenCount\": 192,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 38}],\"thoughtsTokenCount\": 146},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"9wCzae3oCajRz7IPsNKWsA4\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \".R.R. Tolkien\\\", \\\"nationality\\\": \\\"English\\\"}, \\\"genres\\\": [\\\"fantasy\\\", \\\"adventure\\\"], \\\"published_year\\\": 1954, \\\"title\\\": \\\"The Lord of the Rings\\\"}\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 38,\"candidatesTokenCount\": 51,\"totalTokenCount\": 235,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 38}],\"thoughtsTokenCount\": 146},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"9wCzae3oCajRz7IPsNKWsA4\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 1.379188208s + duration: 1.428271s diff --git a/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-flash/simple_object.yaml b/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-flash/simple_object.yaml index 4ee78db35126c751a2c2b95edfefb289bf8d91e1..7efc862bb1904405224480ed23562e8129a2de37 100644 --- a/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-flash/simple_object.yaml +++ b/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-flash/simple_object.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:generateContent method: POST response: @@ -30,7 +31,7 @@ interactions: "content": { "parts": [ { - "text": "{\n\"age\": 30,\n\"city\": \"Paris\",\n\"name\": \"Alice\"\n}" + "text": "{\"age\": 30, \"city\": \"Paris\", \"name\": \"Alice\"}" } ], "role": "model" @@ -41,22 +42,22 @@ interactions: ], "usageMetadata": { "promptTokenCount": 20, - "candidatesTokenCount": 25, - "totalTokenCount": 127, + "candidatesTokenCount": 19, + "totalTokenCount": 130, "promptTokensDetails": [ { "modality": "TEXT", "tokenCount": 20 } ], - "thoughtsTokenCount": 82 + "thoughtsTokenCount": 91 }, "modelVersion": "gemini-2.5-flash", - "responseId": "xqIdab_LEP7hxN8PyeLZ6Ac" + "responseId": "8gCzafSANpLqz7IPzJrX8Q0" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 1.1166025s + duration: 1.303643458s diff --git a/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-flash/simple_object_streaming.yaml b/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-flash/simple_object_streaming.yaml index 0f1c4b51ead92c23f72aae3865e87f2a27083451..32ae081bef150e0d042b8e05db90a15a784b9cdb 100644 --- a/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-flash/simple_object_streaming.yaml +++ b/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-flash/simple_object_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:streamGenerateContent?alt=sse method: POST response: @@ -25,10 +26,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"{\\\"age\\\": 30, \\\"city\\\": \\\"Paris\\\", \\\"name\\\": \\\"Alice\\\"}\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 20,\"candidatesTokenCount\": 19,\"totalTokenCount\": 133,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 20}],\"thoughtsTokenCount\": 94},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"xqIdabK5MLfbvdIP6NWWuQk\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"{\\\"age\\\": 30, \\\"city\\\": \\\"Paris\\\", \\\"name\\\": \\\"Alice\\\"}\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 20,\"candidatesTokenCount\": 19,\"totalTokenCount\": 148,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 20}],\"thoughtsTokenCount\": 109},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"9ACzaYvCC_Poz7IP94DJ6AY\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 1.214252541s + duration: 1.231287792s diff --git a/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-pro/complex_object.yaml b/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-pro/complex_object.yaml index 6d1dd36b08c48313d859b9ad6b2ae01ae9326bed..4d2d99f764bd7305c047fbac135eb4d1dbed788d 100644 --- a/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-pro/complex_object.yaml +++ b/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-pro/complex_object.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:generateContent method: POST response: @@ -30,7 +31,7 @@ interactions: "content": { "parts": [ { - "text": "{\n \"author\": {\n \"name\": \"J.R.R. Tolkien\",\n \"nationality\": \"British\"\n },\n \"genres\": [\n \"Fantasy\",\n \"Adventure\",\n \"High fantasy\"\n ],\n \"published_year\": 1954,\n \"title\": \"The Lord of the Rings\"\n}" + "text": "{\n \"author\": {\n \"name\": \"J.R.R. Tolkien\",\n \"nationality\": \"British\"\n },\n \"genres\": [\n \"Fantasy\",\n \"Adventure\"\n ],\n \"published_year\": 1954,\n \"title\": \"The Lord of the Rings\"\n}" } ], "role": "model" @@ -41,22 +42,22 @@ interactions: ], "usageMetadata": { "promptTokenCount": 38, - "candidatesTokenCount": 84, - "totalTokenCount": 195, + "candidatesTokenCount": 78, + "totalTokenCount": 401, "promptTokensDetails": [ { "modality": "TEXT", "tokenCount": 38 } ], - "thoughtsTokenCount": 73 + "thoughtsTokenCount": 285 }, "modelVersion": "gemini-2.5-pro", - "responseId": "0qIdaciCFffPvdIPp-ycyAk" + "responseId": "AAGzafvVCvHgz7IPsciD8AI" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 2.813791334s + duration: 3.976851875s diff --git a/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-pro/complex_object_streaming.yaml b/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-pro/complex_object_streaming.yaml index 5a8200d8f07a1f240e0295981dcc8e771b1a4982..5541d8d1220181a7ae8605d5639746ed207a75f2 100644 --- a/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-pro/complex_object_streaming.yaml +++ b/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-pro/complex_object_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:streamGenerateContent?alt=sse method: POST response: @@ -25,10 +26,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"{\\n \\\"author\\\": {\\n \\\"name\\\": \\\"J\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 38,\"candidatesTokenCount\": 14,\"totalTokenCount\": 188,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 38}],\"thoughtsTokenCount\": 136},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"06IdadTyD9b9vdIP4ITmwQk\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \".R.R. Tolkien\\\",\\n \\\"nationality\\\": \\\"British\\\"\\n },\\n \\\"genres\\\": [\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 38,\"candidatesTokenCount\": 38,\"totalTokenCount\": 212,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 38}],\"thoughtsTokenCount\": 136},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"06IdadTyD9b9vdIP4ITmwQk\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\\n \\\"fantasy\\\",\\n \\\"adventure\\\"\\n ],\\n \\\"published_year\\\": 195\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 38,\"candidatesTokenCount\": 60,\"totalTokenCount\": 234,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 38}],\"thoughtsTokenCount\": 136},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"06IdadTyD9b9vdIP4ITmwQk\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"4,\\n \\\"title\\\": \\\"The Lord of the Rings\\\"\\n}\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 38,\"candidatesTokenCount\": 76,\"totalTokenCount\": 250,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 38}],\"thoughtsTokenCount\": 136},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"06IdadTyD9b9vdIP4ITmwQk\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"{\\n \\\"author\\\": {\\n \\\"name\\\": \\\"J.R.R. Tolkien\\\",\\n \\\"nationality\\\":\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 38,\"candidatesTokenCount\": 26,\"totalTokenCount\": 469,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 38}],\"thoughtsTokenCount\": 405},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"AQGzaef8KcvQz7IPjunSwA4\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" \\\"British\\\"\\n },\\n \\\"genres\\\": [\\n \\\"Fantasy\\\",\\n \\\"Adventure\\\"\\n \"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 38,\"candidatesTokenCount\": 48,\"totalTokenCount\": 491,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 38}],\"thoughtsTokenCount\": 405},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"AQGzaef8KcvQz7IPjunSwA4\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"],\\n \\\"published_year\\\": 1954,\\n \\\"title\\\": \\\"The Lord of the\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 38,\"candidatesTokenCount\": 72,\"totalTokenCount\": 515,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 38}],\"thoughtsTokenCount\": 405},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"AQGzaef8KcvQz7IPjunSwA4\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" Rings\\\"\\n}\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 38,\"candidatesTokenCount\": 77,\"totalTokenCount\": 520,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 38}],\"thoughtsTokenCount\": 405},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"AQGzaef8KcvQz7IPjunSwA4\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 2.114800584s + duration: 4.397248417s diff --git a/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-pro/simple_object.yaml b/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-pro/simple_object.yaml index ec328ed4bbde8e8849320f30df9333dd9e3f8077..03f703bbfd79d068cd03da3d5c3a187e1c00a56b 100644 --- a/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-pro/simple_object.yaml +++ b/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-pro/simple_object.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:generateContent method: POST response: @@ -42,21 +43,21 @@ interactions: "usageMetadata": { "promptTokenCount": 20, "candidatesTokenCount": 28, - "totalTokenCount": 112, + "totalTokenCount": 93, "promptTokensDetails": [ { "modality": "TEXT", "tokenCount": 20 } ], - "thoughtsTokenCount": 64 + "thoughtsTokenCount": 45 }, "modelVersion": "gemini-2.5-pro", - "responseId": "zKIdabLLD5GavdIPxvbZkQ8" + "responseId": "-gCzaYKbG6fmz7IPwOuT-Qw" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 1.691421375s + duration: 2.095408833s diff --git a/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-pro/simple_object_streaming.yaml b/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-pro/simple_object_streaming.yaml index ac82ab49ab8ecc7c7cb236f1c59a37543cf2b8f5..7ec7a8e93383e5e0fcc8326fed378bc92dd3c02a 100644 --- a/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-pro/simple_object_streaming.yaml +++ b/providertests/testdata/TestGoogleObjectGeneration/gemini-2.5-pro/simple_object_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:streamGenerateContent?alt=sse method: POST response: @@ -25,10 +26,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"{\\\"age\\\":30,\\\"city\\\":\\\"Paris\\\",\\\"name\\\":\\\"Alice\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 20,\"candidatesTokenCount\": 13,\"totalTokenCount\": 296,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 20}],\"thoughtsTokenCount\": 263},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"zaIdafuIG7KlxN8P_d3JsAg\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\\\"}\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 20,\"candidatesTokenCount\": 14,\"totalTokenCount\": 297,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 20}],\"thoughtsTokenCount\": 263},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"zaIdafuIG7KlxN8P_d3JsAg\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"{\\n \\\"age\\\": 30,\\n \\\"city\\\":\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 20,\"candidatesTokenCount\": 15,\"totalTokenCount\": 78,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 20}],\"thoughtsTokenCount\": 43},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"-wCzaeTDKqjRz7IPr9KWsA4\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" \\\"Paris\\\",\\n \\\"name\\\": \\\"Alice\\\"\\n}\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 20,\"candidatesTokenCount\": 28,\"totalTokenCount\": 91,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 20}],\"thoughtsTokenCount\": 43},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"-wCzaeTDKqjRz7IPr9KWsA4\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 3.282518084s + duration: 1.736955459s diff --git a/providertests/testdata/TestGoogleObjectGeneration/gemini-3-pro-preview/complex_object.yaml b/providertests/testdata/TestGoogleObjectGeneration/gemini-3-pro-preview/complex_object.yaml index 266c4c9d12ad7ce1a85a84afcbcde2e6b920811b..64614643bbb24c4f34f14921f7cca02e94d9cec6 100644 --- a/providertests/testdata/TestGoogleObjectGeneration/gemini-3-pro-preview/complex_object.yaml +++ b/providertests/testdata/TestGoogleObjectGeneration/gemini-3-pro-preview/complex_object.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-preview:generateContent method: POST response: @@ -30,8 +31,8 @@ interactions: "content": { "parts": [ { - "text": "{\"author\": {\"name\": \"J.R.R. Tolkien\", \"nationality\": \"British\"}, \"genres\": [\"Fantasy\", \"Adventure\"], \"published_year\": 1954, \"title\": \"The Lord of the Rings\"}", - "thoughtSignature": "Ev0RCvoRAdHtim8IbVoKzHu9DSiZ/yt55YYnW37+8kYX3lqSg5uk5kw71CkPqWhKJ6AXQFWon5dBWqSD3do+jhJx+yGDcyRxHiJgqVozeb24Wxls8TyIQyU9WftAzMoSm6wnO2paOtm9DV7a/cIiy4UIHTQecWF+GBxPgfUyuxWiFXsQ6w8ixovCvhboL/toE9JYcgLsLRw8hdBV8XhrDNu5Si4CkQi5Us5L1GqWLFcIk0Td5vlTWp0f51BFStujmDDtE/MDmuOgx1KO14TUddgZuYUxOFpizG433SSfCz9/eOT9FWWwga36siLgp525fLJ+2FbXOu08UIKWZVW/Gp2TCeDTj1AWYC6QqcYCBdWVy3pqKseEtXkxt0bTyKFbBGwTiklH+LrMmvN5AyDVYKdLV/Qc35T/3BrCPKQyBUyJK6aIkDP2i0sY7yHRfjTSiy1Bbj+h27AcwKkr533nNMNPPYK9goQtRtjrqOUXIA6g9ryIx2TsFOPJyi08MSIyCK/fM4ojpg477f7yRaKRd0x5BcV0tt9L7280AvEBhTs64XUorFgoT6J+WDZAJ+FQYL0VWDUkQkTu6u7BfmH9Fjc2q0YE/jxNK64Wmgmm57xT6vSrVhnUFgKsCN/M+nMbf5n3fSx6FENHZ7ZhbUu1AsiKYxwZL8S9B0WaQkws7au9BlUa9HW5kMcf0y5AzgiqHiTpJXqdAfs/vxm6nIDj/Fmz7ZjH1M2/8EM1PxRHN8MzCZ4WfSv29bh8+PC+neQXsBuJ/LYPEyWcOOlFLtJ4X3PGqoUgUsgOJaqgKaWlySy6wghS5sq8xC73zt7cbSurryteHGW46xl9MezT6ngEvNbi3rSXBxu6dSQMJAJ9ZXQqX+x5MS6UiLn3N0IboiqleHhiYNPNM2zHHFudTo/nRoAav0gu+b1PHn9njPiVxMlQ3gttPN/z+hNLvO56JE27tWxVQE+/ZpjRRRlgJ2chuAgBMA50EWYFGnqyNOer44nGtUcr5xgUEJV8YbUbUgEPGLN/QXa2nElR2+oCqbvax8hODOu3lji6o1ozq9PPzHDxVf8kjVkxULM4DtRiCgvXkzHlAOGov+PyDOIETE7e4U9hIG8vbHcAaHPymoy/JiyIqtb4qI7450oMlUAi08PmiQnmKlKHxYmTXo46M5R2i83evkVHE6rdCmwaxd5iIwTeNUj4/CtUPCiEUVSmYUqkYgTuQl4jZLuNyJzyiriYHSgTwUYbHS5yhkdhY3n6pNJf+aEWNLViIF7rpfU9BWGKXat5206gavvuGfxaz4e+fbb44atFAeJ20YJX1SOm5nlLDKOeMVmHhlqW3422UD8bqgdSBG+Elqm48h1o7rw+iVFpyxdveruFJ9r8ZFIhYKYHCmSyszhmRcwcmqjGbGHXBtujvcAzeu/b8N9YiTK9AEnR1IECZfmD+/+T2TpecfCNMZamFFB0Jx7OiManf36NJyZJ5+3JhrkSQTKqlFn/IhKbn5ThP36Yp32mza4GvzheboTmktmoUD6c5TLJ6g6wcLqTb6pxPvCBBsqICt3zVE6Y8DrursqfLsEFjFx73VGwlaD0DgsVvSA7Ty5bEaVTiiRg5ZuEwXaOxr8FEDPLCYp/uyO/H5MnXb8b3NMJYWmSSeXj0T8a8DQ0SvX8B2J9zQUT2ZSTVhpw8uULAKtortAL5NF7musMoUvPIzhAXkE9u9zK+CA9H5Lj/jl5dC9Uou2UDHWk1D76h23tmvU5fbih5w9V1cAwlqAHTlW6AEWlmSDYaHDj9h1C/FkAMOOc0L+26mAt9SEzGJ89YTdIte57ZeKHc1JiaXN4sVoc1A7wuDbrjooEE+DTgKQbUoiWX2KVoszYfBdhANiJX/sfd5rkfZVCFT0l07QLltwzOi6YFWN2gIyV3/pvOU8Pubdi8eQvxPel8wPUNS0N6n6S74D6A3ue5pJgeAVxl55sOXOyotGjAIqIEWWWrf6yW9ie+0p3YurQYlXWhjdOOnXnxtngSqq0mi0skN4TrU2kwov3IWgL8PTDPyRv//wMlP1VynzF74vZrqUxxrdursAZpnGURZSA3Ev7ROHCu2N3lIQ3KarPjD+MjLDxVaEqgBeLVIA35hSjKuRxmiUocpO97I0VlrTQj8ugaZBXw0I9kc2esaeUIbRDeRf2rqKiqH1b8yyGZiBD94MVo/PnDhNMd5waw1yhY+vcUk9Pq0+Vv5qplF7APVoDY+3I0Bd8c8ccM9x8FT5JYg7GNyz+LzRLs5GMoKrd5pOC1WbAebR51fpkCHyi76UfSGz2ST9Z9NCu9oY2imLH5RFWsxHwk4DRrhDKek7cT4ZuBNldK1sAA908ihhUvRWI+4itTlC0K/+GNMnbEUKf3DEX0zOPOVzPeWfmdD3On62u9PMDMA3rTn22IgOH/7eXFVMRuKFCgW2/8CIrKlq4CdoPMm+vwH603ExycKvFbvdtBJD1BSbHaLhui4YRsOzcoco+iYAQQnc03H7FzNAyPJ6XudCBCf79XV32CpSlM5rsURW8pYfKnzWpN0NPDmYNsRVTCZzJAc+G5dBiYDt551jXUZGrv9eK5aAXmhksbTst7cKz50kHjZrP33s2q410ZF2wu4scnOFxvBJeb1bl1xKH4lWMrSAi85I2pfZvbMriJzWcDjoGBNWaHHYe/4qLCS2iuQKOzzIGT2IUVPH656aF3q4HcQpcPCUaixihrEp/GRU/pGv+2jkemdCYf9SxtuCaECCZyQN9JAh8+BZHKUh5yO/XqQoj+uRjzDdIBA0gBh9lyvRXXLN6chQ4bd+DxpxXnrjf373YYBNbLp5t+1oDbrrO/PYrKz1p1CUXAUkM/KFLW3E08ZQ19HNirif+edyCKB/CQQtw05vWZkngTXdwbOsvGhLY3jXoOGCrqNOQrewWCHWFmjf2JxTXaaeEi3fXyX0VPTDrjuHpz7barc9z/xfkDj+bm0aIStPrRYfT7eB1IAAQ/fu13Aa1wRac/vHrZAZFAa13/8aHgUjCnu1w+YQF0wB8vIB+0QHjolPdvgv4L79Uf/jxsfN4TyLW1yPnGs9bL0vt" + "text": "{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}", + "thoughtSignature": "EuUNCuINAb4+9vtDqufsqO6SQj/mbkkKY9v+AvD//xRp+vXsBTsXoyUsCZomOD7s3/A9TDiGFSEwG0WMyBCn/oaE1uz8+zazm1VeD2jCdH0HRYQ1NXcLnfRQEe7PpwMWIgMdL8/2KvgB/1SobrbPRPgPwQsnI0MIFD+h8AgmtCEQHAaddfcWIUsfxrndmf9GCIipbXDtRB4KomG6p4cvdQ8oArpQVPNutOMy0BfGb2CK2dbkpIahH6zXtvLySwq0YoMhvhjq82NpLZo4RJBSlZNqvBj8Mlfx258vF6gua6F74rcE0M4IqS3Y6+c3T3h8M+ouFpt7ilBkgD1tn68vellk6dUkuM1Uf3FGGCMB44DvezGj37Wowj/Z7iK4AxgNpspEbkFLqMh0vs89hxv7T8iquV547D7DuJy4Z2YoG/Y/FSWub3EvjoEZGJpnyZqvOEkezxh4ZnQfJ1HlhDLWBNrlr32j+z58txIKjPKCgmg2WIjoqp4IcC8wPHYmZ8sgba1LPQPdN7ghN1WpRLxD21i4W++nPB2czAVNBQpxT7UdIJr35Si55sKEodlv0W5N1E7JVGQIPWxdSI++qmKVt+NkOE4fVxGi0A3qWTX0yBF9xb4lz4aKVis24CJiJ2fNya0C10waFB4r60AW/fmIohrU7CosKXXIli+Ao1UmBSFCFcXHwNZ3Wa5XRFEF/1XqT/N8XxvxsRhnS6pKLPKd3BRVc5XF0vGfXyXvcMhhUQZEv0cS9eXS8u3d3ZtKjW0pUpfpj4o090vBB00B7kGbt2yqDABLYe5ZsBQ9gl2xbIIKJvztm2PaADHVJtBa9P7xNPq6qO/A2EIeh84z6NG6V7Lm1B5OOAlZ90ur2Xg2sI+wKvw7Ial6e9xTuqDNKlA0Yx0GTP4oQ+g19VFaSlaUknHfbWBJYEzVlTrnkuSu/GoHcn1kYQutQMEud8dWqUt3J/c0hMY5hXAcgh2yvWjrNT0ypU14y1K8eHvzHG1zm6AqzWcvO74R6nR6ivAowvHPoGfiOWuX43kR8kz2A8E+jqnd+F1CNU+1fNTvxVxKBelBN346af5z8d6Sz7oq/7ge1m10RMJrVzeE3QlElS2AraY4sx29gp/9X4IfdgiennH6qYFwBNr+8mNJ3sp3CVnHhFHqN/jHcdMQP8uMqGIoCI4ZjR3Om+QVR3fCmSbaSbHZf2u+z8PgJ3olJNPkeG/kiTnMNlUmLPYvUf2E8YvBxcQ75tJSYbJqFi28EjW/AGgVUhYQ4hAwx7jNFl5jHG76V6Hfup5O7nks1OinZcbkMFaESSL1aAfCL5HpZwsrZVtnJ7u49KcokBKptk7hH3GM6EP8LehvJRa34tjQlRraS7bSjMuRHjgQY7dHi0NL4WS+mCnF89TUUBl1gMkGKIqV452F3e28rlh9QJ4xT6nSkNNKl0jJ6LsrgpnPhkFQVVyKuRvSUwbTRRPA3kEkHc2JBPZNUYt4KO99u17E8XJj2Um3szhwLWJ2RCk1WVdRG5YcfnGzaCZkCZB67Q2023zr/tMxNto0lW1RgrnpU0/Sx0RCGg3/oqlXOUgknTkAwWnZxTghK2HV7m0W9J+9CUl1D4yn2XdVZJqNFaGWvFL+/TrOs15noCJWsMlAEuDmryaY7DC2EfIa2Xifs++97rrmXuaWwVeLca6KztnuvrpPRCI+jU5go8DIeVe4SdenjE6Y0WtUqOgzR36ccmjS0aT4DNsW71IksCGzHAQW6vuMKzZkaqljEn2i45QL17ui/6VUTIK/TwxKYPJOUUNqqKpmnrjpq6JWWLhgOuJbRVfYdqTcIIInqFVjQEGCYSnBKh/lTd+PfKCPVmwgR8U3irO4C8I74SDRDek0FOGJ5HI0yEHWxhH9pfFcXeV69ZbVThKt68zX9sw9ZtINu7ZxRMzumGHbD7mhUjPpPITJA2ZBDR2I4uoqXylgxPfgcB2+sw/A+Yo0xl6nURUqmZKoKIc9ClESXff474CNN0bXhgg+z3DmHdq+WQq50tk1d70h0IIvCfixKGSbpo6vCyOcZYOVNkX22VLq9cNYg8/niFv5SfX7VCYSvze2y2Rvptb1d1Zpnv8Wa3zpOw95MgaoGwESgaHJ3X3tlxT7/lMPoQplHbIfTNXt91GDPZtLIrTFaiQus+JV6aUn6aqunMu4ZRFzCxFnmOSB1/g6QfeBqwxPqHnYYCSWVaKE9nQOXmdaa+mbhjAlwJylP5DnG81E3d1MET+/h35gUoguNoqkMLBsVg0Who12LyM9DIvhnFxuy8Jtf/52SfRiHFCI1luk8y9jHvf31GB7qAMla45QzD5CM5JfQVxrNw2HKsKvuT5cMvEgBcS48/5r8g==" } ], "role": "model" @@ -42,22 +43,22 @@ interactions: ], "usageMetadata": { "promptTokenCount": 38, - "candidatesTokenCount": 51, - "totalTokenCount": 747, + "candidatesTokenCount": 41, + "totalTokenCount": 582, "promptTokensDetails": [ { "modality": "TEXT", "tokenCount": 38 } ], - "thoughtsTokenCount": 658 + "thoughtsTokenCount": 503 }, - "modelVersion": "gemini-3-pro-preview", - "responseId": "v6Idae2xKIDXvdIP097RmAg" + "modelVersion": "gemini-3.1-pro-preview", + "responseId": "6wCzaa0uge3Psg-93ZyBDQ" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 7.5885605s + duration: 6.460072792s diff --git a/providertests/testdata/TestGoogleObjectGeneration/gemini-3-pro-preview/complex_object_streaming.yaml b/providertests/testdata/TestGoogleObjectGeneration/gemini-3-pro-preview/complex_object_streaming.yaml index 431dd334272560bc4b8ef5e5adefe3f567145047..6c59de0a78f1ef001422d58c489fe99d27745410 100644 --- a/providertests/testdata/TestGoogleObjectGeneration/gemini-3-pro-preview/complex_object_streaming.yaml +++ b/providertests/testdata/TestGoogleObjectGeneration/gemini-3-pro-preview/complex_object_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-preview:streamGenerateContent?alt=sse method: POST response: @@ -25,10 +26,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"{\\n \\\"author\\\": {\\n \\\"name\\\": \\\"J.R.R. Tolkien\\\",\\n \\\"nationality\\\": \\\"British\\\"\\n },\\n \\\"genres\\\": [\\n \\\"Fantasy\\\",\\n \\\"Adventure\\\"\\n ],\\n \\\"\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 38,\"candidatesTokenCount\": 54,\"totalTokenCount\": 564,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 38}],\"thoughtsTokenCount\": 472},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"xaIdaeu3AtWNvdIPo9-nuA8\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"published_year\\\": 1954,\\n \\\"title\\\": \\\"The Lord of the Rings\\\"\\n}\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 38,\"candidatesTokenCount\": 78,\"totalTokenCount\": 588,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 38}],\"thoughtsTokenCount\": 472},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"xaIdaeu3AtWNvdIPo9-nuA8\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\",\"thoughtSignature\": \"EqMPCqAPAdHtim/qoClpB6Fl4IGbJM4ZYPxj4nlVArCL0UhKPbeG9D4l+wRoKuaWH96pLNpqU3B78AkB4JXsx0XKp8xv/Rz+sKgDqBAuMgV29GQc9flyvyX5T2fYEpnxFz+HiVtPrPhUeIM3WcEMNQdbmrAgCgBgYP7m5BxWQImTWtCYN7tvsMS9Sgsiz8nGRhe3Pj+AtWLSwCSwgSbO+7eCEZlLAovg24jIUvvzGk0nT82DRxpaQZNb4iZVLd8wKYX2lkBv7VEAyq/H6X34lTa4Ok9Jcpdns6c3j9oiDZmCwROfHoOGOs+bk35jEnrYWgdx8v8jS6yachQnwGQcnVkvdMCHzVXd7EaelY4YcxDQU72NYzpACmq8+1+3uFQj/22iHIqhGwuwaVScRxOKRp9+Y37acOkQFOtzsWlU7wKdlO95HcFtIp3gv1lyowYRKXMUKD0mq9dHl/xWL1WFL+moYgvmZoxounnm3n49TNdkqsfT5A+XyLyqUmcuyFOV0EXRaQBeazuK6smO8Knw6ZH3vElq7RoE1vvnclp5ghh2yP/5rWAyz8VtpJE46jPjt6yiifez5todGl2A4BK29U3mQIJqBS5JrdjAwK288aEsP1raBA6Je4Hef3S6pPUohBeLW9WFzZxjvmZ4De1rCByUSBj7oJaq8o//y1ng+31C0VXUlahuv79GfJcTlevo3Gy2EV+gLl5nLio+W3qURFeojrfGxwAQpNegaKjzr8LwSPX1rjY3dEJncNjUeB8DcLvCZ+vFXWF68/SWZw6q8mRSXtrADxUtlKx1Guus8fa3FhxdpGPlXdK36HaZWPfa3Hi2gPtZmq8rD4z55R4I+KSNW8jkjsE23v8dXrAcGnFcCs3u/FVvwnX15PDGWVs5rLwB33x5QJ5fZa55fgr4BO6axSSEa4EAhEthSXZ0H5XW1k3fAP1+pGWA2udfRJDOXRX5vMzZIsWWnwICG0rfj7akPPEkbXS+8z7KO6AlCGxjJoxBqS8fStoaCQ5pEvYUwNjLcpwtjeCAD/2LvRG2ZmOvtG3/RUPjYEuiQwc0tee2lLXCeNPv0G692XUUpe8ZVSXkLX5D9dPkq4aRZuv0JSuuZWWhkZIgjyvTns5ba2ISfLD6o1GNhTWhYDSi7LFg4Gc0k1lvtiIE94rNafAPrWmNFENxq2J6dFac7coG8mX3rakHQ/5azvW38DwlKh3vYSFg2oIanK1+4Pc4kBmQ/hscN1/2J2RXoqv7l52IXg0m6e3mgpis8TTYpvkCu7jRKnfRe5z6o13VmlW6jvwzUC/DBU/3n4rH18mlvb2ZjKiRjmZYWMyzc0cJNjR9K8ZZhPm4YRLzpeTuaisZvZXonSBJn1UCsrun3OFSyOn/aPr/+f0i86rRvK0SAjDw6LM80Xy/Mm7wnqRPkR93VXf9CRVyz7glt4ApcGkSbwkePFcsTEXq16wDIi6YgI8i9MZpb0lkCxzWTmyR2Oh3JWm8CHMf5OLM+lFqszPmyc0LOZdUcEM/M2sHt/SuSLtxnjtJ5Q6TemZvkctTugA6KzKPkeClzVlOYohJnVhqyo0pO2UZkhhWbmJ8BvLma3xKbs1dpTG0WpsWRiXoxcMBczYBoQWbbiJfp7UMCSicJuhzXJHsL/ANdbdWvw90ah3h26OBrRH+UCdZwumsLtfJGXUTkXYVpjrMrq0dEiuZ8mARDKpTi+CE9fhHBMJ68x2Ki66ZstG5mwgvJMx/vvjXECVCtBj4azL02PwyyPsWzNbT16KJILh3fbFkYEiBpjG3VHa2U8fqMODZgZ+zmC3q9HG2QK4IPqieEmdkEfMaShWdqit6YTR+BXIVkpm4SiQ0FIPYp64U9mfB1xVJrqqq60i/nVfGVXUtfsw7b7BtCoWvHexSUt/JPxV7c/0YHSah22cn7beBESS0QBNR0H85EfAhttq1koKF7DK3ribCvaWv4jtmPnDKLpfORdSnffvAMAm/U4JpcsIT5Hx5Q8BiWUnvDfOuFpONy3QuRu2ri6W4idVYEw7iF7ZWVQWjmUM9EPQ72uKnvmp0R7PKc3i5rYbJ/2IXoXkNkbOshw5Si82HhuBkgnROyY4bIHNyM9SGptzH31wGfkI698F07ENT7VP7hbuti7+kYv0AsA7ofYULyOAzFDJ/0uRHuQHZm50AbscWjZ6/Rh12f4qkeyCaYgs5G3bb7SkFVdCNw5csd01QmUIrds3nw2wZQpSkbsfI1HL84UV6x+wqo05NmUP4ZrU4SZ367Io2QnZ9e7ZIQBQLjuNapCSBhJ5M+E+f3my+He4lFU5JxP4B84pwmlYqWT0kO7Xo+APWDFRC9xmysK4YfMtJyBtmOvZcuM5BTRg8NMknr2DN5z9Q4Mc6ZUy7+Wt+9i5+bMD27+Xjl8n+9sNL0AFJuU/dhHYNDMm7MvXRpUOSV/9gne3eRkxKdHSWqnGwCSaB7KwzJYYxc7SPpI1GK/HpQWZGOvdvLF1g+WfgU2kqs7y31vLrzxLiZU28RVLo9bbV9thVzYld8gCc+8jp7jqFN9/H1ndS8KBRpxsluUs3YOmqNEQ7X8EBFmDmj0knu8lCf98B5lt1wf8QPH5AWV0ZBk4BFwY=\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 38,\"candidatesTokenCount\": 78,\"totalTokenCount\": 588,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 38}],\"thoughtsTokenCount\": 472},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"xaIdaeu3AtWNvdIPo9-nuA8\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"{\\\"author\\\":{\\\"name\\\":\\\"J.R.R. Tolkien\\\",\\\"nationality\\\":\\\"British\\\"},\\\"genres\\\":[\\\"Fantasy\\\",\\\"Adventure\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 38,\"candidatesTokenCount\": 23,\"totalTokenCount\": 665,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 38}],\"thoughtsTokenCount\": 604},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"8gCzaajlH53Uz7IPmdH08Q4\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\\\"],\\\"published_year\\\":1954,\\\"title\\\":\\\"The Lord of the Rings\\\"}\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 38,\"candidatesTokenCount\": 41,\"totalTokenCount\": 683,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 38}],\"thoughtsTokenCount\": 604},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"8gCzaajlH53Uz7IPmdH08Q4\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\",\"thoughtSignature\": \"EsEVCr4VAb4+9vtRsHjsRF6VkqmwbVZYeS/3TzB5K5EP6pdyYAntuGaHWn/vpNC3Zzrw3Cv6XRcDMTU92dQWcSTuTOrDhzyww4HJ89QpaDxI9bk1TlEfMgEedoHOtuzAZiKdUcNRVx1Hga2wzyuRvaBJ1TdZ3Xpev/msr3r+wjuWuMha+VlvV/oPmNsZgKTMiLBbsZua4tvH5WJfhC2/oDpE3RzVf6uGzTEfyHTLpvlTGXKojVqbbDqjeOUkCX96Nqovtk50SeD4OX7YaVVapYFk06kVj2KwxCsjn+3Yyjr87g+9CBsuYU585RrqoNMx7fSPnymaYaJpF1KXvsu6P0APVLLKHkBlnYX98q02FI/pL41PgZHhlJW22dUVs5CCHKHBJabRSreQDyOj8uFpB3FulEvGcCjlJZUqm00wYCPgoAeEehg/C6bHexCu8lsJH0IiII2M/zQ8QKBbTmVnk/7a0Gk9Vw1uY1HIgqWR6KAhukuG2WB8vq4zGePx5hIt4MVt/Lz66MdKJA7W1CJfNXMyNd1JeLN12XHIYO1eeYV9U1gftwWg6wnJv8N9G+qGnXFjuZphQfkEzV/eqY6lYeiFz2+e4ULpd3DexvnD6dIddlSD95sKtXOHA7RZJA3ZbaHfmU/O/W+OVyR/SkIyOSimOmW+1fcjDJBwrfTY95fynvej70FqCsUkyzXBDhb37kFahOiXs+W9VEebIRmYaQ9xgdSqc/EROFG5TzedPxDqHCetSZ+aiI8UipXIthYhkRDsUWtH1T9x0iXrIDeBtBbAWkuHKHqqAllinxDHAXa61I1X7R4GbcUPOZS00Hkk5yyuJbizxmakNT1EJnDTjEJoW36FpsqUEq5AENC0FzNx4ttwnWt6zkaXRvse7JSZHOe3Aoxt6GKJY2f414ugZAbRomPzDbYY6Z8TrWngYgjfW4jo08ChjQ7509y1MEdBiAEsWulopqOI/um8p/8My25AwFc1ZBGQjLLzXSsVUoU/OIpxxaeVNnWzWUrvY4xXVt8x/hW350SLXeQpr0Lr06lzvwq05j9QBmvIWpPwHPh3tjikxvK6adiCCwyZNOoN6rAbAxGhKk1e4b0YqkdBlWRfFWq7o9kg7RD9TYYZgDT260nRJY7MSJke6dkBkuJ0+UZyFnnYqNef9kPriYetYmsEJmZs4yWU3Tp2BmBnlL6ySJOXtZuIHV7G24wC1hlay8ePUBb+lOhWKWSJNUy50m/223ESNfA514C/bMu2W+lZS7BHOrp7cwnoAV0qhhHxJIDHAJd1cJ92OoHlXanSqLlIyXX65sFw3jAn4MOHCAlBWePlz38//iy2JqEA6Zkc4BKC4MXMx1AjO93YiA7D9bvqpzNplq6ka14jnlbUBWWfG+ck380cx+4l+yoQzqwLQm5FXsLyfwHOxj3SYVTRg41+Gi4euxVpfhEZ5zOReuNZ1a/jQrUFKI9TVbJf3zybsKahFhb4eLiTOfj0u1+7NMkCzs5oe6GBECHVB7di2QlnJ68BI7kdiWpxRMhyTakpJpA1p3e34vVZYIRynXU1E9mjVwm5rE9ylPI+QVBGVOM4bWlPd3YSBmqi32YfNeJKUPpKFsigYix1U2jQ+aW2f9IbcVfQswDbqwB7BmPk/KXvdXoQksw+tnscn7k3r9tFAF99Qa0Hbwt/GHfEkn6K247r5X32tGaBDkz4msSNeYMvLgkNMEEpZuyGDEZRcEReHnOdWeafjF3/0aPlrwWce+2l9//6T6gsh0GxrJXCSwLp5QOB0DzwL1cqObZ68gZgDigdTrC5Tm7+9TB2NvhHOXQfvlej6yKpTXuHRHAQZWg4GBpCHPcGt8PiQkfeRvfopRJS20F/9l1w2IzkavqEBwHBtsDE1Xbwxm+ywwXUYb91uiV7aPuIMViVcCYPWb5B0jrEmmYDs2h3kE+smhiBh0s/OqfCFXEt2kE2MKmTyLvodEXWaP/FPwkb/v6ybxQqlsm8h2q0Apzu99BQ0MCAzbBtVGh9NmEzFVcEzuWotX0EHFO2W/9Ab12PES5pGjxgT9p7khLEeXsqj2h0mfjSu8oz41sOCOe/Cp6+WirhZ2olOAluNB+vmxQ163J7VOQKlpmIRsQTbeM0ZRiDZT1rF7gQwRKPdWjR9xTzKotxWbSdSM5miNBM31/MMaRWsQQ2Kd8/4k60TzH04c+n3faWOo2mk5KcmCcqibfipMuPq/Sw7lClNnneepGIw8KzPkI9ww09UYS5pb1C8tO7Ie0fIqrCPipuhT+Y57FHBcic90u6OZNcdE9BPRaCBQkHAyct55/bmIHKqbcR3WSLIX36DZ0PdRiI3o+lNDvtpuCsEElbYOXvuxDzJwUMx8OHO8MRY2reVhrjDPzKM82DJyllEOlDGRWEDS5QngGcaDdvdDvTc92J/HdDg20hBC9ckCw5ZP/ajdGD++HWsbOA03Qc+MmhFCf1ncBiw6hoANdxwa6UVDRINliZkj5IOEFkHJ3zPFEV6znRWtRWQamZIX94SScnN1UBxsu83y6sP509L6wb1xkCm154gRheRsMtcNb3bkESSb17nhBEwX2ETxQaNT23d8ojFJUbf829cs7pht8ugnDuj9AJvMCdENlDE8kQhGuwxnuslqt/TFUPMLIQ2WYnh7HwFhpjPf9Xb56ouOgu5ceGnwvyApL0Nzw4Y8M5bfKdKIbEV590/ajWmb4x37aTKUfSn0VhM24y94LyX4++GvrJeZTvlU8UaRHUxSvj72gqpL895XXcfnf2qryoGcjo1FPOCD26gG0yKYB/igpBtgp1HPhM2Wf9tcEUQq/l5V+jbq8ICGQEtLTdCaVNpRpzvUKNZEcxyc1Y9vLRGcfy7ZGc8P00fESDyNQjteB2e0JFVjc9RBsgjkhaPjy5eMjaNYT5wU4/okt8Xvi/DnPiuruWqcNTihbpdv6D+YDEK6A7DqL6Ed77F6rOFC/L67kleBbsDEX+otq8Ei7fGQb3DdQtN3DX10QZTHpnuCu0ZXFGRikFB5qiaPxgHbspisIcf+Gr4qiW6ClGqf5Z6TjvlZwb3HrKK/I9/iOxqm9//kg5er737RV0HeTJqgqyCbP4gXE9VpLxjprq+ntZW69EHo6El2TEXofdK/ksHndIX2EHXL272niKLaPgNcXOSuj8avq0htUS6Wa44VtpSmW9HRmmK71soripKH6+tEHdAooVxuGnIf6tsid1d449Bn3jfNtDJkKoaRTOtlCStJOMEWcbkTfK/+aSc8BwIaFNYtdrixes8e5w4BlW4GrMRUTbizHGVsSSyL31mrY4W7OPF+4kZ6x9FpFpoaRCyM5z45B9FFcTcsz7Q7xuPe0jdrLdFUGtW/oAWo9kMlwnK+uvsODx53tnqOQHhWIT9iCDLP+qlbqcHngG9V3Kjx4JFKNlhWG6yC9OiYVU68/coYnSmS+2LadKAKeEhB4RI6Wai5aBALysoX81vcbjMgNKL5sUsbM6alyyEI/PqlOrpNSiunZWxC5nfXzaXcgFKTfq20bzRSAcznIPnK/zzsw6meuw1xhtVC2maoHr84rtTvMCdzT1sXGOPaArrfhESjOkjLubL3StinwL954lNwpZ5IrM8vZt4iNXl0sLMSZFkpdxvI6+nbC6G0eEvj40qnz+jE5a61yDduCP6aerhxPs6lhLsjk=\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 38,\"candidatesTokenCount\": 41,\"totalTokenCount\": 683,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 38}],\"thoughtsTokenCount\": 604},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"8gCzaajlH53Uz7IPmdH08Q4\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 5.357591083s + duration: 7.504291167s diff --git a/providertests/testdata/TestGoogleObjectGeneration/gemini-3-pro-preview/simple_object.yaml b/providertests/testdata/TestGoogleObjectGeneration/gemini-3-pro-preview/simple_object.yaml index e1f143aaf41f081f15c09f7ac9cca3efb2433334..a44808d4a65b00f28664450ad11b303369369e65 100644 --- a/providertests/testdata/TestGoogleObjectGeneration/gemini-3-pro-preview/simple_object.yaml +++ b/providertests/testdata/TestGoogleObjectGeneration/gemini-3-pro-preview/simple_object.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-preview:generateContent method: POST response: @@ -30,8 +31,8 @@ interactions: "content": { "parts": [ { - "text": "{\n \"age\": 30,\n \"city\": \"Paris\",\n \"name\": \"Alice\"\n}", - "thoughtSignature": "EvQDCvEDAdHtim/cb1dWV6U1RcEIEknDD+tQ7jQ1cgOCFASlsLpobD0ejF9JGoUh6SZgWrjo54SGYwoEHM2DTRHS5UV44kUrVhIqPkXIsxhNZJyjplQsuL0+JJ3jriwV7dMSx3N6sFeTMzmFWrjzIXWsIG/S6yscqlMp9awgUisApHJXiQmTHsfCh4kxHdLsCuCl+WFrxYRTmGpsgNtgYhNFFw5xUAFtzSocFvlIepFglzOI4ccIrXEn32g2n0bgvq6CX4p2aBDRAcdRztxlblo0cUSRjDPQCsj4rRMpY2yeSI+PIXwsD+w8Vfy4sjGBafSh4bRnoQhc0U6SFRnEKaVxiZhoeWKhSc6usmjcuQDSR8mMFvVul8lsY3vPgn/KC/QCrlIwVYBsLMbhhsG9/LAeijGFzuYRX75D4pVvHxxWyEgdbvHrhT1wVmNJz01F+ZzwrtdWZjMiojhQAMWL8V9ujfQcrBG5JA2oRK/K18fW67seVo2BB3t0Us/jTTULNIqtp7mFz2JaK659n8YOe4IsMXHcQJmFxF793KNGdsQpkyACW9zENV+Idjh7zeABKrpXjmKgJ3wpdhQirzbwNuJG6gphCLDdUUeUUvjSQACjwvtJ0DWdLbJU65WEaBVTLf+hig3mEpwMANItd2caBaU7+fXFBH4=" + "text": "{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}", + "thoughtSignature": "EsEHCr4HAb4+9vspyEj0mfPBpYCAMq/8S8uo1minbssZnBuLDoZUz1/V8LGwU82UaE34aVCRE+MTi3Tw8+Re5wFTiE1JbEMmHafHt8dWbqW2NSd78cj4VHF6EAVsB5BcYvWgSQV/hBaFXrItGnQVdiPkZBTx10QpqMfG0JQbs2t1hik7861Hr0dzJEjA5I22VfH6CoysS28TTYGNSYxJZFD0+UQwnNiMA7iJix4rSHlgBivr8MTBWnX50h1vfGAjrsDLDxrl0JUEz4DtMsJ6tPacJRabhErtpGCC84NniATSJvCtg5+21+YdvRHY/cajrmwBCUquMS6LJGy65G3Fz1shNiTn0ZtA9v60kxubLzNtpZYrLPFgq+l6lSmjaFb83FXmY3Cfzn2uOwRJKbjwi45/xBy2vzN9ag20MgjAnZ4lQ8/egGCEtm3HERi9nOhC6nM8VQk23v9IFKbV/G3EiUs4k5LwAwNyytYrZRmjOUytxZGhbA9IMKIaSoIvfIAMNp3QU7QPpkCgLu8crCCHFAh47dAGb+DFFTgkJpvCs3oMLINOYZANjcnYGuOVNRnR9Q0ZYdZbpetZubV5aSFd0g4492sshzDnv9pQayCoMIZcIhq9jIVceMrayfxKYnrDv91eW1mtH2eZYpSHb9D2sBHnFBS0MfJUjHSYbSsaX+a6kvzubvRLXAP6XyG73vEcnE0c2RBXkAsNCryiW96sdkDQ++50HCJu0YSzATyLXt7598/2jLBh4Y2hqNJYxDs3mweJpxcUwiQFVAhuQefcqRLhP5B0hvChfwYsYwQx/MqOnf5dqHZls+PgfIwDVlCXd39PQQE+CuKXkBj1pvXIvIRrWBniQmU23Hdj24Kj5o9oosabmwZEssf3yg/+7s6yHxA5tRHny8zzYReojLWOMp276qbyWh8U171jZ5huRkAhsi74RBSmy0dWnXpHmTGzIO/Wl8KgvAv4GTxk/I+KVilh6gmvccgE3G0kYJvxoWs5W85UvBzkuVVCEUFawznIqHIlW0Bst4+tug3BJ0VXC0Wc/Ld8Ke2tBhTsj3WR90c76+PUlpAZADP38/GfM4E0Vw81MVEHsBEKfZdSiTOWkQsyruk84o0EN7945U0Ny46un4JdXpLt6PmY5Vs0Kw8jg6PF8SlZJ/FJaDTyd77MKFmBvXZMMrfV/BPPyV/I1lav6yIC65phF/uhxUyC5iIdIOma6praUNm0tmpomzTJmVeTsELo8Oy4Js00S0EnmBR2MeNvQKRv4fbhD6W7YEDXqMu5mg==" } ], "role": "model" @@ -42,22 +43,22 @@ interactions: ], "usageMetadata": { "promptTokenCount": 20, - "candidatesTokenCount": 28, - "totalTokenCount": 183, + "candidatesTokenCount": 14, + "totalTokenCount": 310, "promptTokensDetails": [ { "modality": "TEXT", "tokenCount": 20 } ], - "thoughtsTokenCount": 135 + "thoughtsTokenCount": 276 }, - "modelVersion": "gemini-3-pro-preview", - "responseId": "s6Idaf6qKo-7vdIP1aSIwAk" + "modelVersion": "gemini-3.1-pro-preview", + "responseId": "4ACzaYupBdLiz7IPuISqgQI" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 2.925005834s + duration: 4.748026459s diff --git a/providertests/testdata/TestGoogleObjectGeneration/gemini-3-pro-preview/simple_object_streaming.yaml b/providertests/testdata/TestGoogleObjectGeneration/gemini-3-pro-preview/simple_object_streaming.yaml index 0c9c62a6be98a9b6e3a6cce1a06b2af0f5ac3ea8..ef4a680f502db6eb1d998159b2737e8080d56ca0 100644 --- a/providertests/testdata/TestGoogleObjectGeneration/gemini-3-pro-preview/simple_object_streaming.yaml +++ b/providertests/testdata/TestGoogleObjectGeneration/gemini-3-pro-preview/simple_object_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.4 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-preview:streamGenerateContent?alt=sse method: POST response: @@ -25,10 +26,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"{\\n\\\"age\\\": 30,\\n\\\"city\\\": \\\"Paris\\\",\\n\\\"name\\\": \\\"Alice\\\"\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 20,\"candidatesTokenCount\": 23,\"totalTokenCount\": 426,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 20}],\"thoughtsTokenCount\": 383},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"uKIdaYWJBMmNvdIP66uD6Ag\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\\n}\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 20,\"candidatesTokenCount\": 25,\"totalTokenCount\": 428,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 20}],\"thoughtsTokenCount\": 383},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"uKIdaYWJBMmNvdIP66uD6Ag\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\",\"thoughtSignature\": \"Es0MCsoMAdHtim/2g80u7MPzJwy/NBB/OVelAlwSxB95f65Celfa1/NHwKSg6XCbZHl/bLY0pCOBkUqKWnCRwQ9jZ0a18hccEucQRd7QQVf4YrPw4w/rXtiu4kVwtuuuRCoRl/A+bCTu+e70RKHqemiAfvNf+DepnpF9H9vz3BzZ2PXKSgZaOT6PswiM9xXmC6Qv22HN1uxYBVZaDmZGRLmQCqQbgNSXX1+oTcLYue8zNeyhZLtowrJtqSAWnriTV6zda6ANPwhh0V0ADVUgj1wz1/OAHqE5qdHbX5+ksRAjieI4s/Ea6eDRzURdo17+i1zHtH2ajpe1rsMVu1Ft4ng9eQJQXG+dw00jPoENwoO41cc6cOktVOiVNRszlQsJlt3SjZFzfQMJr9UdYHD3awzA1SSvPyQ9WKEUuJDKK3akyfi30frITn9ZxNcXQ91fEiZ8GWLn1oZCKMss7rdkyJ0pfwobASs4CBaqFsZ/6lzAhH0eR3IzrHD3KxJniSfazd01Br0sfJnEUa/GbDSPybRhboleJMsiw7E9kwdEwdUcGbh0ZFxb/6tMN6s165S6v+I3TI28aBw89HzzHFpQv9WGl2V/R2SxUNvNDQPydB68G9LXjnUNBU18I7VSXACvtuqONA/o3r7oBr5VF/WzqwiWODzOpmpB0zkFloPYCNc633dmThxuMyU0N++tlGwtZkTfzh+8Y1Scba4YrPUvLp0AvxDKnu2Hs71/qc/w2fl9c0Ihz5ilIFEZlxDJNfqX4Zzmij6gxq7DwbbHKPeHdQ2sWv7XTK/HvjDA0FvKFVtGX4w3z4T8MFg7Uqe1lk26MmepSdkcJ8sjsI0yOZfWngYCgYN0L5HqqqCd9JbqCbnQmfRDXxtYEOgMehMD1q8xtiM8J24LcTYZSBEUWxbWrwWSAkmIJcQPJjl9TzfwfBwu5j8OQ7JluZPOw9+1vke01kojvz1mTkPD6T5EumJTi3YdaP563UzKxfy22dlwn5JRx3gNbY7C4/oJkQ9mEz1xo636lnTGhudULavmxUT6v2Q1Hb8A40D5arzQbYI5aufB8kG9oqj7TGFY+lQDuzZN2GA3TW2Qu366VryHMiqDYUjsbeglJbkzNa/d0W7MI9v/x5kO6KgwUa3PufEt7fvUzGNBTL8G8ekh4/ayEjwTkEJx/DGoIb8NtBE4ckM2KOBSY0yEiU6WeH1GQabkb3u6kaXbgIq+B3/t+UuuFHzM6CtBZYjYw/WB4x4Xo1yGALD+IJhO7eG8cYTzmVDPQQb815SrPyoqJ2Dz9FcqxOSymDjcz37NpKJ9Y0phpUNeQR/yaVHa8UPEB0kzwLTpqtj1zDPQKEHdnhxv1iVpGF09gqx4myqVMU3W4jnpDGtaqKSinxmY3AeOsb9vKwvWHXO52MITYOTAQ6fO8IKYimiwLQGVrEGRoEnSHYGLLK0YIGGXLfaatcOMbj8yQcmkbfIip6iRu/qtZnBXD54X8A6Uus7B2CgG9yNGg0k9DLll3yRV2eofFmARP4K8cDYAttaRsuifmcyP5Wf3gduuuIWZZFeINn9ee2+AnPXPU40ukWHyAi5j4Vud2r410QW5856Gtq31wwIEVZ1h8gspZrmiofR3j2Ly1Rj/F/gFt9npHZqRFwMtRf2/mdIEa3RUZnQiv2zx1EdM5magJxMrwJiQ+P+l/ggFAzBTTGLRUg5bQR9wU14/y1Xj6zC5YVqKL2GXNRyzOZzP/kWXNiXVAPJRKOGCULKbVWEuCZeCrCGU8a7PWy2iqC6nr8eCZGKKc1qeHIhCbQmYt0qBGveQIerIs9QempHjLcMFg0ERQxNi1v++uCGjLQgzGgPV5IOEsvuwhVP9SPtx/Dp25jwgsymz67c0goB1RcBkdtWdLcYj9kZNoUWw7R6Jo+7RXLyWbZQ6IrO4Ux5BrmiGfmzeUIBAu6JEisxmaSSy0O36PfiK4VmTmr0kRBwTck8/LqLa8ap+D+GApMkYylH/7MhNkOH1816sZYqmu/i8HnqflJjDwbSLxKQowA6cB1y0GbKTsLa9MWav05l9NjSpUajsPPlKaFra6CQyIjLAoC6CtGKZIaaesofEq3xIVG0C7NHVt4iIEuoqizhJi2JZwZDGp5PXNxwSRrR4M6nSTw8TeiSnvFo=\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 20,\"candidatesTokenCount\": 25,\"totalTokenCount\": 428,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 20}],\"thoughtsTokenCount\": 383},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"uKIdaYWJBMmNvdIP66uD6Ag\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"{\\\"age\\\":30,\\\"city\\\":\\\"Paris\\\",\\\"name\\\":\\\"Alice\\\"}\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 20,\"candidatesTokenCount\": 14,\"totalTokenCount\": 322,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 20}],\"thoughtsTokenCount\": 288},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"5ACzaZ__IeLmz7IPh7_F8QE\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\",\"thoughtSignature\": \"EuQICuEIAb4+9vvJKGZmdmSaWwutI6ZYB3NqBsJaM3J5+1D2Kj7FAdIk0+U1ryJTgay2p+JujW/GKxSs1NnCbfAYpyRdsPsbRHPFWVeO4u8gue54KOFIDf1S71YdhI+x3dTB5zkExpnNxqcQmSHg42v+xvYuQZY3moWgkhX8P8MFjmLw2BNXHeBAnmgf9MeXuyXolDrhQTj5ScQbxDQQqsFsJiBk0jax7DElmXKVE4HZS0KY/SJJi5wQAuxQlgu/HOsZ45vCh7vfA2zyKqzAjxiYb8re5zSew+9SvaIyVdKSnH116ZQpWAEGDmHpELMmoprfjG+DmsmF3Ecm5LyWdxGtdV5WqP8khqIp5m2NthiOzjaMcNF+03GpFlXvrGj7IiH7WP1JbQpAC9kyvQejmG8/wCatXTv50wdZHBZ9J2QOkck7yolu83VGWgXd01yu7RQ44qXv7EyA8B95PipAMq89QjumZ2uznGyYT8ayFiES/LsfZ1nWCqrLHPd7Y5f2/9UayOmlg7GU+y9gNGYuSiSF2kkTuImI2d8t6D+KYrtAKu6aTPH8xVK1+NidjIZblAhqwWteCfcC2CeG+3koG/CbQC7r2oZxiI6OPRSPCJ0OpVEOmLSHuz2sjYn7Tkz60ZM3qRkJmDMoQH5YLNha5FNqUhtxhr2XSAhWbFcFtull27DL3Sw3vE6VxIhrgUMwXJdAr+HEeQEYQN00naVJM6cfqts5fCjmmoOOtfEsdCrWKUfLyhIc7qJqvimElQI9Lo9J21GXDti56PnG32mjOtWMQJkh44Rdq+IXx8BiSPZD4m87mzuZB7zjuxf+jO37XuybQp0jujmdQr1rNZ7jYqfl83XSvt9nxZWOOMcPpBlL0xemTtWTj70rm731xAqGQuu+Ex+ftMHDyEa06pOaWJ2FVzu8TxKEIL9MlguBIjoqXPYtIeeanj4WaY3qpOd+ynE1+M7wmmdUhaat9N/bf+6DK5xpruHGFJLpmoRaUcZK78TvSh6/n8K7OZdO12uX/c36Zx37JZw92TbzK7T444oV+Dcqm7wpB50zpMkGnwmRaP65m766vSeiWJA/WLwTr7WYqDcqkcLaKlSz5PeoUSK/tuVWqhmWtcfVPl1LK0waBWS7oONu4LQv7IzqirE9SmC83exhBuv+PaYB5slZBOlHNiFr9ZdBKcq31AnN7MkjlSCVYrS79pnbdUl83P/zwSHlhKcqkRUQlu+guFRLvmMgu8ta7CHUgs1OnQFNQda1QB9CPzFJe+DeoajuCypyNJ4iLMA+m266+5EaZfzNDeIQHjQXw1SlbbsFn7irlTLR+2CW5klXCI3+1jhF3VIhlu8RLKqzW6JfF81PEsD7lQn4otAI4SLjh5w+BCAZjeTpFQOfrt2GtV+hicYocvBNQEEOJKvvbT+UvFqSQjOIjWI9y3ulfiUMqtsueyC/5vJ7qleCMh0lUB+tB0AI2d8h16dK9RCkPx5loEFxN1Fbm8w56zaLD1Y=\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 20,\"candidatesTokenCount\": 14,\"totalTokenCount\": 322,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 20}],\"thoughtsTokenCount\": 288},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"5ACzaZ__IeLmz7IPh7_F8QE\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 4.351121s + duration: 4.386368959s diff --git a/providertests/testdata/TestGoogleThinking/gemini-2.5-flash/thinking-streaming.yaml b/providertests/testdata/TestGoogleThinking/gemini-2.5-flash/thinking-streaming.yaml index 1c582a472e4a32aa34254890e3236034c0b4413f..53fbca7eac5309262a063458972062e597f6cfcb 100644 --- a/providertests/testdata/TestGoogleThinking/gemini-2.5-flash/thinking-streaming.yaml +++ b/providertests/testdata/TestGoogleThinking/gemini-2.5-flash/thinking-streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.47.0 gl-go/go1.26.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:streamGenerateContent?alt=sse method: POST response: @@ -25,22 +26,22 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"**Determining Weather Location**\\n\\nI've determined I need the weather information for \\\"Florence, Italy.\\\" To get this, I will use the \\\"weather\\\" tool. It takes a \\\"location\\\" argument. My next action is to call the tool with \\\"Florence, Italy\\\" specified as the location.\\n\\n\\n\",\"thought\": true}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 54,\"totalTokenCount\": 106,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 54}],\"thoughtsTokenCount\": 52},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"e_-dafyqMbqCz7IPtZzw-Qw\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"weather\",\"args\": {\"location\": \"Florence, Italy\"}},\"thoughtSignature\": \"CiQBvj72+xhpHSwaiE2z4k0+iM8cB8J/EDqbIhEs4R2d7FlQ0YkKYwG+Pvb70y4a04+KpbQReMlGpMk8CIUXVwr3i6DFALjGemIj+6m5L1K7kWfW0L2lWOCZStD5f5i4XQfMqyY+3/29VksqkB18v/YWUtWH8mtovWgnRl5eVgnjYai6z4sSr7eqBQrCAQG+Pvb7ISCCctl/xvb5jVVLz9GObHzP+VhteNwg2cybmJVmHm7fw9PE1e4BYg+Sxd5BB9pM4PQ664DV79ulddpRzh6+WRdXinfuDY4Gmo9CFW00eYd0SpqJZpJHdm4wzJmjT5rVaXALITgmUz//P4+M4ZFhRnx8vA539uw8ZKP+IunUvCrqo2OHBgMUybPUBZSlM8diOo4AxHGMdUQlGdsbF8aHawGYgTaUO9tim3VvJSTQnygjwVMKTh1Mjl8b12JC\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0,\"finishMessage\": \"Model generated function call(s).\"}],\"usageMetadata\": {\"promptTokenCount\": 54,\"candidatesTokenCount\": 14,\"totalTokenCount\": 120,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 54}],\"thoughtsTokenCount\": 52},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"e_-dafyqMbqCz7IPtZzw-Qw\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"**Determining the Weather Inquiry**\\n\\nI've pinpointed the user's intent: they want the weather conditions in Florence, Italy. My plan is clear – I'll activate the `weather` tool. I will set the `location` parameter to \\\"Florence, Italy\\\" to obtain the relevant weather data. The query seems straightforward and easily resolved.\\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\": \"zwCzaYWfAbnoz7IPmc_m6Q4\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"weather\",\"args\": {\"location\": \"Florence, Italy\"}},\"thoughtSignature\": \"CiQBvj72+y6VX8BA4jMLQJOJvw+XWxadOcgaygxn/UK4Wl8SjCEKZwG+Pvb7Gfy4jPaJj0DRut6taEkNdtSZxSjfNWcnSzfOegiWPYt8ESlIwsYXa0gyK1qw8k77vXOl1efSI2IaZ+csWYLR8nNVHPDSuqIrYpqDOw2HolANfK3RhfSH7gj8KhfU/7/5MT4K6gEBvj72+0BHGlipqElObHh6c5pjNlcuG2Y10iFyHng/Gizmu18FkezguXlmR/smf3nQOuUv7wC4cOvxliBYuSEJIEOSbw5RaEFVjvwbHlOgr7Jfq0ltXOsBmpey/NK+VlQ9UMuPqwyTwlzA6qW+SGwQ4VSTQUZDzmWCJ24MHxcPoMIfeiGMsOsf3jrqLONcBrxw8YeszxFuXFg95qYOVag3Sg4WMgLq4t1e7xorL2bnCcu+faOuV2Z30nVhogr3JcBMiXhXClKxIrbFr3bUyCYlL8H3h5tg10v9a5Zca0HJki7AXxFGMI+lgsc=\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0,\"finishMessage\": \"Model generated function call(s).\"}],\"usageMetadata\": {\"promptTokenCount\": 54,\"candidatesTokenCount\": 14,\"totalTokenCount\": 130,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 54}],\"thoughtsTokenCount\": 62},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"zwCzaYWfAbnoz7IPmc_m6Q4\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 1.475852417s + duration: 1.633774375s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1234 + content_length: 1294 host: generativelanguage.googleapis.com body: | - {"contents":[{"parts":[{"text":"What's the weather in Florence, Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"CiQBvj72+xhpHSwaiE2z4k0+iM8cB8J/EDqbIhEs4R2d7FlQ0YkKYwG+Pvb70y4a04+KpbQReMlGpMk8CIUXVwr3i6DFALjGemIj+6m5L1K7kWfW0L2lWOCZStD5f5i4XQfMqyY+3/29VksqkB18v/YWUtWH8mtovWgnRl5eVgnjYai6z4sSr7eqBQrCAQG+Pvb7ISCCctl/xvb5jVVLz9GObHzP+VhteNwg2cybmJVmHm7fw9PE1e4BYg+Sxd5BB9pM4PQ664DV79ulddpRzh6+WRdXinfuDY4Gmo9CFW00eYd0SpqJZpJHdm4wzJmjT5rVaXALITgmUz//P4+M4ZFhRnx8vA539uw8ZKP+IunUvCrqo2OHBgMUybPUBZSlM8diOo4AxHGMdUQlGdsbF8aHawGYgTaUO9tim3VvJSTQnygjwVMKTh1Mjl8b12JC"}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","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"}}]}]} + {"contents":[{"parts":[{"text":"What's the weather in Florence, Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"CiQBvj72+y6VX8BA4jMLQJOJvw+XWxadOcgaygxn/UK4Wl8SjCEKZwG+Pvb7Gfy4jPaJj0DRut6taEkNdtSZxSjfNWcnSzfOegiWPYt8ESlIwsYXa0gyK1qw8k77vXOl1efSI2IaZ+csWYLR8nNVHPDSuqIrYpqDOw2HolANfK3RhfSH7gj8KhfU/7/5MT4K6gEBvj72+0BHGlipqElObHh6c5pjNlcuG2Y10iFyHng/Gizmu18FkezguXlmR/smf3nQOuUv7wC4cOvxliBYuSEJIEOSbw5RaEFVjvwbHlOgr7Jfq0ltXOsBmpey/NK+VlQ9UMuPqwyTwlzA6qW+SGwQ4VSTQUZDzmWCJ24MHxcPoMIfeiGMsOsf3jrqLONcBrxw8YeszxFuXFg95qYOVag3Sg4WMgLq4t1e7xorL2bnCcu+faOuV2Z30nVhogr3JcBMiXhXClKxIrbFr3bUyCYlL8H3h5tg10v9a5Zca0HJki7AXxFGMI+lgsc="}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","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 @@ -48,7 +49,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.47.0 gl-go/go1.26.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:streamGenerateContent?alt=sse method: POST response: @@ -56,10 +58,10 @@ interactions: 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\": 136,\"candidatesTokenCount\": 4,\"totalTokenCount\": 140,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 136}]},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"ff-dabnuEdadz7IP5KOCgAI\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \", Italy is 40 C.\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 136,\"candidatesTokenCount\": 12,\"totalTokenCount\": 148,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 136}]},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"ff-dabnuEdadz7IP5KOCgAI\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"The weather in Florence\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 146,\"candidatesTokenCount\": 4,\"totalTokenCount\": 150,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 146}]},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"0ACzaenoJ4Hnz7IPzoP0gAw\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \", Italy is 40 C.\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 146,\"candidatesTokenCount\": 12,\"totalTokenCount\": 158,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 146}]},\"modelVersion\": \"gemini-2.5-flash\",\"responseId\": \"0ACzaenoJ4Hnz7IPzoP0gAw\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 818.421583ms + duration: 558.818458ms diff --git a/providertests/testdata/TestGoogleThinking/gemini-2.5-flash/thinking.yaml b/providertests/testdata/TestGoogleThinking/gemini-2.5-flash/thinking.yaml index efd084aec4e30ffdcb0b11fec6bfa0430c7ffc10..e37362fafa1b574daa866d5e1b9f6e66b50e59b5 100644 --- a/providertests/testdata/TestGoogleThinking/gemini-2.5-flash/thinking.yaml +++ b/providertests/testdata/TestGoogleThinking/gemini-2.5-flash/thinking.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.47.0 gl-go/go1.26.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:generateContent method: POST response: @@ -30,7 +31,7 @@ interactions: "content": { "parts": [ { - "text": "Okay, here's my thought process regarding the user's request:\n\n**Analyzing the Query: Florence Weather**\n\nAlright, I see the user wants the weather for Florence, Italy. That's straightforward. The key here is the tool I have access to – the `weather` tool. I know this tool is designed for precisely this kind of query. Crucially, the tool documentation says it requires a `location` argument. So, my task is to parse the user's request and feed that location information to the tool. It's a classic input-process-output situation. The \"input\" is Florence, Italy, or at least, that's what I'll be using for the query, and the \"process\" is to send it to the weather tool with the location parameter. I'm ready to query!\n", + "text": "**Analyzing the Weather Query**\n\nOkay, so the user needs the weather for Florence, Italy. Simple enough. My initial assessment is that the `weather` tool is the right one to use here – that's the obvious call. The critical thing now is to format the request correctly. I need to make sure the `location` parameter is explicitly set to \"Florence, Italy.\" I'm mentally checking that the phrasing is precise and unambiguous. Now I need to actually execute that call to the `weather` tool. Time to get this user the information they need.\n", "thought": true }, { @@ -40,7 +41,7 @@ interactions: "location": "Florence, Italy" } }, - "thoughtSignature": "CoACAb4+9vsBHFxHrQuonIUfSR6Nm17lrRyUzuM6N/Hcp+/BSAONP0z+zhyo4cp6LNYfVevZZJjYIbDZrdqY/Quk9hwF1CaGnxmSMl5S6MbEYyIyNckE7tHMcNMJu3ODw37XOzCltw40lrTQvZmvkSrmMy9+X45L0RXDOJf9mYy9V3BCwPBoFK5uJr+BsaXb/DAbbFoPJXKuN++xTywS1smdJRB8YcVq/oGdbgB8RY0+/2EfNWrHipiSq06vjvwuXyCJFdziEtsxWNqv3GvqCv+M7BfE3P3EXCRbiNfDmfLjilifRs1Xw12rK7wC9TMUS7b52d/k/Js/StKn1ww8CtRffA==" + "thoughtSignature": "CpQCAb4+9vsbZAixhGYxpv51LxQIXKkJ+wpEeroKwwT6flW1iLgNdkBBOXX3t0H7yY9uz1YQc/so1trK7GBhsYR0TAaVbP95Jg3a1D/XMGdR5hUvISOXptRjgpO7ieKQW4k9jpEe9+f1OrZTYKA8CZisCmn3xWBLBh+DrUJSP2rT521soXu/d7KG0aA7LIw+Bz61786v/8Ih7YWukxvIC/nli1aTivHN3Pw3pnNW5d35/5OSMA0rXlYf/ioz9+Y/jM6t1kD6HJCz6RFg2+Sck8wNNhCcL6+3dVWqnl1O8CbyT8RYL7ZFCGNWu1dpmuosLcEIvYk4zKRteCer9WaZ6CDIE4M1jcYd87H1veEsLqtV55Fyv/MY" } ], "role": "model" @@ -53,38 +54,39 @@ interactions: "usageMetadata": { "promptTokenCount": 54, "candidatesTokenCount": 15, - "totalTokenCount": 120, + "totalTokenCount": 123, "promptTokensDetails": [ { "modality": "TEXT", "tokenCount": 54 } ], - "thoughtsTokenCount": 51 + "thoughtsTokenCount": 54 }, "modelVersion": "gemini-2.5-flash", - "responseId": "eP-dacvXLKScz7IP_bysiAI" + "responseId": "zACzaYXlFezjz7IPy5DMqQI" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 2.312526792s + duration: 1.841646833s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1134 + content_length: 1158 host: generativelanguage.googleapis.com body: | - {"contents":[{"parts":[{"text":"What's the weather in Florence, Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"CoACAb4+9vsBHFxHrQuonIUfSR6Nm17lrRyUzuM6N/Hcp+/BSAONP0z+zhyo4cp6LNYfVevZZJjYIbDZrdqY/Quk9hwF1CaGnxmSMl5S6MbEYyIyNckE7tHMcNMJu3ODw37XOzCltw40lrTQvZmvkSrmMy9+X45L0RXDOJf9mYy9V3BCwPBoFK5uJr+BsaXb/DAbbFoPJXKuN++xTywS1smdJRB8YcVq/oGdbgB8RY0+/2EfNWrHipiSq06vjvwuXyCJFdziEtsxWNqv3GvqCv+M7BfE3P3EXCRbiNfDmfLjilifRs1Xw12rK7wC9TMUS7b52d/k/Js/StKn1ww8CtRffA=="}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","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"}}]}]} + {"contents":[{"parts":[{"text":"What's the weather in Florence, Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"CpQCAb4+9vsbZAixhGYxpv51LxQIXKkJ+wpEeroKwwT6flW1iLgNdkBBOXX3t0H7yY9uz1YQc/so1trK7GBhsYR0TAaVbP95Jg3a1D/XMGdR5hUvISOXptRjgpO7ieKQW4k9jpEe9+f1OrZTYKA8CZisCmn3xWBLBh+DrUJSP2rT521soXu/d7KG0aA7LIw+Bz61786v/8Ih7YWukxvIC/nli1aTivHN3Pw3pnNW5d35/5OSMA0rXlYf/ioz9+Y/jM6t1kD6HJCz6RFg2+Sck8wNNhCcL6+3dVWqnl1O8CbyT8RYL7ZFCGNWu1dpmuosLcEIvYk4zKRteCer9WaZ6CDIE4M1jcYd87H1veEsLqtV55Fyv/MY"}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","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"}}]}]} headers: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.47.0 gl-go/go1.26.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:generateContent method: POST response: @@ -121,11 +123,11 @@ interactions: ] }, "modelVersion": "gemini-2.5-flash", - "responseId": "e_-daeLyAsDhz7IPvpGWmQ0" + "responseId": "zgCzaa2gDKPlz7IPwOnE8QE" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 759.335917ms + duration: 816.051125ms diff --git a/providertests/testdata/TestGoogleThinking/gemini-2.5-pro/thinking-streaming.yaml b/providertests/testdata/TestGoogleThinking/gemini-2.5-pro/thinking-streaming.yaml index b83d18c074c6b94608e70279d5463178f3cea970..6c45d6b33a5e708d42d7fc2a61edaa159b552d38 100644 --- a/providertests/testdata/TestGoogleThinking/gemini-2.5-pro/thinking-streaming.yaml +++ b/providertests/testdata/TestGoogleThinking/gemini-2.5-pro/thinking-streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.47.0 gl-go/go1.26.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:streamGenerateContent?alt=sse method: POST response: @@ -25,13 +26,13 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"**Mapping the Request**\\n\\nI've successfully mapped the user's weather request for \\\"Florence, Italy\\\" to the `weather.get_weather` function. I've also identified the necessary parameter, `location`, and determined its value should be \\\"Florence, Italy.\\\" I'm proceeding to the next logical step.\\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\": \"g_-dad7bAqrVz7IP-de64Ag\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"weather\",\"args\": {\"location\": \"Florence, Italy\"}},\"thoughtSignature\": \"CiIBvj72+xPAl4QAfiyiRNjOwQZuUww0ylKAdQZTMNWmXT8aCmcBvj72+z20MdGWkjvpvQq0E3VDMDkiuWpOdKUckkZi4z5L3zpJ8Uzi+5wTqtP3bFLTWoGEcZynphYSNOm/BL7Rs/b2dwtPnvV5K1spNtUdXkA2U+zf5WED6ewfHXf4KplcfsGaLzMjCoYBAb4+9vvGhZgA1rF9408TNbD9AScCFJ68tsgkt0NU2bJbHZlGfASQr/LkM+vzpLSIKpRYbdIqoi/1JTcdsTbW/mJJ2jk6LQ2cQ7qznXfGBreudI0jQPKbrIvwYDBs4GoM7+5wCIvuKoXX0KSJfg7bpk9CffKFbPjSFbVopU1XvEnQVVHY7C4KcAG+Pvb7iqruwYdznTRkMrOob04XRBlOeOKtJC8S6NGf+TjlZ1d9l6zUnT9bCklqOclTLWivcNtacnNY0z8sOXrcRy3p/2VnAiKXhPQTdfPs0oMGK+cJQJN2RUcXBBSj38JfTf5tg/ANMYIVsUC7EFE=\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0,\"finishMessage\": \"Model generated function call(s).\"}],\"usageMetadata\": {\"promptTokenCount\": 54,\"candidatesTokenCount\": 14,\"totalTokenCount\": 132,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 54}],\"thoughtsTokenCount\": 64},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"g_-dad7bAqrVz7IP-de64Ag\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"**Mapping the Inquiry**\\n\\nI've successfully identified the user's request: weather information for \\\"Florence, Italy\\\". This translates directly to a call for `weather.get_weather`. The key parameter, `location`, is readily apparent and will be set to \\\"Florence, Italy\\\".\\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\": \"2ACzaf-8I9HRz7IPlMmB4Qk\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"weather\",\"args\": {\"location\": \"Florence, Italy\"}},\"thoughtSignature\": \"CiIBvj72+9zt1F5hZ22f1eeW7Px6AYZtmGWkRn98itxeN1glCmcBvj72+7MEN/axOHSjBzj3ketZPeDZru98pfgPDRSPRire30CemwwkjWoP6Ejv0DwglpMfSVw6C7oT2xm+otusdJ8QznRot3m3zOup17INxBbQkFPAvf9kXN5U7uLCkLPNgeOfCpbJCoYBAb4+9vu+PT2opK2A1Ko4kOZ1ONsRdpEf9pvK8PCiCjiQQjIz/w5NxwrwByC/4dJtsCXdQ3lPKA4fgJjfai0O6+SP6iU4x+outZLLTY0Jxc3awfwSv9HKLN/poOW0njQMZUiMuW49hYgIMNyLfvqhHQwn4+8Xs8yoEN5yBHfJoVeHFqz5z3oKcAG+Pvb7afI/08/QqVFDQHAt7cDrXu14mBkRMbe4hqYevsbRiIOtJeK3RZVsNQHcs0WgA1zKEytXe2Pg5cEjMyRl98DeLSilEVN4ZEAkjx5jcyx3FuuUY73PQ8BYJdoU2QKr9koDZMAnZCPv21/iJpQ=\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0,\"finishMessage\": \"Model generated function call(s).\"}],\"usageMetadata\": {\"promptTokenCount\": 54,\"candidatesTokenCount\": 14,\"totalTokenCount\": 132,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 54}],\"thoughtsTokenCount\": 64},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"2ACzaf-8I9HRz7IPlMmB4Qk\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 2.388863542s + duration: 3.476022333s - id: 1 request: proto: HTTP/1.1 @@ -40,7 +41,7 @@ interactions: content_length: 1310 host: generativelanguage.googleapis.com body: | - {"contents":[{"parts":[{"text":"What's the weather in Florence, Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"CiIBvj72+xPAl4QAfiyiRNjOwQZuUww0ylKAdQZTMNWmXT8aCmcBvj72+z20MdGWkjvpvQq0E3VDMDkiuWpOdKUckkZi4z5L3zpJ8Uzi+5wTqtP3bFLTWoGEcZynphYSNOm/BL7Rs/b2dwtPnvV5K1spNtUdXkA2U+zf5WED6ewfHXf4KplcfsGaLzMjCoYBAb4+9vvGhZgA1rF9408TNbD9AScCFJ68tsgkt0NU2bJbHZlGfASQr/LkM+vzpLSIKpRYbdIqoi/1JTcdsTbW/mJJ2jk6LQ2cQ7qznXfGBreudI0jQPKbrIvwYDBs4GoM7+5wCIvuKoXX0KSJfg7bpk9CffKFbPjSFbVopU1XvEnQVVHY7C4KcAG+Pvb7iqruwYdznTRkMrOob04XRBlOeOKtJC8S6NGf+TjlZ1d9l6zUnT9bCklqOclTLWivcNtacnNY0z8sOXrcRy3p/2VnAiKXhPQTdfPs0oMGK+cJQJN2RUcXBBSj38JfTf5tg/ANMYIVsUC7EFE="}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","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"}}]}]} + {"contents":[{"parts":[{"text":"What's the weather in Florence, Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"CiIBvj72+9zt1F5hZ22f1eeW7Px6AYZtmGWkRn98itxeN1glCmcBvj72+7MEN/axOHSjBzj3ketZPeDZru98pfgPDRSPRire30CemwwkjWoP6Ejv0DwglpMfSVw6C7oT2xm+otusdJ8QznRot3m3zOup17INxBbQkFPAvf9kXN5U7uLCkLPNgeOfCpbJCoYBAb4+9vu+PT2opK2A1Ko4kOZ1ONsRdpEf9pvK8PCiCjiQQjIz/w5NxwrwByC/4dJtsCXdQ3lPKA4fgJjfai0O6+SP6iU4x+outZLLTY0Jxc3awfwSv9HKLN/poOW0njQMZUiMuW49hYgIMNyLfvqhHQwn4+8Xs8yoEN5yBHfJoVeHFqz5z3oKcAG+Pvb7afI/08/QqVFDQHAt7cDrXu14mBkRMbe4hqYevsbRiIOtJeK3RZVsNQHcs0WgA1zKEytXe2Pg5cEjMyRl98DeLSilEVN4ZEAkjx5jcyx3FuuUY73PQ8BYJdoU2QKr9koDZMAnZCPv21/iJpQ="}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","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 @@ -48,7 +49,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.47.0 gl-go/go1.26.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:streamGenerateContent?alt=sse method: POST response: @@ -56,10 +58,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"It\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 148,\"candidatesTokenCount\": 1,\"totalTokenCount\": 149,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 148}]},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"hf-daabsHZqsz7IPxKKgiAk\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"'s 40 C in Florence, Italy. \\n\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 148,\"candidatesTokenCount\": 12,\"totalTokenCount\": 160,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 148}]},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"hf-daabsHZqsz7IPxKKgiAk\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"It\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 148,\"candidatesTokenCount\": 1,\"totalTokenCount\": 149,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 148}]},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"2wCzaeLrEpboz7IPt7SlwQE\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"'s 40 C in Florence, Italy. \\n\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 148,\"candidatesTokenCount\": 12,\"totalTokenCount\": 160,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 148}]},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"2wCzaeLrEpboz7IPt7SlwQE\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 1.252537292s + duration: 1.431613333s diff --git a/providertests/testdata/TestGoogleThinking/gemini-2.5-pro/thinking.yaml b/providertests/testdata/TestGoogleThinking/gemini-2.5-pro/thinking.yaml index 74b2d3ed363fa0690dc683eb22754e45e42ed06b..352ce3f1ec0861a80898c3d47606e129cff8f115 100644 --- a/providertests/testdata/TestGoogleThinking/gemini-2.5-pro/thinking.yaml +++ b/providertests/testdata/TestGoogleThinking/gemini-2.5-pro/thinking.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.47.0 gl-go/go1.26.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:generateContent method: POST response: @@ -30,7 +31,7 @@ interactions: "content": { "parts": [ { - "text": "**Weather in Florence, Italy**\n\nOkay, so the user wants the weather for \"Florence, Italy.\" That's straightforward; my processing path leads directly to `weather.get_weather`. This is a clear case for that particular function. It takes a `location` argument, and that's easy enough. I'll just set the `location` parameter to \"Florence, Italy.\" Done! Ready to execute.\n", + "text": "**Weather Check in Florence**\n\nOkay, so the user wants the weather, specifically in Florence, Italy. That's straightforward; the input string \"Florence, Italy\" clearly indicates the desired location. We've got a `weather.get_weather` function that's perfectly suited for this, and it takes a `location` parameter. Piece of cake. All I need to do is map \"Florence, Italy\" to that `location` parameter. Done.\n", "thought": true }, { @@ -40,7 +41,7 @@ interactions: "location": "Florence, Italy" } }, - "thoughtSignature": "CpwCAb4+9vsnDPVKCBbr2tnMUnEAJFGNMneg95rjCSOs6HV/dxMzyPDGxbqSkXe22liMoinB/fkfQFE9JI121uEeAjCBPYluDcHAuoOR6z3WdK+9x4gLfjsjieoOSGE+x9KkM0iml+XX+RP42tuBsOEn5AQsvr3iUQ/rdo1hanDOSdT0RfNyWmwYdGNAHPFsehZN3FAEuMCKEPS5bVsh6rGMpccdFYLHy9hnLIg0WZFZwSwhmGNSXuBUc6YK71TtMRxe19WuRbrXA4Na2ig9pBWIcOtYwaeTRcYmaZoh5agdiG9G4tWZCQ1Kbxsg1FZ8jXXrlPefL2jwtgDcidWKt3BQ3XvGm1db0I+H08+LOZa6ITpOd0qtIc4Pc2T/EmE=" + "thoughtSignature": "CpwCAb4+9vvjWTfN/coHAtL6RNHuB/D9RcoYaEbOXifBzo42rnPBxgLXlfKKVlWjSujb7uS5VqrErCz1riiaQMDIWmUT6eO5hy397uPpmJTyuud7DY+yEa0wglfCTh+KNPlWvZlDfWGMAGhoI0sUcA1IwSGEmcLHyQ7xFZ30Ze1YxbNO+OGSyJn31RDaivuHWcBLBEPKDsHbJcHs9NJH+kIarQkNTSJAhGwNSPE6hXBtoFpGDrCfFKo7X1Psc3IaJeubv+h1Ox3FS4OErR/Q/sNj52+JUUbRWJ8G6aptVbvzNtHFZMMIeljaEMlxGiBKUiSNeudWDCoPII/q1NY/YwBExXWwxGET1pj0o0YV5vXTw81gkDiyqHrKaWAzkYg=" } ], "role": "model" @@ -63,14 +64,14 @@ interactions: "thoughtsTokenCount": 64 }, "modelVersion": "gemini-2.5-pro", - "responseId": "gP-dacn4HJCDz7IP58yLgAc" + "responseId": "1ACzaaq1BaKDz7IPv92N6A8" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 2.659325375s + duration: 3.139889041s - id: 1 request: proto: HTTP/1.1 @@ -79,12 +80,13 @@ interactions: content_length: 1170 host: generativelanguage.googleapis.com body: | - {"contents":[{"parts":[{"text":"What's the weather in Florence, Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"CpwCAb4+9vsnDPVKCBbr2tnMUnEAJFGNMneg95rjCSOs6HV/dxMzyPDGxbqSkXe22liMoinB/fkfQFE9JI121uEeAjCBPYluDcHAuoOR6z3WdK+9x4gLfjsjieoOSGE+x9KkM0iml+XX+RP42tuBsOEn5AQsvr3iUQ/rdo1hanDOSdT0RfNyWmwYdGNAHPFsehZN3FAEuMCKEPS5bVsh6rGMpccdFYLHy9hnLIg0WZFZwSwhmGNSXuBUc6YK71TtMRxe19WuRbrXA4Na2ig9pBWIcOtYwaeTRcYmaZoh5agdiG9G4tWZCQ1Kbxsg1FZ8jXXrlPefL2jwtgDcidWKt3BQ3XvGm1db0I+H08+LOZa6ITpOd0qtIc4Pc2T/EmE="}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","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"}}]}]} + {"contents":[{"parts":[{"text":"What's the weather in Florence, Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"CpwCAb4+9vvjWTfN/coHAtL6RNHuB/D9RcoYaEbOXifBzo42rnPBxgLXlfKKVlWjSujb7uS5VqrErCz1riiaQMDIWmUT6eO5hy397uPpmJTyuud7DY+yEa0wglfCTh+KNPlWvZlDfWGMAGhoI0sUcA1IwSGEmcLHyQ7xFZ30Ze1YxbNO+OGSyJn31RDaivuHWcBLBEPKDsHbJcHs9NJH+kIarQkNTSJAhGwNSPE6hXBtoFpGDrCfFKo7X1Psc3IaJeubv+h1Ox3FS4OErR/Q/sNj52+JUUbRWJ8G6aptVbvzNtHFZMMIeljaEMlxGiBKUiSNeudWDCoPII/q1NY/YwBExXWwxGET1pj0o0YV5vXTw81gkDiyqHrKaWAzkYg="}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","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"}}]}]} headers: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.47.0 gl-go/go1.26.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:generateContent method: POST response: @@ -100,7 +102,7 @@ interactions: "content": { "parts": [ { - "text": "It's 40 C in Florence, Italy. \n" + "text": "The weather in Florence, Italy is 40 C. \n" } ], "role": "model" @@ -121,11 +123,11 @@ interactions: ] }, "modelVersion": "gemini-2.5-pro", - "responseId": "gf-daYz0NaDVz7IP_-SygAI" + "responseId": "1gCzabW2FLznz7IP7YS00Ak" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 1.360388541s + duration: 2.338408583s diff --git a/providertests/testdata/TestGoogleThinking/gemini-3-pro-preview/thinking-streaming.yaml b/providertests/testdata/TestGoogleThinking/gemini-3-pro-preview/thinking-streaming.yaml index b6dc1375ee8a9c644cf17f2416e0851136a064f0..6703fa394015e0e2f16c472990d49726afeb2c3e 100644 --- a/providertests/testdata/TestGoogleThinking/gemini-3-pro-preview/thinking-streaming.yaml +++ b/providertests/testdata/TestGoogleThinking/gemini-3-pro-preview/thinking-streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.47.0 gl-go/go1.26.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-preview:streamGenerateContent?alt=sse method: POST response: @@ -25,22 +26,22 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"weather\",\"args\": {\"location\": \"Florence, Italy\"}},\"thoughtSignature\": \"EqoDCqcDAb4+9vtxYT0MyTOcABWD9QZqDpm796s3VmnwFwdFNh/sd/gdkTxOEWPxg1YG5CYfNIr4+IVvBgqtGb5osFqiIEVetBLwdCnZlPCRT5mjeJNvRLN11YqUzNWjokDKsiKMAynCETBR0s5FN+HW8ANlVJiMRTgknDuAAEWBU8X1S7ST0V4KUrK0Qt//hh9njcp3gDabEu3IMKRfUEC9uoicajB+u+EOS7bH8gzR+JqvNqLyzcSb2BTy9JIE09lweuDs2ONAdbOC1EhJpObh7QG3GNy9Wbw2+5MnnOk2NQxY72yLDDl+rTYVeR3U4wQPkFrv9BaoIOOKu2i51JB7kCNVxXrGt3QxpAy4fBULpJ7WamIIEM+zaM7MwVeD1+9pdXSUDvZ9ZT6LmiKBFtG/Cw5RQaHbNxFR7GS/bOYZPv3JaOIUDDfHoWOokFrJ1exTx5b5IQ9a8vAZZhNAHbWT5OIHLkOzjgJGfK3E/KLudlAdUDhJgCR6p/KHQRC11eE2RrvWfoJri+IEW4h4+4P3dk50AZXgslTB4fjdninU1rqLEdarsdhHQ0jl\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 65,\"candidatesTokenCount\": 16,\"totalTokenCount\": 154,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 65}],\"thoughtsTokenCount\": 73},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"dv-dadqKAouGz7IP2r-x4Ao\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 65,\"candidatesTokenCount\": 16,\"totalTokenCount\": 154,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 65}],\"thoughtsTokenCount\": 73},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"dv-dadqKAouGz7IP2r-x4Ao\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"functionCall\": {\"name\": \"weather\",\"args\": {\"location\": \"Florence, Italy\"},\"id\": \"9d532gc9\"},\"thoughtSignature\": \"Eu0DCuoDAb4+9vvdbiOpT/hdj5NfRT0HGI7d3Q7aVsxdntWDDSAKWXd1W9yIApz+DNkxyuQZqEvgwGM6LYZRZE/2z+fKT2HwZqDlmQRTO4vzrBPS5P0Huj7eqdBFa9+XO0oS7Yi5YB18JmoulO+EWsjqqKFj/t3MUBraxQQ8LL15aL+LH1odHwx6iVnYuDkt53RO6bAN3mXghFFajymaMQsCBgRHWiCoCMovUHP7CkMOPhWlH8QN0yuo1x+vvcToSq9c5xd1toNrGCUOziUUOxlYiCzPteckR8xVveXLw3OpCms7+rVoYME6ms/tF2rIKitwGx1GDcDs2UvtKsTCoWH63cipK+Yab1EG4pafOl0nDV8GWx7N3tufNsWD+1Wxow2zbjLJoVHsdsyEU7rmkmV2fHCH2KZug7qNaGtJMr51aMxqfVNOSXyQUhGMhaqbloGd4jFUpwptQcV/JDlREhegNuSI8asmwf0DuI/ftKXN0NlFTrBI8Ey3BCCNjh3XHYwFb5JexKmif5HoQgNDTgKsHn91PoTgXF8kviyWYYbCf78O6ipcPPqA3DKDFC3KN1NAXxw6KDjsu7RPHra8JyaxNS2xFVCaB1WjM0F38+KtI9pLBkzpqgjSc6yoLXm3jP1+V6quuL35Dm/vF6Otiw==\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 65,\"candidatesTokenCount\": 16,\"totalTokenCount\": 175,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 65}],\"thoughtsTokenCount\": 94},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"yACzaZiFOp3Uz7IP577z4Qk\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 65,\"candidatesTokenCount\": 16,\"totalTokenCount\": 175,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 65}],\"thoughtsTokenCount\": 94},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"yACzaZiFOp3Uz7IP577z4Qk\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 2.657040917s + duration: 2.760922792s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1360 + content_length: 1466 host: generativelanguage.googleapis.com body: | - {"contents":[{"parts":[{"text":"What's the weather in Florence, Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"EqoDCqcDAb4+9vtxYT0MyTOcABWD9QZqDpm796s3VmnwFwdFNh/sd/gdkTxOEWPxg1YG5CYfNIr4+IVvBgqtGb5osFqiIEVetBLwdCnZlPCRT5mjeJNvRLN11YqUzNWjokDKsiKMAynCETBR0s5FN+HW8ANlVJiMRTgknDuAAEWBU8X1S7ST0V4KUrK0Qt//hh9njcp3gDabEu3IMKRfUEC9uoicajB+u+EOS7bH8gzR+JqvNqLyzcSb2BTy9JIE09lweuDs2ONAdbOC1EhJpObh7QG3GNy9Wbw2+5MnnOk2NQxY72yLDDl+rTYVeR3U4wQPkFrv9BaoIOOKu2i51JB7kCNVxXrGt3QxpAy4fBULpJ7WamIIEM+zaM7MwVeD1+9pdXSUDvZ9ZT6LmiKBFtG/Cw5RQaHbNxFR7GS/bOYZPv3JaOIUDDfHoWOokFrJ1exTx5b5IQ9a8vAZZhNAHbWT5OIHLkOzjgJGfK3E/KLudlAdUDhJgCR6p/KHQRC11eE2RrvWfoJri+IEW4h4+4P3dk50AZXgslTB4fjdninU1rqLEdarsdhHQ0jl"}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"thinkingConfig":{"includeThoughts":true,"thinkingLevel":"HIGH"}},"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"}}]}]} + {"contents":[{"parts":[{"text":"What's the weather in Florence, Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"9d532gc9","name":"weather"},"thoughtSignature":"Eu0DCuoDAb4+9vvdbiOpT/hdj5NfRT0HGI7d3Q7aVsxdntWDDSAKWXd1W9yIApz+DNkxyuQZqEvgwGM6LYZRZE/2z+fKT2HwZqDlmQRTO4vzrBPS5P0Huj7eqdBFa9+XO0oS7Yi5YB18JmoulO+EWsjqqKFj/t3MUBraxQQ8LL15aL+LH1odHwx6iVnYuDkt53RO6bAN3mXghFFajymaMQsCBgRHWiCoCMovUHP7CkMOPhWlH8QN0yuo1x+vvcToSq9c5xd1toNrGCUOziUUOxlYiCzPteckR8xVveXLw3OpCms7+rVoYME6ms/tF2rIKitwGx1GDcDs2UvtKsTCoWH63cipK+Yab1EG4pafOl0nDV8GWx7N3tufNsWD+1Wxow2zbjLJoVHsdsyEU7rmkmV2fHCH2KZug7qNaGtJMr51aMxqfVNOSXyQUhGMhaqbloGd4jFUpwptQcV/JDlREhegNuSI8asmwf0DuI/ftKXN0NlFTrBI8Ey3BCCNjh3XHYwFb5JexKmif5HoQgNDTgKsHn91PoTgXF8kviyWYYbCf78O6ipcPPqA3DKDFC3KN1NAXxw6KDjsu7RPHra8JyaxNS2xFVCaB1WjM0F38+KtI9pLBkzpqgjSc6yoLXm3jP1+V6quuL35Dm/vF6Otiw=="}],"role":"model"},{"parts":[{"functionResponse":{"id":"9d532gc9","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"thinkingConfig":{"includeThoughts":true,"thinkingLevel":"HIGH"}},"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 @@ -48,7 +49,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.47.0 gl-go/go1.26.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-preview:streamGenerateContent?alt=sse method: POST response: @@ -56,10 +58,10 @@ interactions: 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\": 95,\"candidatesTokenCount\": 4,\"totalTokenCount\": 99,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 95}]},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"eP-dabHAGIWsz7IP8p272QY\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \", Italy is currently 40°C.\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 95,\"candidatesTokenCount\": 14,\"totalTokenCount\": 109,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 95}]},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"eP-dabHAGIWsz7IP8p272QY\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 168,\"candidatesTokenCount\": 14,\"totalTokenCount\": 182,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 168}]},\"modelVersion\": \"gemini-3-pro-preview\",\"responseId\": \"eP-dabHAGIWsz7IP8p272QY\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"The current weather in Florence, Italy is 40°C (104°F). Stay cool,\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 95,\"candidatesTokenCount\": 23,\"totalTokenCount\": 186,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 95}],\"thoughtsTokenCount\": 68},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"ywCzae2oL5ODz7IP29qJmQw\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" it's quite hot!\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 95,\"candidatesTokenCount\": 29,\"totalTokenCount\": 192,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 95}],\"thoughtsTokenCount\": 68},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"ywCzae2oL5ODz7IP29qJmQw\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\",\"thoughtSignature\": \"EtACCs0CAb4+9vvhaZ9sAhdYaVytJYwmXqKqaWpz/eh42dBI7nhCPbwYxYT0MjpBx4xP0Vc+k+Rvpm9Era3U/h9DeLbsgvJiA/x00qpPXPp3lGvSwW/jyqbVjzskp3fHZ5N8wscTWbLpGVG5n8lznGM0gCFq7YISYHKff1PCSWXcXxs6jiJiP4KsMQRzPtjhVAND5AehdypML/dY7z2z9xF8aIt+0nqELeIDAKTnWjC70vo7wrnt6VUEnDiCDP3FnILYV1ZPWIKsK/Ohbqvigto4wTVYTazxUuphChgPK7sc5cc+tOHG6ac98ibym7t08rijSgBufR7VAWdCB03WyVgOIOp+upXtL2V6WFqfu4oo7dPBhI7FoHNo+b0RKcS52ZotTstjEJiVWtkGCCwN4mNgeP6m8tN3+SK1ZYCRq0N7qCbf7RgP0DWA2zlE21lKeyR8\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 189,\"candidatesTokenCount\": 29,\"totalTokenCount\": 286,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 189}],\"thoughtsTokenCount\": 68},\"modelVersion\": \"gemini-3.1-pro-preview\",\"responseId\": \"ywCzae2oL5ODz7IP29qJmQw\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 1.739511583s + duration: 2.711688042s diff --git a/providertests/testdata/TestGoogleThinking/gemini-3-pro-preview/thinking.yaml b/providertests/testdata/TestGoogleThinking/gemini-3-pro-preview/thinking.yaml index 1cc77a94f732f7e5c2233dc665b5b9d36ab5281c..0378bd1c108becfd31544ccd8b1cdd707b4d760f 100644 --- a/providertests/testdata/TestGoogleThinking/gemini-3-pro-preview/thinking.yaml +++ b/providertests/testdata/TestGoogleThinking/gemini-3-pro-preview/thinking.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.47.0 gl-go/go1.26.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-preview:generateContent method: POST response: @@ -30,7 +31,7 @@ interactions: "content": { "parts": [ { - "text": "**My Approach to Gathering Weather Information**\n\nOkay, so the user wants the weather for Florence, Italy. My primary task here is to find the most efficient way to get that information. I immediately recognize the need for a weather data retrieval tool; that's the obvious starting point. I quickly scan my available tools and, from what I see, the `weather` tool seems like the most relevant option. That's a good sign.\n\nNow, I need to ensure I'm using this tool correctly. It takes a `location` parameter, which is exactly what I need to specify the city. Excellent, that aligns perfectly with the user's request for Florence. Therefore, the logical action is to call the `weather` tool and pass \"Florence, Italy\" as the value for the `location` parameter. The structure will be `weather(location=\"Florence, Italy\")`. That should provide the user with the weather details they're after.\n\n\n", + "text": "**My Thought Process: Weather in Florence**\n\nOkay, the user wants the weather in Florence, Italy. Simple enough. First, I need to identify the appropriate tool. Ah, the `default_api:weather` tool – perfect! That's exactly what I need for weather data. Now, what parameters does this tool require? Right, just a `location`. The user's provided location is \"Florence, Italy,\" so that's the value I'll use. Now to format the tool call correctly. I need a JSON object for the location, and then it's `{\"location\": \"Florence, Italy\"}`. Final step: I execute the tool call in the appropriate format: `டல்call:default_api:weather{\"location\": \"Florence, Italy\"}`. Done! I should get the weather data back shortly.\n\n\n", "thought": true }, { @@ -38,9 +39,10 @@ interactions: "name": "weather", "args": { "location": "Florence, Italy" - } + }, + "id": "v3yybtcf" }, - "thoughtSignature": "EoMDCoADAb4+9vvcql04LjFTQa1nTMMudhrlpmFSqgQWtecZs9Gzm8GC6izmq42etV5ICgg5qr/h5KO05LHjo7OT/Y/O6zTq5vweOOvvAZHK3IDBgU7FBiCW5bW+nI6TjhgDHSNPn/Uk14iuv5RGXrH1QgxQ2ApBiLQlEmkjzmzmBUgI0gRmjRX+sDMF0IJu66tmZfkaqvR9Tp2xxEZjJitWL7P6jZvql6JE54UmL8dI02Dk/xnNS76rZiipzg8013aXxfIEgTEHMnsRvzK7QCGaukQ+/DU8GnomhZRYZPEW32OxQEjUyqm10c8o62WPtThyfIUmUBHwc8oojkH/2IT5fRy2nJwvUar3O82/of2miqe/9z7TNTKNK83wl9Gy5R3Gbc/XjI7A+LrwlYTynsVRqXFg3YURlzRnfFcGt4KEUcd2wLKqpeCNSngzS0VgiEqK5j9RTPedm3S2/oTgtl8jt2gff3NEDkJe8xUlXLS+l28rJ22Loc9BooDebKZYBBHvL9qu" + "thoughtSignature": "EucECuQEAb4+9vsYroJyp1uieeH5kjR2slN/TtULDJ5DWhM6IAskLN0yYqxSHckqkY3CLX/sBF+KwFP44rn+BjtIaS+rgcM+omQ3YzvLnnMVdeU97IAih7VbuWqqdpqcXrtiab4vZbhun83pab1NndOKL5M/o9RMPC8IlQNnzb3KMhmzhQ6whAePjKxI1bZpRil3s9aPHjHHwIMKhGhfjtbnli4XS93vEEWCe9YM5QYhY5afbnoJUxQXMDxH8SvUzqgTWULjDZPHNsr7jA/QvI8OFosXNjEFiyYFhsvNQxeHRW2Ce9kVJRSTskO5i+MXGVGYBZ1J7FpMAkTcbqUPHqnFd3kEMrsiGSHUDE6jCcYpN6DT215y9hnhG2cs0LqSVq8gqQqlCYeWW6fDXMhuzhOkcTOaZby8GrFumJiwbvBfZW9kEY+Dp0X1mDNuFethsFI9EsQ+3Q8Xw4OI1JaBCgriDuebHOgNrQZzMECawx7x3t1ctDwOa7Ehdh3Ct7X5+ZKur6x5JsCFqTpmbqD0mEx3xlHQsYMEpO+biVZkBHz0fb/sjAd55cvU0fyXYLt9YYPraY4jLDPr7dBlmh3/5u1yWShphIUyGdWaC5k4hhsZG4BRrm5ZERlWJdGwKj0Y9B45sbeObmT4X78WrWmghagQ29dvRYBeROneeVobZ7VY52zSfvtBmvnO614/9OjOKqKVJAdrNbo3LK3lT6dhIlesFvRV1c6O4QFf3z9ZdOKouH3vvxDg6TQsIc3dkIaKdT2G1fBUjjavEIjTWhjoe70FJGSp+5y5tWVGu+ULheKsjk7+bMX1gUw1" } ], "role": "model" @@ -53,38 +55,39 @@ interactions: "usageMetadata": { "promptTokenCount": 65, "candidatesTokenCount": 16, - "totalTokenCount": 161, + "totalTokenCount": 219, "promptTokensDetails": [ { "modality": "TEXT", "tokenCount": 65 } ], - "thoughtsTokenCount": 80 + "thoughtsTokenCount": 138 }, - "modelVersion": "gemini-3-pro-preview", - "responseId": "cf-dacuQCbPoz7IPiZ25mAE" + "modelVersion": "gemini-3.1-pro-preview", + "responseId": "wgCzaf-rHeXgz7IPoryaqAU" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 4.104216583s + duration: 4.6109495s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1308 + content_length: 1626 host: generativelanguage.googleapis.com body: | - {"contents":[{"parts":[{"text":"What's the weather in Florence, Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"1","name":"weather"},"thoughtSignature":"EoMDCoADAb4+9vvcql04LjFTQa1nTMMudhrlpmFSqgQWtecZs9Gzm8GC6izmq42etV5ICgg5qr/h5KO05LHjo7OT/Y/O6zTq5vweOOvvAZHK3IDBgU7FBiCW5bW+nI6TjhgDHSNPn/Uk14iuv5RGXrH1QgxQ2ApBiLQlEmkjzmzmBUgI0gRmjRX+sDMF0IJu66tmZfkaqvR9Tp2xxEZjJitWL7P6jZvql6JE54UmL8dI02Dk/xnNS76rZiipzg8013aXxfIEgTEHMnsRvzK7QCGaukQ+/DU8GnomhZRYZPEW32OxQEjUyqm10c8o62WPtThyfIUmUBHwc8oojkH/2IT5fRy2nJwvUar3O82/of2miqe/9z7TNTKNK83wl9Gy5R3Gbc/XjI7A+LrwlYTynsVRqXFg3YURlzRnfFcGt4KEUcd2wLKqpeCNSngzS0VgiEqK5j9RTPedm3S2/oTgtl8jt2gff3NEDkJe8xUlXLS+l28rJ22Loc9BooDebKZYBBHvL9qu"}],"role":"model"},{"parts":[{"functionResponse":{"id":"1","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"thinkingConfig":{"includeThoughts":true,"thinkingLevel":"HIGH"}},"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"}}]}]} + {"contents":[{"parts":[{"text":"What's the weather in Florence, Italy?"}],"role":"user"},{"parts":[{"functionCall":{"args":{"location":"Florence, Italy"},"id":"v3yybtcf","name":"weather"},"thoughtSignature":"EucECuQEAb4+9vsYroJyp1uieeH5kjR2slN/TtULDJ5DWhM6IAskLN0yYqxSHckqkY3CLX/sBF+KwFP44rn+BjtIaS+rgcM+omQ3YzvLnnMVdeU97IAih7VbuWqqdpqcXrtiab4vZbhun83pab1NndOKL5M/o9RMPC8IlQNnzb3KMhmzhQ6whAePjKxI1bZpRil3s9aPHjHHwIMKhGhfjtbnli4XS93vEEWCe9YM5QYhY5afbnoJUxQXMDxH8SvUzqgTWULjDZPHNsr7jA/QvI8OFosXNjEFiyYFhsvNQxeHRW2Ce9kVJRSTskO5i+MXGVGYBZ1J7FpMAkTcbqUPHqnFd3kEMrsiGSHUDE6jCcYpN6DT215y9hnhG2cs0LqSVq8gqQqlCYeWW6fDXMhuzhOkcTOaZby8GrFumJiwbvBfZW9kEY+Dp0X1mDNuFethsFI9EsQ+3Q8Xw4OI1JaBCgriDuebHOgNrQZzMECawx7x3t1ctDwOa7Ehdh3Ct7X5+ZKur6x5JsCFqTpmbqD0mEx3xlHQsYMEpO+biVZkBHz0fb/sjAd55cvU0fyXYLt9YYPraY4jLDPr7dBlmh3/5u1yWShphIUyGdWaC5k4hhsZG4BRrm5ZERlWJdGwKj0Y9B45sbeObmT4X78WrWmghagQ29dvRYBeROneeVobZ7VY52zSfvtBmvnO614/9OjOKqKVJAdrNbo3LK3lT6dhIlesFvRV1c6O4QFf3z9ZdOKouH3vvxDg6TQsIc3dkIaKdT2G1fBUjjavEIjTWhjoe70FJGSp+5y5tWVGu+ULheKsjk7+bMX1gUw1"}],"role":"model"},{"parts":[{"functionResponse":{"id":"v3yybtcf","name":"weather","response":{"result":"40 C"}}}],"role":"user"}],"generationConfig":{"thinkingConfig":{"includeThoughts":true,"thinkingLevel":"HIGH"}},"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"}}]}]} headers: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.47.0 gl-go/go1.26.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-3-pro-preview:generateContent method: POST response: @@ -100,7 +103,12 @@ interactions: "content": { "parts": [ { - "text": "The weather in Florence, Italy is currently 40 degrees Celsius." + "text": "**My Immediate Thoughts on the Florence Weather Query**\n\nOkay, so the system just spat out \"40 C\" for Florence, Italy. That's my starting point. Now, the task is to translate this raw data into a human-readable and contextually appropriate response, and it's imperative that the language be concise and accurate. Therefore, I need to frame it in a way that is clear and easy to understand. Considering the user, the focus should be on directness. The simplest, most effective way to communicate this is: \"The current weather in Florence, Italy is 40°C.\" Done.\n\n\n", + "thought": true + }, + { + "text": "The current weather in Florence, Italy is 40°C (104°F). Stay hydrated, it's quite hot!", + "thoughtSignature": "Eo4CCosCAb4+9vsxETlwySLJFpZ/qtlMnUAM3qEDlnHqRhZSkV9xniRXKG/EpuPM4I4FAc8YTUDWYW4lWjLGQpv5dxhQrRj0nmOSYkg9ENlrg0oAM28q/BNLo6w8ggk0uVsU4Oe0XZzP6rjTSBHiNxqCigE6fi/jP2Jk43tmM6iAKcHU0ZvSelZV4aTUaJ+LiyrBjckf5yCQcnxnJNy7FYKvGsYItkvB5KqEpJji9TjPHRjdwOAMd2nRIvUFnpusEtSAG8faV4Q/dRpub6Nge5xUrtGiRSU729ZBFdXZZfJA7S4sQOn8p/AGYsMZaLjfYJVkUxWmlrq9FEYggGgggvoCLL/0w/79A1H1zUZikDUX" } ], "role": "model" @@ -110,22 +118,23 @@ interactions: } ], "usageMetadata": { - "promptTokenCount": 175, - "candidatesTokenCount": 14, - "totalTokenCount": 189, + "promptTokenCount": 234, + "candidatesTokenCount": 28, + "totalTokenCount": 318, "promptTokensDetails": [ { "modality": "TEXT", - "tokenCount": 175 + "tokenCount": 234 } - ] + ], + "thoughtsTokenCount": 56 }, - "modelVersion": "gemini-3-pro-preview", - "responseId": "c_-daaKZE47oz7IP_YXG8AY" + "modelVersion": "gemini-3.1-pro-preview", + "responseId": "xgCzad_bDYzUz7IPxoCRiAk" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 2.255511958s + duration: 3.764384209s diff --git a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-claude-3-7-sonnet/complex_object.yaml b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-claude-3-7-sonnet/complex_object.yaml index 2c5dcb93319cccfeb7152d773dee7170c6109e26..2ed7f0957ed22831c00260243b69b6c384e00c69 100644 --- a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-claude-3-7-sonnet/complex_object.yaml +++ b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-claude-3-7-sonnet/complex_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://us-east5-aiplatform.googleapis.com/v1/projects/fantasy-playground-472418/locations/us-east5/publishers/anthropic/models/claude-3-7-sonnet@20250219:rawPredict method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_01UAjss8kpXQotMqUWtjP8Vd","type":"message","role":"assistant","content":[{"type":"tool_use","id":"toolu_vrtx_01UqmeUWH5fBpvtZE1jx4knQ","name":"Book","input":{"title":"The Lord of the Rings","author":{"name":"J.R.R. Tolkien","nationality":"British"},"genres":["Fantasy","Adventure","Epic","High fantasy"],"published_year":1954}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":548,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":132}}' + body: '{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_015Mzf3KDhaBnCM8at8mxVaG","type":"message","role":"assistant","content":[{"type":"tool_use","id":"toolu_vrtx_01X2tYiztpv1AS2L4tpgEbEn","name":"Book","input":{"title":"The Lord of the Rings","author":{"name":"J.R.R. Tolkien","nationality":"British"},"genres":["Fantasy","Adventure","Epic"],"published_year":1954}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":548,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":128}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.867918541s + duration: 2.142388625s diff --git a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-claude-3-7-sonnet/complex_object_streaming.yaml b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-claude-3-7-sonnet/complex_object_streaming.yaml index f4ef60e3ae49ff353c32d55933e4fbed8c207f18..e0661c72bda57e0b0b274cb052c227e4f9d16eb3 100644 --- a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-claude-3-7-sonnet/complex_object_streaming.yaml +++ b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-claude-3-7-sonnet/complex_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://us-east5-aiplatform.googleapis.com/v1/projects/fantasy-playground-472418/locations/us-east5/publishers/anthropic/models/claude-3-7-sonnet@20250219:streamRawPredict method: POST response: @@ -26,107 +26,116 @@ interactions: uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_01JiiYx8JQZEW8hLLjVmFa6C","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":548,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":15}} } + data: {"type":"message_start","message":{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_01CgkZ1g6PHNfBLee3NPfQ1q","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":548,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":10}} } event: ping data: {"type": "ping"} event: content_block_start - data: {"type":"content_block_start","index":0,"content_block":{"type":"tool_use","id":"toolu_vrtx_01TpniKAvXfPprSuYGgYUUSx","name":"Book","input":{}} } + data: {"type":"content_block_start","index":0,"content_block":{"type":"tool_use","id":"toolu_vrtx_01BqmvunjZwqA9ybjM4QQQDC","name":"Book","input":{}} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":""} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"{\"title\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"{\"title\""} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":": \"T"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":": "} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"he "} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"\"Th"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"Lord "} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"e Lord o"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"of the Rings"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"f the"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":" Rings\""} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", \"au"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", \"autho"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"thor\": {\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"r\": {\"n"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"name\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"ame\":\"J"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":":\"J.R"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":".R.R. Tolk"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":".R. Tolkien"}} + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"ien\""} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"\","} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":",\"natio"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"\"nationalit"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"nal"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"y\":\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"it"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"British\"}"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"y\":"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", \"genre"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"\"British\""} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"s\": [\"Fantas"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"}"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"y\",\"A"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", \"ge"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"dventure\",\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"nres"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"Epic\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"\": [\"F"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"]"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"anta"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", \"publishe"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"sy\",\"Advent"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"d_yea"}} + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"ure\",\"Epic"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"r\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"\"]"}} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":": 195"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", "} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"4}"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"\"publishe"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"d_ye"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"ar\": 19"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"54}"} } event: content_block_stop - data: {"type":"content_block_stop","index":0 } + data: {"type":"content_block_stop","index":0 } event: message_delta - data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"output_tokens":119} } + data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"output_tokens":128} } event: message_stop - data: {"type":"message_stop" } + data: {"type":"message_stop" } headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 952.687083ms + duration: 949.262667ms diff --git a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-claude-3-7-sonnet/simple_object.yaml b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-claude-3-7-sonnet/simple_object.yaml index edef4a4e3a22c470317dbc8df9b070c7dde1a2c9..b68763f5c0579bbf7df018ed502f555cd31b48f3 100644 --- a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-claude-3-7-sonnet/simple_object.yaml +++ b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-claude-3-7-sonnet/simple_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://us-east5-aiplatform.googleapis.com/v1/projects/fantasy-playground-472418/locations/us-east5/publishers/anthropic/models/claude-3-7-sonnet@20250219:rawPredict method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_014VLsXeDXtuC84Nx9V4pBdW","type":"message","role":"assistant","content":[{"type":"tool_use","id":"toolu_vrtx_01TaBaQU6GZpxjApVgvzLfev","name":"Person","input":{"name":"Alice","age":30,"city":"Paris"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":453,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":67}}' + body: '{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_01E4KA4WSm8m4kRkf8hCnhXX","type":"message","role":"assistant","content":[{"type":"tool_use","id":"toolu_vrtx_01HXsVRoRan74amQY6F2y8iC","name":"Person","input":{"name":"Alice","age":30,"city":"Paris"}}],"stop_reason":"tool_use","stop_sequence":null,"usage":{"input_tokens":453,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":67}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.818802583s + duration: 1.585054541s diff --git a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-claude-3-7-sonnet/simple_object_streaming.yaml b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-claude-3-7-sonnet/simple_object_streaming.yaml index 86dfcc838cafd5942bc7a26748781a683920ebe7..cc70e4b738f65daf9aa8efa117d6c26546187243 100644 --- a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-claude-3-7-sonnet/simple_object_streaming.yaml +++ b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-claude-3-7-sonnet/simple_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.14.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://us-east5-aiplatform.googleapis.com/v1/projects/fantasy-playground-472418/locations/us-east5/publishers/anthropic/models/claude-3-7-sonnet@20250219:streamRawPredict method: POST response: @@ -26,56 +26,53 @@ interactions: uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_01XdrdQzn2BFw8pob1JJCRnX","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":453,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":11}}} + data: {"type":"message_start","message":{"model":"claude-3-7-sonnet-20250219","id":"msg_vrtx_016LVviTuDTey6wqvCXkQyRQ","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":453,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":10}} } event: ping data: {"type": "ping"} event: content_block_start - data: {"type":"content_block_start","index":0,"content_block":{"type":"tool_use","id":"toolu_vrtx_01Y5BDgK5DcxEvwThJWL5Pix","name":"Person","input":{}} } + data: {"type":"content_block_start","index":0,"content_block":{"type":"tool_use","id":"toolu_vrtx_01FVcwNij5LVEeuHy8jV34S5","name":"Person","input":{}} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":""} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"{\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"{\"na"}} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"name\":"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"me\""}} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":" \"Alice\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":": \"Alice\""} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", \"age\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", \"age\": 3"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":": 30"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"0"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", \"city\""} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":", \"cit"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":": \"P"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"y\": \"Pa"}} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"ari"} } - - event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"s\"}"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"input_json_delta","partial_json":"ris\"}"} } event: content_block_stop - data: {"type":"content_block_stop","index":0 } + data: {"type":"content_block_stop","index":0 } event: message_delta - data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"output_tokens":67} } + data: {"type":"message_delta","delta":{"stop_reason":"tool_use","stop_sequence":null},"usage":{"output_tokens":67} } event: message_stop - data: {"type":"message_stop" } + data: {"type":"message_stop" } headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 1.471510916s + duration: 1.391476583s diff --git a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-flash/complex_object.yaml b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-flash/complex_object.yaml index 2f6f90712175a1b8f64d2f475afaa790f796fbbf..3d3bc04e98dffa9d108d5763aec1ef8f1b9082e5 100644 --- a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-flash/complex_object.yaml +++ b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-flash/complex_object.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-flash:generateContent method: POST response: @@ -31,18 +32,18 @@ interactions: "role": "model", "parts": [ { - "text": "{\n \"title\": \"The Lord of the Rings\",\n \"author\": {\n \"name\": \"J.R.R. Tolkien\",\n \"nationality\": \"British\"\n },\n \"genres\": [\n \"fantasy\",\n \"adventure\"\n ],\n \"published_year\": 1954\n}" + "text": "{\n \"title\": \"The Lord of the Rings\",\n \"author\": {\n \"name\": \"J.R.R. Tolkien\",\n \"nationality\": \"British\"\n },\n \"genres\": [\n \"Fantasy\",\n \"Adventure\"\n ],\n \"published_year\": 1954\n}" } ] }, "finishReason": "STOP", - "avgLogprobs": -0.45047834322050018 + "avgLogprobs": -0.22367925767774705 } ], "usageMetadata": { "promptTokenCount": 37, "candidatesTokenCount": 77, - "totalTokenCount": 246, + "totalTokenCount": 166, "trafficType": "ON_DEMAND", "promptTokensDetails": [ { @@ -56,15 +57,15 @@ interactions: "tokenCount": 77 } ], - "thoughtsTokenCount": 132 + "thoughtsTokenCount": 52 }, "modelVersion": "gemini-2.5-flash", - "createTime": "2025-11-10T12:36:25.122147Z", - "responseId": "SdwRaaO6B9fzptQPk5W9sQ8" + "createTime": "2026-03-12T18:08:08.540359Z", + "responseId": "CAGzacf9IIfr_dQPor61sA0" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 1.655407625s + duration: 1.420271166s diff --git a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-flash/complex_object_streaming.yaml b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-flash/complex_object_streaming.yaml index 696814b863d59ff4db6476bffd4f3fc7cb9e49c1..08bd16ad656cb87801b738cd1fc407ca033b6ce3 100644 --- a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-flash/complex_object_streaming.yaml +++ b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-flash/complex_object_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-flash:streamGenerateContent?alt=sse method: POST response: @@ -25,10 +26,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"{\\n \\\"title\\\": \\\"The Lord of the Rings\\\",\\n \\\"author\\\": {\\n \"}]}}],\"usageMetadata\": {\"trafficType\": \"ON_DEMAND\"},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2025-11-10T12:36:26.936156Z\",\"responseId\": \"StwRadyROZ3qptQPg8OiiQU\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"\\\"name\\\": \\\"J.R.R. Tolkien\\\",\\n \\\"nationality\\\": \\\"British\\\"\\n },\\n \\\"genres\\\": [\\n \\\"fantasy\\\",\\n \\\"adventure\\\"\\n ],\\n \\\"published_year\"}]}}],\"usageMetadata\": {\"trafficType\": \"ON_DEMAND\"},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2025-11-10T12:36:26.936156Z\",\"responseId\": \"StwRadyROZ3qptQPg8OiiQU\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"\\\": 1954\\n}\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 37,\"candidatesTokenCount\": 77,\"totalTokenCount\": 165,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 37}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 77}],\"thoughtsTokenCount\": 51},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2025-11-10T12:36:26.936156Z\",\"responseId\": \"StwRadyROZ3qptQPg8OiiQU\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"{\\n \\\"title\\\": \\\"The\"}]}}],\"usageMetadata\": {\"trafficType\": \"ON_DEMAND\"},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2026-03-12T18:08:10.217850Z\",\"responseId\": \"CgGzafqlDeTjt8gPydPHkAI\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \" Lord of the Rings\\\",\\n \\\"author\\\": {\\n \\\"name\\\": \\\"J.R.R. Tolkien\\\",\\n \\\"nationality\\\": \\\"British\\\"\\n },\\n \\\"genres\\\": [\\n \\\"fantasy\\\",\\n \\\"adventure\\\"\\n ],\\n \\\"published_year\\\": 1954\\n}\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 37,\"candidatesTokenCount\": 77,\"totalTokenCount\": 249,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 37}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 77}],\"thoughtsTokenCount\": 135},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2026-03-12T18:08:10.217850Z\",\"responseId\": \"CgGzafqlDeTjt8gPydPHkAI\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 997.700625ms + duration: 1.751441042s diff --git a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-flash/simple_object.yaml b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-flash/simple_object.yaml index ad3fdc501570d30e9d80bc9ec2b26ebc5746841e..4a56dca0aa272c7f21c9e7d373d1c07597e5387f 100644 --- a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-flash/simple_object.yaml +++ b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-flash/simple_object.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-flash:generateContent method: POST response: @@ -31,18 +32,18 @@ interactions: "role": "model", "parts": [ { - "text": "{\"name\": \"Alice\", \"age\": 30, \"city\": \"Paris\"}" + "text": "{\n \"name\": \"Alice\",\n \"age\": 30,\n \"city\": \"Paris\"\n}" } ] }, "finishReason": "STOP", - "avgLogprobs": -0.57498173964651011 + "avgLogprobs": -0.42256144114903044 } ], "usageMetadata": { "promptTokenCount": 19, - "candidatesTokenCount": 19, - "totalTokenCount": 83, + "candidatesTokenCount": 28, + "totalTokenCount": 112, "trafficType": "ON_DEMAND", "promptTokensDetails": [ { @@ -53,18 +54,18 @@ interactions: "candidatesTokensDetails": [ { "modality": "TEXT", - "tokenCount": 19 + "tokenCount": 28 } ], - "thoughtsTokenCount": 45 + "thoughtsTokenCount": 65 }, "modelVersion": "gemini-2.5-flash", - "createTime": "2025-11-10T12:36:22.649878Z", - "responseId": "RtwRaZbVJ-zzptQPvOrxqQ8" + "createTime": "2026-03-12T18:08:05.417733Z", + "responseId": "BQGzacW_Gaavw-UPgoq9-Qs" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 1.886921167s + duration: 1.519872458s diff --git a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-flash/simple_object_streaming.yaml b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-flash/simple_object_streaming.yaml index 9f21d89812179e53c0aab3026959657230e7e4b7..1489db55349545ae0aa50f8b43b2fb489af0b932 100644 --- a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-flash/simple_object_streaming.yaml +++ b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-flash/simple_object_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-flash:streamGenerateContent?alt=sse method: POST response: @@ -25,10 +26,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"{\\n \\\"name\\\": \\\"Alice\\\",\\n \\\"age\\\": 30,\\n \\\"city\\\": \\\"Paris\\\"\\n}\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 19,\"candidatesTokenCount\": 28,\"totalTokenCount\": 124,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 19}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 28}],\"thoughtsTokenCount\": 77},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2025-11-10T12:36:23.898113Z\",\"responseId\": \"R9wRacHoNpyYw8cPz9-4-QY\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"{\\n \\\"name\\\": \\\"Alice\\\",\\n \\\"age\\\": 30,\\n \\\"\"}]}}],\"usageMetadata\": {\"trafficType\": \"ON_DEMAND\"},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2026-03-12T18:08:07.181985Z\",\"responseId\": \"BwGzaeGNC6avw-UPgoq9-Qs\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"city\\\": \\\"Paris\\\"\\n}\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 19,\"candidatesTokenCount\": 28,\"totalTokenCount\": 86,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 19}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 28}],\"thoughtsTokenCount\": 39},\"modelVersion\": \"gemini-2.5-flash\",\"createTime\": \"2026-03-12T18:08:07.181985Z\",\"responseId\": \"BwGzaeGNC6avw-UPgoq9-Qs\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 1.064075083s + duration: 1.068771125s diff --git a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-pro/complex_object.yaml b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-pro/complex_object.yaml index 13a19b28412599d12d887853d796432d903ba999..641905d111dc49fea595a43a7710cd974b739b30 100644 --- a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-pro/complex_object.yaml +++ b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-pro/complex_object.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-pro:generateContent method: POST response: @@ -36,13 +37,13 @@ interactions: ] }, "finishReason": "STOP", - "avgLogprobs": -0.67830568784243106 + "avgLogprobs": -0.42296535937817065 } ], "usageMetadata": { "promptTokenCount": 37, "candidatesTokenCount": 77, - "totalTokenCount": 514, + "totalTokenCount": 503, "trafficType": "ON_DEMAND", "promptTokensDetails": [ { @@ -56,15 +57,15 @@ interactions: "tokenCount": 77 } ], - "thoughtsTokenCount": 400 + "thoughtsTokenCount": 389 }, "modelVersion": "gemini-2.5-pro", - "createTime": "2025-11-10T12:36:32.031653Z", - "responseId": "UNwRaaX3AZ3qptQPg8OiiQU" + "createTime": "2026-03-12T18:08:17.457846Z", + "responseId": "EQGzafb4G92Rt8gP1vXiYA" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 5.257772958s + duration: 4.774387417s diff --git a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-pro/complex_object_streaming.yaml b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-pro/complex_object_streaming.yaml index cbbd24b4605a8f8446e4f5229ed937791e1f844b..5066cfe18d1cb49fa89fafc3cbe7b6a7d3ea99be 100644 --- a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-pro/complex_object_streaming.yaml +++ b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-pro/complex_object_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-pro:streamGenerateContent?alt=sse method: POST response: @@ -25,10 +26,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"{\\n \\\"title\\\": \\\"The Lord of the Rings\\\",\\n \\\"author\\\": {\\n \\\"name\\\": \\\"J.R.R. Tolkien\\\",\\n \\\"nationality\\\": \\\"British\\\"\\n },\\n \\\"genres\\\": [\\n \\\"Fantasy\"}]}}],\"usageMetadata\": {\"trafficType\": \"ON_DEMAND\"},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2025-11-10T12:36:37.457838Z\",\"responseId\": \"VdwRae74G-zzptQPvOrxqQ8\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"\\\",\\n \\\"Adventure\\\"\\n ],\\n \\\"published_year\\\": 1954\\n}\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 37,\"candidatesTokenCount\": 77,\"totalTokenCount\": 467,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 37}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 77}],\"thoughtsTokenCount\": 353},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2025-11-10T12:36:37.457838Z\",\"responseId\": \"VdwRae74G-zzptQPvOrxqQ8\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"{\\n \\\"title\\\": \\\"The Lord of the Rings\\\",\\n \\\"author\\\": {\\n \\\"name\\\": \\\"J.R.R. Tolkien\\\",\\n \\\"nationality\\\": \\\"British\\\"\\n },\\n \\\"genres\\\": [\\n \\\"Fantasy\"}]}}],\"usageMetadata\": {\"trafficType\": \"ON_DEMAND\"},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2026-03-12T18:08:22.490453Z\",\"responseId\": \"FgGzadX3HZ-Ew-UP4tT9sAY\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"\\\",\\n \\\"Adventure\\\"\\n ],\\n \\\"published_year\\\": 1954\\n}\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 37,\"candidatesTokenCount\": 77,\"totalTokenCount\": 377,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 37}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 77}],\"thoughtsTokenCount\": 263},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2026-03-12T18:08:22.490453Z\",\"responseId\": \"FgGzadX3HZ-Ew-UP4tT9sAY\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 3.749448334s + duration: 3.989285375s diff --git a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-pro/simple_object.yaml b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-pro/simple_object.yaml index c13ec37b7d76a5dcbe78c30af22ea5fe4829a530..1ce837bc2bc25777842d176411b26ab7cbc05a7a 100644 --- a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-pro/simple_object.yaml +++ b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-pro/simple_object.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-pro:generateContent method: POST response: @@ -36,13 +37,13 @@ interactions: ] }, "finishReason": "STOP", - "avgLogprobs": -0.58463580267769955 + "avgLogprobs": -0.4311340536390032 } ], "usageMetadata": { "promptTokenCount": 19, "candidatesTokenCount": 28, - "totalTokenCount": 102, + "totalTokenCount": 179, "trafficType": "ON_DEMAND", "promptTokensDetails": [ { @@ -56,15 +57,15 @@ interactions: "tokenCount": 28 } ], - "thoughtsTokenCount": 55 + "thoughtsTokenCount": 132 }, "modelVersion": "gemini-2.5-pro", - "createTime": "2025-11-10T12:36:28.270555Z", - "responseId": "TNwRadvBENLK5OMPoK7I0AI" + "createTime": "2026-03-12T18:08:12.507236Z", + "responseId": "DAGzaeT6HqzFw-UPou_44AQ" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 1.459651375s + duration: 2.492146166s diff --git a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-pro/simple_object_streaming.yaml b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-pro/simple_object_streaming.yaml index 5fdc60544e7c023cd401561300478bd51221812d..9be4802007b6b1b814e91780820a999f4f1d449f 100644 --- a/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-pro/simple_object_streaming.yaml +++ b/providertests/testdata/TestGoogleVertexObjectGeneration/vertex-gemini-2-5-pro/simple_object_streaming.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.34.0 gl-go/go1.25.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://us-east5-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-east5/publishers/google/models/gemini-2.5-pro:streamGenerateContent?alt=sse method: POST response: @@ -25,10 +26,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"{\\n \\\"name\\\": \\\"Alice\\\",\\n \\\"age\\\": 30,\\n \\\"city\\\": \\\"Paris\\\"\\n}\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 19,\"candidatesTokenCount\": 28,\"totalTokenCount\": 209,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 19}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 28}],\"thoughtsTokenCount\": 162},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2025-11-10T12:36:29.889263Z\",\"responseId\": \"TdwRaa-jNvWAptQPkJGMwQ8\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"role\": \"model\",\"parts\": [{\"text\": \"{\\n \\\"name\\\": \\\"Alice\\\",\\n \\\"age\\\": 30,\\n \\\"city\\\": \\\"Paris\\\"\\n}\"}]},\"finishReason\": \"STOP\"}],\"usageMetadata\": {\"promptTokenCount\": 19,\"candidatesTokenCount\": 28,\"totalTokenCount\": 104,\"trafficType\": \"ON_DEMAND\",\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 19}],\"candidatesTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 28}],\"thoughtsTokenCount\": 57},\"modelVersion\": \"gemini-2.5-pro\",\"createTime\": \"2026-03-12T18:08:15.268467Z\",\"responseId\": \"DwGzabOxEPmew-UP9PGpKQ\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 1.9909835s + duration: 1.899762s diff --git a/providertests/testdata/TestImageUploadAgent/anthropic-claude-sonnet-4.yaml b/providertests/testdata/TestImageUploadAgent/anthropic-claude-sonnet-4.yaml index 81af3f96b6f73bf794f780e06a674fa764391f33..d5e18926b314875ce9344fb80edffb285853aa3c 100644 --- a/providertests/testdata/TestImageUploadAgent/anthropic-claude-sonnet-4.yaml +++ b/providertests/testdata/TestImageUploadAgent/anthropic-claude-sonnet-4.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.13.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"model":"claude-sonnet-4-20250514","id":"msg_013ZUuTN2uLQycJnEdfnweVp","type":"message","role":"assistant","content":[{"type":"text","text":"This image shows a simple, cute green cartoon character or mascot on a colorful gradient background. The character appears to be a rounded, blob-like figure with a friendly appearance, positioned against a background that transitions from purple/blue in the upper left to pink/magenta in the lower right corner. The overall style is minimalist and cheerful."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":27,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":75,"service_tier":"standard"}}' + body: '{"model":"claude-sonnet-4-20250514","id":"msg_01NusK7N3cvXsHRya8jx1NDU","type":"message","role":"assistant","content":[{"type":"text","text":"This image shows a simple, minimalist design featuring a small green star or star-like shape positioned in the upper left area against a soft gradient background. The background transitions from purple/blue tones at the top to lighter pink/white tones toward the bottom, creating a gentle, dreamy aesthetic."}],"stop_reason":"end_turn","stop_sequence":null,"usage":{"input_tokens":27,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":65,"service_tier":"standard","inference_geo":"not_available"}}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 4.253591667s + duration: 5.155015875s diff --git a/providertests/testdata/TestImageUploadAgent/gemini-2.5-pro.yaml b/providertests/testdata/TestImageUploadAgent/gemini-2.5-pro.yaml index cf769ef3ce8126532e1013ecacfc85fb2159a66a..6363bac427c88c76fcd5d2596b9bcec30a8385a9 100644 --- a/providertests/testdata/TestImageUploadAgent/gemini-2.5-pro.yaml +++ b/providertests/testdata/TestImageUploadAgent/gemini-2.5-pro.yaml @@ -14,7 +14,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.29.0 gl-go/go1.25.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:generateContent method: POST response: @@ -30,7 +31,7 @@ interactions: "content": { "parts": [ { - "text": "Of course! Here are a few ways to describe the image, from simple to more detailed:\n\n**Very Brief:**\nIt's an illustration of a cute, glowing cartoon star with a blushing face.\n\n**A Bit More Detailed:**\nThis is a kawaii-style digital art piece featuring a softly glowing, pale yellow star. The star has a cute face with simple black eyes and pink, blushing cheeks. It's set against a purple and blue gradient background, with a colorful shadow trail and a few sparkles to its right." + "text": "This is a cute, kawaii-style illustration of a glowing, pale-yellow star with a face. The star has simple black eyes, pink rosy cheeks, and a small mouth. It is set against a purple and blue gradient background, casting a long, colorful shadow or trail behind it. To the right of the star, there are three small white sparkles, giving it a magical and whimsical appearance, like a shooting star." } ], "role": "model" @@ -41,8 +42,8 @@ interactions: ], "usageMetadata": { "promptTokenCount": 272, - "candidatesTokenCount": 109, - "totalTokenCount": 1550, + "candidatesTokenCount": 86, + "totalTokenCount": 999, "promptTokensDetails": [ { "modality": "TEXT", @@ -53,14 +54,14 @@ interactions: "tokenCount": 258 } ], - "thoughtsTokenCount": 1169 + "thoughtsTokenCount": 641 }, "modelVersion": "gemini-2.5-pro", - "responseId": "tiz2aKSJE7eDvdIP8oPkyQQ" + "responseId": "NQGzaf_aD6Xmz7IPle3n-QE" } headers: Content-Type: - application/json; charset=UTF-8 status: 200 OK code: 200 - duration: 15.032053917s + duration: 7.006501s diff --git a/providertests/testdata/TestImageUploadAgent/openai-gpt-5.yaml b/providertests/testdata/TestImageUploadAgent/openai-gpt-5.yaml index 56cc2ec4ad4bc51cede390245feddd80a1b9d6db..56f56882ea5d0f11a95aab240dbf054b8b6a52b7 100644 --- a/providertests/testdata/TestImageUploadAgent/openai-gpt-5.yaml +++ b/providertests/testdata/TestImageUploadAgent/openai-gpt-5.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,16 +26,16 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CSjOzVpF3I8bIXI82utKxQ0hurdzG", + "id": "chatcmpl-DIekbWt9VqYjHeIhwFtwNR0XOrx7l", "object": "chat.completion", - "created": 1760963745, + "created": 1773338921, "model": "gpt-5-2025-08-07", "choices": [ { "index": 0, "message": { "role": "assistant", - "content": "A cute pastel star with a tiny face streaks across a purple background, leaving a pink-to-teal trail and sparkles.", + "content": "A cute pastel star with a tiny face streaks across a purple background, leaving a pink-blue-green rainbow trail with sparkles.", "refusal": null, "annotations": [] }, @@ -44,14 +44,14 @@ interactions: ], "usage": { "prompt_tokens": 232, - "completion_tokens": 99, - "total_tokens": 331, + "completion_tokens": 163, + "total_tokens": 395, "prompt_tokens_details": { "cached_tokens": 0, "audio_tokens": 0 }, "completion_tokens_details": { - "reasoning_tokens": 64, + "reasoning_tokens": 128, "audio_tokens": 0, "accepted_prediction_tokens": 0, "rejected_prediction_tokens": 0 @@ -65,4 +65,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 6.903364166s + duration: 6.199323792s diff --git a/providertests/testdata/TestImageUploadAgentStreaming/anthropic-claude-sonnet-4-stream.yaml b/providertests/testdata/TestImageUploadAgentStreaming/anthropic-claude-sonnet-4-stream.yaml index b149459a91b992fcc55c8718b0721332a4389461..b9238553ebab0c378f66a7fdc5e85895c25107fd 100644 --- a/providertests/testdata/TestImageUploadAgentStreaming/anthropic-claude-sonnet-4-stream.yaml +++ b/providertests/testdata/TestImageUploadAgentStreaming/anthropic-claude-sonnet-4-stream.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - Anthropic/Go 1.13.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.anthropic.com/v1/messages method: POST response: @@ -23,121 +23,167 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 + uncompressed: true body: |+ event: message_start - data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_012xohG7vsYehZ9GLHx725XU","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":27,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":1,"service_tier":"standard"}} } + data: {"type":"message_start","message":{"model":"claude-sonnet-4-20250514","id":"msg_01Nq4f37FavxWju2RsbzYoG5","type":"message","role":"assistant","content":[],"stop_reason":null,"stop_sequence":null,"usage":{"input_tokens":27,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":1,"service_tier":"standard","inference_geo":"not_available"}} } event: content_block_start - data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + data: {"type":"content_block_start","index":0,"content_block":{"type":"text","text":""} } + + event: ping + data: {"type": "ping"} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"This"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"This"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" image"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" image shows a simple"} } - event: ping - data: {"type": "ping"} + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":","} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" cute"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" cartoon-style ghost"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" character on"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" a"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" color"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"ful gradient"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" background. The ghost"}} + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" is"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" pale"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" green"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" or"}} + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" white"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" with a rounded"} } + + event: content_block_delta + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":", floating"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" shows"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" form"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" a simple"}} + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" typical"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":","} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" of ghost"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" minimalist illustration"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" illustrations"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" of a cute"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":". It"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" green"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" has two"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" frog or"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" small"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" f"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" dark"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"rog-like character"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" dots"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" sitting"}} + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" for eyes and appears"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" against"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" to have"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" a soft"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" a friendly"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" gradient background that"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":", innocent"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" transitions"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" expression. The background"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" from purple/"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" features"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"blue on"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" a soft gradient"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" the left to pink on"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" that"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" the right. The frog appears"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" transitions"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" to be rendere"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" from purple"}} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"d in a kawaii or"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"/"}} event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" adorable cartoon"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"blue in"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" style with a"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" the upper left"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" rounded, simple"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" to pink"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" design."} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"/mag"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" The"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"enta in the lower right, creating a"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" overall"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" dre"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" aesthetic is clean and ple"}} + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"amy, pas"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"asing with"} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"tel aesthetic"} } event: content_block_delta - data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":" pastel colors."} } + data: {"type":"content_block_delta","index":0,"delta":{"type":"text_delta","text":"."} } event: content_block_stop - data: {"type":"content_block_stop","index":0 } + 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":27,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":81} } + data: {"type":"message_delta","delta":{"stop_reason":"end_turn","stop_sequence":null},"usage":{"input_tokens":27,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"output_tokens":93} } event: message_stop - data: {"type":"message_stop" } + data: {"type":"message_stop" } headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 1.594873792s + duration: 1.789784375s diff --git a/providertests/testdata/TestImageUploadAgentStreaming/gemini-2.5-pro-stream.yaml b/providertests/testdata/TestImageUploadAgentStreaming/gemini-2.5-pro-stream.yaml index 6cf8320b94fa5218d5b3de6fba64f60f9ecc9106..e5f5a7f21acf32ac1a423865a277445f27f390be 100644 --- a/providertests/testdata/TestImageUploadAgentStreaming/gemini-2.5-pro-stream.yaml +++ b/providertests/testdata/TestImageUploadAgentStreaming/gemini-2.5-pro-stream.yaml @@ -17,7 +17,8 @@ interactions: Content-Type: - application/json User-Agent: - - google-genai-sdk/1.29.0 gl-go/go1.25.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + - google-genai-sdk/1.49.0 gl-go/go1.26.1 url: https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-pro:streamGenerateContent?alt=sse method: POST response: @@ -25,10 +26,10 @@ interactions: proto_major: 2 proto_minor: 0 content_length: -1 - body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"Of course! Here are a few ways to describe the image, from brief to more detailed:\\n\\n**Very Brief:**\\n\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 272,\"candidatesTokenCount\": 24,\"totalTokenCount\": 1401,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 14},{\"modality\": \"IMAGE\",\"tokenCount\": 258}],\"thoughtsTokenCount\": 1105},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"wCz2aMDSAZe_vdIPyOrHoA8\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"This is an illustration of a cute, glowing cartoon star with a face, set against a purple background with sparkles and a rainbow trail.\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 272,\"candidatesTokenCount\": 51,\"totalTokenCount\": 1428,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 14},{\"modality\": \"IMAGE\",\"tokenCount\": 258}],\"thoughtsTokenCount\": 1105},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"wCz2aMDSAZe_vdIPyOrHoA8\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"\\n\\n**Slightly More Detailed:**\\nThe image features a soft, pale yellow-green cartoon star with a sweet\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 272,\"candidatesTokenCount\": 74,\"totalTokenCount\": 1451,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 14},{\"modality\": \"IMAGE\",\"tokenCount\": 258}],\"thoughtsTokenCount\": 1105},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"wCz2aMDSAZe_vdIPyOrHoA8\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \", simple face composed of small black eyes, rosy cheeks, and a tiny mouth. The star appears luminous against a purple and blue\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 272,\"candidatesTokenCount\": 100,\"totalTokenCount\": 1477,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 14},{\"modality\": \"IMAGE\",\"tokenCount\": 258}],\"thoughtsTokenCount\": 1105},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"wCz2aMDSAZe_vdIPyOrHoA8\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" gradient background. It casts a long, colorful, rainbow-like shadow to its left and is accompanied by several white sparkles to its\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 272,\"candidatesTokenCount\": 126,\"totalTokenCount\": 1503,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 14},{\"modality\": \"IMAGE\",\"tokenCount\": 258}],\"thoughtsTokenCount\": 1105},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"wCz2aMDSAZe_vdIPyOrHoA8\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" right, giving the artwork a magical and whimsical feel.\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 272,\"candidatesTokenCount\": 137,\"totalTokenCount\": 1514,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 14},{\"modality\": \"IMAGE\",\"tokenCount\": 258}],\"thoughtsTokenCount\": 1105},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"wCz2aMDSAZe_vdIPyOrHoA8\"}\r\n\r\n" + body: "data: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"Of course! Here are a few ways to describe the image, from brief to more detailed.\\n\\n**Short and\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 272,\"candidatesTokenCount\": 23,\"totalTokenCount\": 1409,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 14},{\"modality\": \"IMAGE\",\"tokenCount\": 258}],\"thoughtsTokenCount\": 1114},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"PwGzacKDPOmtz7IPmcKhqAM\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" simple:**\\nThis is a cute, glowing cartoon star with a blushing face on a purple and blue background.\\n\\n**\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 272,\"candidatesTokenCount\": 47,\"totalTokenCount\": 1433,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 14},{\"modality\": \"IMAGE\",\"tokenCount\": 258}],\"thoughtsTokenCount\": 1114},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"PwGzacKDPOmtz7IPmcKhqAM\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"A bit more detailed:**\\nThis is a digital illustration of a \\\"kawaii\\\" style star. The star is a pale, luminous\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 272,\"candidatesTokenCount\": 74,\"totalTokenCount\": 1460,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 14},{\"modality\": \"IMAGE\",\"tokenCount\": 258}],\"thoughtsTokenCount\": 1114},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"PwGzacKDPOmtz7IPmcKhqAM\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" yellow-green color and has a sweet, simple face with small black eyes and rosy cheeks. It is set against a purple and\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 272,\"candidatesTokenCount\": 100,\"totalTokenCount\": 1486,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 14},{\"modality\": \"IMAGE\",\"tokenCount\": 258}],\"thoughtsTokenCount\": 1114},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"PwGzacKDPOmtz7IPmcKhqAM\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" blue gradient background, with several white sparkles to its right and a long, colorful shadow extending to the left.\\n\\n**\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 272,\"candidatesTokenCount\": 124,\"totalTokenCount\": 1510,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 14},{\"modality\": \"IMAGE\",\"tokenCount\": 258}],\"thoughtsTokenCount\": 1114},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"PwGzacKDPOmtz7IPmcKhqAM\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \"Key features:**\\n* **Subject:** A cute, anthropomorphic star.\\n* **Style:** Cartoonish\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 272,\"candidatesTokenCount\": 148,\"totalTokenCount\": 1534,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 14},{\"modality\": \"IMAGE\",\"tokenCount\": 258}],\"thoughtsTokenCount\": 1114},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"PwGzacKDPOmtz7IPmcKhqAM\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \", \\\"kawaii\\\" (cute Japanese style).\\n* **Colors:** A glowing, pale yellow star on a purple and blue\"}],\"role\": \"model\"},\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 272,\"candidatesTokenCount\": 175,\"totalTokenCount\": 1561,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 14},{\"modality\": \"IMAGE\",\"tokenCount\": 258}],\"thoughtsTokenCount\": 1114},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"PwGzacKDPOmtz7IPmcKhqAM\"}\r\n\r\ndata: {\"candidates\": [{\"content\": {\"parts\": [{\"text\": \" gradient background.\\n* **Details:** The star has a blushing face, sparkles, and a long shadow or trail.\"}],\"role\": \"model\"},\"finishReason\": \"STOP\",\"index\": 0}],\"usageMetadata\": {\"promptTokenCount\": 272,\"candidatesTokenCount\": 200,\"totalTokenCount\": 1586,\"promptTokensDetails\": [{\"modality\": \"TEXT\",\"tokenCount\": 14},{\"modality\": \"IMAGE\",\"tokenCount\": 258}],\"thoughtsTokenCount\": 1114},\"modelVersion\": \"gemini-2.5-pro\",\"responseId\": \"PwGzacKDPOmtz7IPmcKhqAM\"}\r\n\r\n" headers: Content-Type: - text/event-stream status: 200 OK code: 200 - duration: 13.110220625s + duration: 11.166863667s diff --git a/providertests/testdata/TestImageUploadAgentStreaming/openai-gpt-5-stream.yaml b/providertests/testdata/TestImageUploadAgentStreaming/openai-gpt-5-stream.yaml index 51d8d5200059352c161da2849510cac7505ef9b2..66eaabde0abf17b85aa29653706b1d0212b0af8e 100644 --- a/providertests/testdata/TestImageUploadAgentStreaming/openai-gpt-5-stream.yaml +++ b/providertests/testdata/TestImageUploadAgentStreaming/openai-gpt-5-stream.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,57 +24,57 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"raRip0l73J"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"Br0zG82DAQ"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"A"},"finish_reason":null}],"usage":null,"obfuscation":"8CrJkrrq1z4"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"A"},"finish_reason":null}],"usage":null,"obfuscation":"EyK7pmEXjCE"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" cute"},"finish_reason":null}],"usage":null,"obfuscation":"5c6f05B"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" cute"},"finish_reason":null}],"usage":null,"obfuscation":"fIIMkxk"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" cartoon"},"finish_reason":null}],"usage":null,"obfuscation":"3eyk"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" cartoon"},"finish_reason":null}],"usage":null,"obfuscation":"d5q6"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" star"},"finish_reason":null}],"usage":null,"obfuscation":"pFNjqVq"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" star"},"finish_reason":null}],"usage":null,"obfuscation":"KcUVlIF"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" with"},"finish_reason":null}],"usage":null,"obfuscation":"zl76zei"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" with"},"finish_reason":null}],"usage":null,"obfuscation":"Y3rE5Wz"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" a"},"finish_reason":null}],"usage":null,"obfuscation":"yLrZnPwm3s"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" a"},"finish_reason":null}],"usage":null,"obfuscation":"OnpDsasVc3"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" face"},"finish_reason":null}],"usage":null,"obfuscation":"9wj1Lkt"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" face"},"finish_reason":null}],"usage":null,"obfuscation":"JiQUuMD"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" gl"},"finish_reason":null}],"usage":null,"obfuscation":"gCVYgUgmr"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" and"},"finish_reason":null}],"usage":null,"obfuscation":"ymjF5Hd7"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ides"},"finish_reason":null}],"usage":null,"obfuscation":"UC8yn7OQ"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" pink"},"finish_reason":null}],"usage":null,"obfuscation":"fA8Pcej"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" across"},"finish_reason":null}],"usage":null,"obfuscation":"luOry"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" cheeks"},"finish_reason":null}],"usage":null,"obfuscation":"ita1R"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" a"},"finish_reason":null}],"usage":null,"obfuscation":"k2wtvoxAkv"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"finish_reason":null}],"usage":null,"obfuscation":"60YGxL9MsBc"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" purple"},"finish_reason":null}],"usage":null,"obfuscation":"MJ2Yn"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" leaving"},"finish_reason":null}],"usage":null,"obfuscation":"OPEK"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" background"},"finish_reason":null}],"usage":null,"obfuscation":"x"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" a"},"finish_reason":null}],"usage":null,"obfuscation":"OPjfov5Jtk"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"finish_reason":null}],"usage":null,"obfuscation":"Q9c8GDMUB8Y"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" rainbow"},"finish_reason":null}],"usage":null,"obfuscation":"pSG8"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" leaving"},"finish_reason":null}],"usage":null,"obfuscation":"Lodx"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" trail"},"finish_reason":null}],"usage":null,"obfuscation":"jk6x7Y"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" a"},"finish_reason":null}],"usage":null,"obfuscation":"pFKlcPcImA"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" on"},"finish_reason":null}],"usage":null,"obfuscation":"2gPwOI9Tn"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" pastel"},"finish_reason":null}],"usage":null,"obfuscation":"6je3F"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" a"},"finish_reason":null}],"usage":null,"obfuscation":"ZNuLVV4Cuo"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" rainbow"},"finish_reason":null}],"usage":null,"obfuscation":"inA3"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" purple"},"finish_reason":null}],"usage":null,"obfuscation":"Y44ai"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" trail"},"finish_reason":null}],"usage":null,"obfuscation":"CXnkhv"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" background"},"finish_reason":null}],"usage":null,"obfuscation":"z"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" and"},"finish_reason":null}],"usage":null,"obfuscation":"27rhi5QH"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" with"},"finish_reason":null}],"usage":null,"obfuscation":"9TKwBaZ"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" spark"},"finish_reason":null}],"usage":null,"obfuscation":"ydh6YX"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" spark"},"finish_reason":null}],"usage":null,"obfuscation":"sp7bST"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"les"},"finish_reason":null}],"usage":null,"obfuscation":"DobyxEtid"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"les"},"finish_reason":null}],"usage":null,"obfuscation":"y9Um09cMK"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"finish_reason":null}],"usage":null,"obfuscation":"bReSLaCxorF"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"finish_reason":null}],"usage":null,"obfuscation":"c1eBpZg9Xbj"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"Jdcmk3"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"Gzw23s"} - data: {"id":"chatcmpl-CSjPPcAP5y1QNMmqqfd0YirKuEJSB","object":"chat.completion.chunk","created":1760963771,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":232,"completion_tokens":32,"total_tokens":264,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"FTTetrIYY"} + data: {"id":"chatcmpl-DIeksBH1CIj8AihMupNXRWkovHi2G","object":"chat.completion.chunk","created":1773338938,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":232,"completion_tokens":96,"total_tokens":328,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":64,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"ofHPtNkk"} data: [DONE] @@ -83,4 +83,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 2.69550725s + duration: 4.341286542s diff --git a/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/multi_tool.yaml b/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/multi_tool.yaml index 11fb20471927adaeac94b5c7469c133cab60decf..a828b4d21d4979ab12dad2fe12cc55123a68cc59 100644 --- a/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/multi_tool.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/multi_tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,9 +26,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CRdyxdsCExOS7bMCJ0q5fBEN9lCYM", + "id": "chatcmpl-DIgOpyNV7XwvLi4hv5AIERgkhr9r2", "object": "chat.completion", - "created": 1760704583, + "created": 1773345259, "model": "gpt-4o-mini-2024-07-18", "choices": [ { @@ -38,7 +38,7 @@ interactions: "content": null, "tool_calls": [ { - "id": "call_H0yMeWt85QiaFMjrlPqAyCYY", + "id": "call_EnBRBmuabMwppICaGr0KqkBZ", "type": "function", "function": { "name": "add", @@ -46,7 +46,7 @@ interactions: } }, { - "id": "call_Xh3xOMoQueLZUgW7HYVvwwql", + "id": "call_I5Wnsq0pwgt98vEg7f63nTZI", "type": "function", "function": { "name": "multiply", @@ -77,14 +77,14 @@ interactions: } }, "service_tier": "default", - "system_fingerprint": "fp_560af6e559" + "system_fingerprint": "fp_a1681c17ec" } headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.030219167s + duration: 1.068009292s - id: 1 request: proto: HTTP/1.1 @@ -92,14 +92,14 @@ interactions: proto_minor: 1 content_length: 1247 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"},{"tool_calls":[{"id":"call_H0yMeWt85QiaFMjrlPqAyCYY","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_Xh3xOMoQueLZUgW7HYVvwwql","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_H0yMeWt85QiaFMjrlPqAyCYY","role":"tool"},{"content":"6","tool_call_id":"call_Xh3xOMoQueLZUgW7HYVvwwql","role":"tool"}],"model":"gpt-4o-mini","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"}]}' + 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":"call_EnBRBmuabMwppICaGr0KqkBZ","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_I5Wnsq0pwgt98vEg7f63nTZI","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_EnBRBmuabMwppICaGr0KqkBZ","role":"tool"},{"content":"6","tool_call_id":"call_I5Wnsq0pwgt98vEg7f63nTZI","role":"tool"}],"model":"gpt-4o-mini","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 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -110,9 +110,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CRdyzVF8CB8APitB5WP6J9QSdWilT", + "id": "chatcmpl-DIgOqNuKd78j1HHOtDjbirEaWUqtl", "object": "chat.completion", - "created": 1760704585, + "created": 1773345260, "model": "gpt-4o-mini-2024-07-18", "choices": [ { @@ -143,11 +143,11 @@ interactions: } }, "service_tier": "default", - "system_fingerprint": "fp_560af6e559" + "system_fingerprint": "fp_a1681c17ec" } headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 987.804708ms + duration: 919.718333ms diff --git a/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/multi_tool_streaming.yaml b/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/multi_tool_streaming.yaml index cbf4d3537007b84b3e81af6381806ffb4d3106aa..3ac5185fc89bdfbb96a7adaa003909c4e457271e 100644 --- a/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/multi_tool_streaming.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/multi_tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,31 +24,31 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CRdz0aS9mqbcyCuvqkNMoVXDUraLn","object":"chat.completion.chunk","created":1760704586,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","usage":null,"choices":[{"index":0,"delta":{"role":"assistant","content":null},"logprobs":null,"finish_reason":null}],"obfuscation":"icfARx"} + data: {"id":"chatcmpl-DIgOrid9As2KRUSwbF3yxoewtUUhz","object":"chat.completion.chunk","created":1773345261,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","usage":null,"choices":[{"index":0,"delta":{"role":"assistant","content":null},"logprobs":null,"finish_reason":null}],"obfuscation":"KIjm2E"} - data: {"id":"chatcmpl-CRdz0aS9mqbcyCuvqkNMoVXDUraLn","object":"chat.completion.chunk","created":1760704586,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"call_vgTL4QSVMl9ocwrlDENBvKCl","type":"function","function":{"name":"add","arguments":""}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"feBbOJXFBL4EO"} + data: {"id":"chatcmpl-DIgOrid9As2KRUSwbF3yxoewtUUhz","object":"chat.completion.chunk","created":1773345261,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"call_4ifjNdHz0FdUYGSOEoJhug4a","type":"function","function":{"name":"add","arguments":""}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"5II9VlxoYyNJA"} - data: {"id":"chatcmpl-CRdz0aS9mqbcyCuvqkNMoVXDUraLn","object":"chat.completion.chunk","created":1760704586,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"a\""}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"VkgJFOcIZbR"} + data: {"id":"chatcmpl-DIgOrid9As2KRUSwbF3yxoewtUUhz","object":"chat.completion.chunk","created":1773345261,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"a\""}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"UJ2FiL4T4Y9"} - data: {"id":"chatcmpl-CRdz0aS9mqbcyCuvqkNMoVXDUraLn","object":"chat.completion.chunk","created":1760704586,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":": 2, "}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"3w2natY0RoGc"} + data: {"id":"chatcmpl-DIgOrid9As2KRUSwbF3yxoewtUUhz","object":"chat.completion.chunk","created":1773345261,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":": 2, "}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"foSkpbnmDEL3"} - data: {"id":"chatcmpl-CRdz0aS9mqbcyCuvqkNMoVXDUraLn","object":"chat.completion.chunk","created":1760704586,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"b\": 3"}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"36y1gHQIT"} + data: {"id":"chatcmpl-DIgOrid9As2KRUSwbF3yxoewtUUhz","object":"chat.completion.chunk","created":1773345261,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"b\": 3"}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"KETPJkl7j"} - data: {"id":"chatcmpl-CRdz0aS9mqbcyCuvqkNMoVXDUraLn","object":"chat.completion.chunk","created":1760704586,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"}"}}]},"logprobs":null,"finish_reason":null}],"obfuscation":""} + data: {"id":"chatcmpl-DIgOrid9As2KRUSwbF3yxoewtUUhz","object":"chat.completion.chunk","created":1773345261,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"}"}}]},"logprobs":null,"finish_reason":null}],"obfuscation":""} - data: {"id":"chatcmpl-CRdz0aS9mqbcyCuvqkNMoVXDUraLn","object":"chat.completion.chunk","created":1760704586,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"call_0163ysRAfpd1kX8JEsq8piJv","type":"function","function":{"name":"multiply","arguments":""}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"dWNz2rVl"} + data: {"id":"chatcmpl-DIgOrid9As2KRUSwbF3yxoewtUUhz","object":"chat.completion.chunk","created":1773345261,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"call_sXf7ZGvQxWZWcqH7dp0F1Fd6","type":"function","function":{"name":"multiply","arguments":""}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"ml2N4dAQ"} - data: {"id":"chatcmpl-CRdz0aS9mqbcyCuvqkNMoVXDUraLn","object":"chat.completion.chunk","created":1760704586,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"a\""}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"ko1uYx2756e"} + data: {"id":"chatcmpl-DIgOrid9As2KRUSwbF3yxoewtUUhz","object":"chat.completion.chunk","created":1773345261,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"a\""}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"rUc5ZQTYGRR"} - data: {"id":"chatcmpl-CRdz0aS9mqbcyCuvqkNMoVXDUraLn","object":"chat.completion.chunk","created":1760704586,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":": 2, "}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"8ty7XqR7h2EW"} + data: {"id":"chatcmpl-DIgOrid9As2KRUSwbF3yxoewtUUhz","object":"chat.completion.chunk","created":1773345261,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":": 2, "}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"jWFhTtti2n56"} - data: {"id":"chatcmpl-CRdz0aS9mqbcyCuvqkNMoVXDUraLn","object":"chat.completion.chunk","created":1760704586,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"\"b\": 3"}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"iD4RWBFbS"} + data: {"id":"chatcmpl-DIgOrid9As2KRUSwbF3yxoewtUUhz","object":"chat.completion.chunk","created":1773345261,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"\"b\": 3"}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"MGZKJclaE"} - data: {"id":"chatcmpl-CRdz0aS9mqbcyCuvqkNMoVXDUraLn","object":"chat.completion.chunk","created":1760704586,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"}"}}]},"logprobs":null,"finish_reason":null}],"obfuscation":""} + data: {"id":"chatcmpl-DIgOrid9As2KRUSwbF3yxoewtUUhz","object":"chat.completion.chunk","created":1773345261,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"}"}}]},"logprobs":null,"finish_reason":null}],"obfuscation":""} - data: {"id":"chatcmpl-CRdz0aS9mqbcyCuvqkNMoVXDUraLn","object":"chat.completion.chunk","created":1760704586,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}],"usage":null,"obfuscation":"vknFSfxKgFJlLl9"} + data: {"id":"chatcmpl-DIgOrid9As2KRUSwbF3yxoewtUUhz","object":"chat.completion.chunk","created":1773345261,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}],"usage":null,"obfuscation":"WDrV0BQzF3Ss5V4"} - data: {"id":"chatcmpl-CRdz0aS9mqbcyCuvqkNMoVXDUraLn","object":"chat.completion.chunk","created":1760704586,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[],"usage":{"prompt_tokens":106,"completion_tokens":50,"total_tokens":156,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"hms0Yf0n"} + data: {"id":"chatcmpl-DIgOrid9As2KRUSwbF3yxoewtUUhz","object":"chat.completion.chunk","created":1773345261,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[],"usage":{"prompt_tokens":106,"completion_tokens":50,"total_tokens":156,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"ouYIhbAX"} data: [DONE] @@ -57,7 +57,7 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 1.538896292s + duration: 1.289255208s - id: 1 request: proto: HTTP/1.1 @@ -65,14 +65,14 @@ interactions: proto_minor: 1 content_length: 1284 host: "" - body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_vgTL4QSVMl9ocwrlDENBvKCl","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_0163ysRAfpd1kX8JEsq8piJv","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_vgTL4QSVMl9ocwrlDENBvKCl","role":"tool"},{"content":"6","tool_call_id":"call_0163ysRAfpd1kX8JEsq8piJv","role":"tool"}],"model":"gpt-4o-mini","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}' + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_4ifjNdHz0FdUYGSOEoJhug4a","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_sXf7ZGvQxWZWcqH7dp0F1Fd6","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_4ifjNdHz0FdUYGSOEoJhug4a","role":"tool"},{"content":"6","tool_call_id":"call_sXf7ZGvQxWZWcqH7dp0F1Fd6","role":"tool"}],"model":"gpt-4o-mini","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 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -81,61 +81,61 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"6SLbBHqzK"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"iPkRpouE3"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"q75QdzGc"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"uFgdCLVK"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" sum"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"JkSJSpe"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":" sum"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"DmLl7W4"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" of"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Fi2wspyk"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":" of"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"isI5xJ0H"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"RXvBB9PXzG"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"23VLqcXjZ5"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"2"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"ujYHkroCfT"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":"2"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"DHjCxmy9nu"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"ITQLTFp"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"dbmEjqi"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"E7m6MjfMt3"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Zby0mr05uY"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"DRYRaSiTRa"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"QXvqz9CSR6"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"nqa6qObb"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"hb1heBYd"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"y4ntGcWHia"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"EUG6qi40bZ"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"5"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Oqqu6A6xuL"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":"5"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"pLrMiYkMuw"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"KJoWB4TVlb"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"qTrg7i7BDa"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"vkqbtjX"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"sjLzOoh"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"QS86hO5"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"sSKfhps"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" product"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"FJu"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":" product"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Hoz"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" of"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Ro4WzpG2"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":" of"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"K4INnxUr"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"oCIJrrf6Bp"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"zVLvNRoJjQ"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"2"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"F10Kbuq9sR"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":"2"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"uDfLn970EF"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"MM5G9Kp"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"1WswduC"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"XTzTNroRtq"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"OzA4VE5hxx"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"xGzeZa2yza"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Li2BWG59Kg"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"N6A8H4NU"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"zoFWV8hK"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"mS71DW3IyN"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"fRkwbjtnEL"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"6"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"mCm2RXW0k6"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":"6"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"sj2SqrLm21"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"GQdrwWteKo"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"H5GxEzH5ir"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"416kd"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"Jkxho"} - data: {"id":"chatcmpl-CRdz21hccnb76Tjoh5ZtYfJ7qUcKS","object":"chat.completion.chunk","created":1760704588,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[],"usage":{"prompt_tokens":172,"completion_tokens":26,"total_tokens":198,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"JbBHLqxI"} + data: {"id":"chatcmpl-DIgOuEkd6Uqq8tPXdk2MbDIioWtU8","object":"chat.completion.chunk","created":1773345264,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_7cd1a06d3a","choices":[],"usage":{"prompt_tokens":172,"completion_tokens":26,"total_tokens":198,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"G3Jrdl0n"} data: [DONE] @@ -144,4 +144,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 737.127958ms + duration: 2.556743167s diff --git a/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/simple.yaml b/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/simple.yaml index 1d267cf1c2d854ee11ea7dfea1e0825dcd000c9c..1d9b12e9370307c99d4d2fa882240f0ca06ac026 100644 --- a/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/simple.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,9 +26,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CRdysIxOQVTFiu9TMRyxiiYHHQyTj", + "id": "chatcmpl-DIgOi0wgNHF0PWeEoYnbNXVQaA7a3", "object": "chat.completion", - "created": 1760704578, + "created": 1773345252, "model": "gpt-4o-mini-2024-07-18", "choices": [ { @@ -59,11 +59,11 @@ interactions: } }, "service_tier": "default", - "system_fingerprint": "fp_560af6e559" + "system_fingerprint": "fp_a1681c17ec" } headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 902.366208ms + duration: 1.318546791s diff --git a/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/simple_streaming.yaml b/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/simple_streaming.yaml index f27ef625824fa9f7b7d598a79dd7f77c0a13d1a5..89b9563042d8b84e68dc643dd0cfb1836f7432ae 100644 --- a/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/simple_streaming.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,31 +24,15 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CRdytk5LO0hrSMS9Co5OPHLFCuLSF","object":"chat.completion.chunk","created":1760704579,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"dNrgk6KCj"} + data: {"id":"chatcmpl-DIgOjQDzOMnHOjRXh6hE6jYDE9H1R","object":"chat.completion.chunk","created":1773345253,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"EMaSS8R31"} - data: {"id":"chatcmpl-CRdytk5LO0hrSMS9Co5OPHLFCuLSF","object":"chat.completion.chunk","created":1760704579,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"Hi"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"wRjU25PHG"} + data: {"id":"chatcmpl-DIgOjQDzOMnHOjRXh6hE6jYDE9H1R","object":"chat.completion.chunk","created":1773345253,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"content":"Olá"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"LMZtYIzA"} - data: {"id":"chatcmpl-CRdytk5LO0hrSMS9Co5OPHLFCuLSF","object":"chat.completion.chunk","created":1760704579,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"!"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"li6Xgje1BS"} + data: {"id":"chatcmpl-DIgOjQDzOMnHOjRXh6hE6jYDE9H1R","object":"chat.completion.chunk","created":1773345253,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"content":"!"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"EMk88ywTIH"} - data: {"id":"chatcmpl-CRdytk5LO0hrSMS9Co5OPHLFCuLSF","object":"chat.completion.chunk","created":1760704579,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" In"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"3rRemht7"} + data: {"id":"chatcmpl-DIgOjQDzOMnHOjRXh6hE6jYDE9H1R","object":"chat.completion.chunk","created":1773345253,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"EDwkM"} - data: {"id":"chatcmpl-CRdytk5LO0hrSMS9Co5OPHLFCuLSF","object":"chat.completion.chunk","created":1760704579,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" Portuguese"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":""} - - data: {"id":"chatcmpl-CRdytk5LO0hrSMS9Co5OPHLFCuLSF","object":"chat.completion.chunk","created":1760704579,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"S0Wp8u71lq"} - - data: {"id":"chatcmpl-CRdytk5LO0hrSMS9Co5OPHLFCuLSF","object":"chat.completion.chunk","created":1760704579,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" you"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"gsbpPtV"} - - data: {"id":"chatcmpl-CRdytk5LO0hrSMS9Co5OPHLFCuLSF","object":"chat.completion.chunk","created":1760704579,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" say"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"LBoNQFN"} - - data: {"id":"chatcmpl-CRdytk5LO0hrSMS9Co5OPHLFCuLSF","object":"chat.completion.chunk","created":1760704579,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" \""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Bgm7GOfe"} - - data: {"id":"chatcmpl-CRdytk5LO0hrSMS9Co5OPHLFCuLSF","object":"chat.completion.chunk","created":1760704579,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"Olá"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"CmJzapI9"} - - data: {"id":"chatcmpl-CRdytk5LO0hrSMS9Co5OPHLFCuLSF","object":"chat.completion.chunk","created":1760704579,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"!\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"dtukc2xn"} - - data: {"id":"chatcmpl-CRdytk5LO0hrSMS9Co5OPHLFCuLSF","object":"chat.completion.chunk","created":1760704579,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"nYn46"} - - data: {"id":"chatcmpl-CRdytk5LO0hrSMS9Co5OPHLFCuLSF","object":"chat.completion.chunk","created":1760704579,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[],"usage":{"prompt_tokens":20,"completion_tokens":10,"total_tokens":30,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"wXXaHiliFF"} + data: {"id":"chatcmpl-DIgOjQDzOMnHOjRXh6hE6jYDE9H1R","object":"chat.completion.chunk","created":1773345253,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[],"usage":{"prompt_tokens":20,"completion_tokens":2,"total_tokens":22,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"IdvJnRouyrt"} data: [DONE] @@ -57,4 +41,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 566.636417ms + duration: 1.139285s diff --git a/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/tool.yaml b/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/tool.yaml index 8e7ec09a5430c8b2483c1a35e8fd0772554294e7..3072a1dd14af8cdc6568d66ac2d423ee3cb5f13d 100644 --- a/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/tool.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,9 +26,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CRdyuS0DEOR3GgR76SLPKqPiwPIAt", + "id": "chatcmpl-DIgOk3gewlmBhJ4mFyuXsOd49PGCv", "object": "chat.completion", - "created": 1760704580, + "created": 1773345254, "model": "gpt-4o-mini-2024-07-18", "choices": [ { @@ -38,7 +38,7 @@ interactions: "content": null, "tool_calls": [ { - "id": "call_2uH56RhZZbC8djqCn7cxRyKl", + "id": "call_Uc7i7ZjQl7pcDrnYSnUx8sEy", "type": "function", "function": { "name": "weather", @@ -69,14 +69,14 @@ interactions: } }, "service_tier": "default", - "system_fingerprint": "fp_560af6e559" + "system_fingerprint": "fp_a1681c17ec" } headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.057664375s + duration: 1.030302416s - id: 1 request: proto: HTTP/1.1 @@ -84,14 +84,14 @@ interactions: proto_minor: 1 content_length: 705 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_2uH56RhZZbC8djqCn7cxRyKl","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_2uH56RhZZbC8djqCn7cxRyKl","role":"tool"}],"model":"gpt-4o-mini","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"}]}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_Uc7i7ZjQl7pcDrnYSnUx8sEy","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_Uc7i7ZjQl7pcDrnYSnUx8sEy","role":"tool"}],"model":"gpt-4o-mini","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 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -102,9 +102,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CRdyvMVFPOfa2G1IC80Js9jy1xIE0", + "id": "chatcmpl-DIgOlYuRMeVlZ68uQ38PADSFTUQ72", "object": "chat.completion", - "created": 1760704581, + "created": 1773345255, "model": "gpt-4o-mini-2024-07-18", "choices": [ { @@ -135,11 +135,11 @@ interactions: } }, "service_tier": "default", - "system_fingerprint": "fp_560af6e559" + "system_fingerprint": "fp_a1681c17ec" } headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 933.192292ms + duration: 798.836292ms diff --git a/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/tool_streaming.yaml b/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/tool_streaming.yaml index 2fc71eadd02f93d98ba8b21ee82ad2d3f70c394c..72cf9c5d3fceaa353714098ea64969256d86a0cc 100644 --- a/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/tool_streaming.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-gpt-4o-mini/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,27 +24,27 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CRdywA4dbuMAJLXVP860cVgCKV8Jz","object":"chat.completion.chunk","created":1760704582,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_eOpGKcIP7rzEsLNRtEm9K6mx","type":"function","function":{"name":"weather","arguments":""}}],"refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"M7LBWEuz"} + data: {"id":"chatcmpl-DIgOoYfoXo6zS9kmetYbWUShG5Dhl","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_XErNUDi099mgWToFoqmibkKR","type":"function","function":{"name":"weather","arguments":""}}],"refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"8oRX7pI1"} - data: {"id":"chatcmpl-CRdywA4dbuMAJLXVP860cVgCKV8Jz","object":"chat.completion.chunk","created":1760704582,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\""}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"y0wRfvzAfc7Gwp"} + data: {"id":"chatcmpl-DIgOoYfoXo6zS9kmetYbWUShG5Dhl","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\""}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"e65aHQEPK8iPfV"} - data: {"id":"chatcmpl-CRdywA4dbuMAJLXVP860cVgCKV8Jz","object":"chat.completion.chunk","created":1760704582,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"location"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"l4ftT9t8s"} + data: {"id":"chatcmpl-DIgOoYfoXo6zS9kmetYbWUShG5Dhl","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"location"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"p2m8oASmu"} - data: {"id":"chatcmpl-CRdywA4dbuMAJLXVP860cVgCKV8Jz","object":"chat.completion.chunk","created":1760704582,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\":\""}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"egmKNDffXaU3"} + data: {"id":"chatcmpl-DIgOoYfoXo6zS9kmetYbWUShG5Dhl","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\":\""}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"0qqtI2gKFGte"} - data: {"id":"chatcmpl-CRdywA4dbuMAJLXVP860cVgCKV8Jz","object":"chat.completion.chunk","created":1760704582,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Flor"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"GG1ybnr1YrkNG"} + data: {"id":"chatcmpl-DIgOoYfoXo6zS9kmetYbWUShG5Dhl","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Flor"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"4giRkUUQzoYHi"} - data: {"id":"chatcmpl-CRdywA4dbuMAJLXVP860cVgCKV8Jz","object":"chat.completion.chunk","created":1760704582,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ence"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"bSU8KmpVhJmCU"} + data: {"id":"chatcmpl-DIgOoYfoXo6zS9kmetYbWUShG5Dhl","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ence"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Csa2Nw3twNpj8"} - data: {"id":"chatcmpl-CRdywA4dbuMAJLXVP860cVgCKV8Jz","object":"chat.completion.chunk","created":1760704582,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":","}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":""} + data: {"id":"chatcmpl-DIgOoYfoXo6zS9kmetYbWUShG5Dhl","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":","}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":""} - data: {"id":"chatcmpl-CRdywA4dbuMAJLXVP860cVgCKV8Jz","object":"chat.completion.chunk","created":1760704582,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" Italy"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"iRxnuJP3cpr"} + data: {"id":"chatcmpl-DIgOoYfoXo6zS9kmetYbWUShG5Dhl","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" Italy"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"JnmXDVfI7YV"} - data: {"id":"chatcmpl-CRdywA4dbuMAJLXVP860cVgCKV8Jz","object":"chat.completion.chunk","created":1760704582,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"}"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"QBAmqhvyRFjbCZ"} + data: {"id":"chatcmpl-DIgOoYfoXo6zS9kmetYbWUShG5Dhl","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"}"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"BLMNTFueRdKI86"} - data: {"id":"chatcmpl-CRdywA4dbuMAJLXVP860cVgCKV8Jz","object":"chat.completion.chunk","created":1760704582,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}],"usage":null,"obfuscation":"3ebmRJY6jIoVVSq"} + data: {"id":"chatcmpl-DIgOoYfoXo6zS9kmetYbWUShG5Dhl","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}],"usage":null,"obfuscation":"oXtxunLJ6zZiVak"} - data: {"id":"chatcmpl-CRdywA4dbuMAJLXVP860cVgCKV8Jz","object":"chat.completion.chunk","created":1760704582,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[],"usage":{"prompt_tokens":61,"completion_tokens":16,"total_tokens":77,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"9htLycow0a"} + data: {"id":"chatcmpl-DIgOoYfoXo6zS9kmetYbWUShG5Dhl","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[],"usage":{"prompt_tokens":61,"completion_tokens":16,"total_tokens":77,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"lQh7fF5Szf"} data: [DONE] @@ -53,7 +53,7 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 680.827667ms + duration: 2.459145959s - id: 1 request: proto: HTTP/1.1 @@ -61,14 +61,14 @@ interactions: proto_minor: 1 content_length: 759 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_eOpGKcIP7rzEsLNRtEm9K6mx","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_eOpGKcIP7rzEsLNRtEm9K6mx","role":"tool"}],"model":"gpt-4o-mini","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}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_XErNUDi099mgWToFoqmibkKR","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_XErNUDi099mgWToFoqmibkKR","role":"tool"}],"model":"gpt-4o-mini","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 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -77,35 +77,37 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CRdyx1hGexd66KC0T4iMnborWhkbJ","object":"chat.completion.chunk","created":1760704583,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"uB0vXwmAg"} + data: {"id":"chatcmpl-DIgOoZgbGnQLjS6lVv4L1jjouBbQN","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"d9W4jhR2Q"} - data: {"id":"chatcmpl-CRdyx1hGexd66KC0T4iMnborWhkbJ","object":"chat.completion.chunk","created":1760704583,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"bXKWncif"} + data: {"id":"chatcmpl-DIgOoZgbGnQLjS6lVv4L1jjouBbQN","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"RxX2JDg2"} - data: {"id":"chatcmpl-CRdyx1hGexd66KC0T4iMnborWhkbJ","object":"chat.completion.chunk","created":1760704583,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" weather"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"5VH"} + data: {"id":"chatcmpl-DIgOoZgbGnQLjS6lVv4L1jjouBbQN","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"content":" current"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"2de"} - data: {"id":"chatcmpl-CRdyx1hGexd66KC0T4iMnborWhkbJ","object":"chat.completion.chunk","created":1760704583,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"cOVYqBuN"} + data: {"id":"chatcmpl-DIgOoZgbGnQLjS6lVv4L1jjouBbQN","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"content":" weather"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"uBL"} - data: {"id":"chatcmpl-CRdyx1hGexd66KC0T4iMnborWhkbJ","object":"chat.completion.chunk","created":1760704583,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" Florence"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"qn"} + data: {"id":"chatcmpl-DIgOoZgbGnQLjS6lVv4L1jjouBbQN","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"bnNxmJcu"} - data: {"id":"chatcmpl-CRdyx1hGexd66KC0T4iMnborWhkbJ","object":"chat.completion.chunk","created":1760704583,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"ETVXMoB3wo"} + data: {"id":"chatcmpl-DIgOoZgbGnQLjS6lVv4L1jjouBbQN","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"content":" Florence"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"ih"} - data: {"id":"chatcmpl-CRdyx1hGexd66KC0T4iMnborWhkbJ","object":"chat.completion.chunk","created":1760704583,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" Italy"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"TJueB"} + data: {"id":"chatcmpl-DIgOoZgbGnQLjS6lVv4L1jjouBbQN","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"E5r2OnVUvN"} - data: {"id":"chatcmpl-CRdyx1hGexd66KC0T4iMnborWhkbJ","object":"chat.completion.chunk","created":1760704583,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"2dXikvHR"} + data: {"id":"chatcmpl-DIgOoZgbGnQLjS6lVv4L1jjouBbQN","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"content":" Italy"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"nkCRe"} - data: {"id":"chatcmpl-CRdyx1hGexd66KC0T4iMnborWhkbJ","object":"chat.completion.chunk","created":1760704583,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" currently"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"U"} + data: {"id":"chatcmpl-DIgOoZgbGnQLjS6lVv4L1jjouBbQN","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"c7agRoxZtL"} - data: {"id":"chatcmpl-CRdyx1hGexd66KC0T4iMnborWhkbJ","object":"chat.completion.chunk","created":1760704583,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"SJvYbm15DI"} + data: {"id":"chatcmpl-DIgOoZgbGnQLjS6lVv4L1jjouBbQN","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"v4wHx0z7"} - data: {"id":"chatcmpl-CRdyx1hGexd66KC0T4iMnborWhkbJ","object":"chat.completion.chunk","created":1760704583,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"40"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"MmF8rVRCD"} + data: {"id":"chatcmpl-DIgOoZgbGnQLjS6lVv4L1jjouBbQN","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"NiwZnu2XCJ"} - data: {"id":"chatcmpl-CRdyx1hGexd66KC0T4iMnborWhkbJ","object":"chat.completion.chunk","created":1760704583,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"°C"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"6apyDO2Sn"} + data: {"id":"chatcmpl-DIgOoZgbGnQLjS6lVv4L1jjouBbQN","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"content":"40"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"1U6vC0Gys"} - data: {"id":"chatcmpl-CRdyx1hGexd66KC0T4iMnborWhkbJ","object":"chat.completion.chunk","created":1760704583,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"10hdWpCjhh"} + data: {"id":"chatcmpl-DIgOoZgbGnQLjS6lVv4L1jjouBbQN","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"content":"°C"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Kpm3jGVsv"} - data: {"id":"chatcmpl-CRdyx1hGexd66KC0T4iMnborWhkbJ","object":"chat.completion.chunk","created":1760704583,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"CFuXa"} + data: {"id":"chatcmpl-DIgOoZgbGnQLjS6lVv4L1jjouBbQN","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"1jiir8qG5L"} - data: {"id":"chatcmpl-CRdyx1hGexd66KC0T4iMnborWhkbJ","object":"chat.completion.chunk","created":1760704583,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[],"usage":{"prompt_tokens":86,"completion_tokens":13,"total_tokens":99,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"G7mYdCwtgy"} + data: {"id":"chatcmpl-DIgOoZgbGnQLjS6lVv4L1jjouBbQN","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"rBR4p"} + + data: {"id":"chatcmpl-DIgOoZgbGnQLjS6lVv4L1jjouBbQN","object":"chat.completion.chunk","created":1773345258,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1681c17ec","choices":[],"usage":{"prompt_tokens":86,"completion_tokens":14,"total_tokens":100,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"4l6fU0Kp9"} data: [DONE] @@ -114,4 +116,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 434.186417ms + duration: 488.971083ms diff --git a/providertests/testdata/TestOpenAICommon/openai-gpt-4o/multi_tool.yaml b/providertests/testdata/TestOpenAICommon/openai-gpt-4o/multi_tool.yaml index dc675015a6ff4249a1863549debda68f9dbf9865..eadc31f04e387e02ade9b60f0f2a84213bce4013 100644 --- a/providertests/testdata/TestOpenAICommon/openai-gpt-4o/multi_tool.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-gpt-4o/multi_tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,9 +26,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CRdyoWcDq406PCUaEpBjaiqUGhoI3", + "id": "chatcmpl-DIgObeNUTgd3mKUPL1g6ygkN3DvM3", "object": "chat.completion", - "created": 1760704574, + "created": 1773345245, "model": "gpt-4o-2024-08-06", "choices": [ { @@ -38,7 +38,7 @@ interactions: "content": null, "tool_calls": [ { - "id": "call_Cg9itjRbJ4NYAZEbIwcSiEJZ", + "id": "call_NcgoJ9yG7B80xYdhs8G5ISBr", "type": "function", "function": { "name": "add", @@ -46,7 +46,7 @@ interactions: } }, { - "id": "call_sSIhNbcU2Ap95fBjcsScrTMz", + "id": "call_aQxN06JVJjD8r0thA3lblynG", "type": "function", "function": { "name": "multiply", @@ -77,14 +77,14 @@ interactions: } }, "service_tier": "default", - "system_fingerprint": "fp_f64f290af2" + "system_fingerprint": "fp_44968754fe" } headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.503138709s + duration: 936.560625ms - id: 1 request: proto: HTTP/1.1 @@ -92,14 +92,14 @@ interactions: proto_minor: 1 content_length: 1242 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"},{"tool_calls":[{"id":"call_Cg9itjRbJ4NYAZEbIwcSiEJZ","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_sSIhNbcU2Ap95fBjcsScrTMz","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_Cg9itjRbJ4NYAZEbIwcSiEJZ","role":"tool"},{"content":"6","tool_call_id":"call_sSIhNbcU2Ap95fBjcsScrTMz","role":"tool"}],"model":"gpt-4o","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"}]}' + 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":"call_NcgoJ9yG7B80xYdhs8G5ISBr","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_aQxN06JVJjD8r0thA3lblynG","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_NcgoJ9yG7B80xYdhs8G5ISBr","role":"tool"},{"content":"6","tool_call_id":"call_aQxN06JVJjD8r0thA3lblynG","role":"tool"}],"model":"gpt-4o","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 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -110,9 +110,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CRdyq4Im6cnYdhDwDtM3utmxVrohv", + "id": "chatcmpl-DIgOcsNyS14lIbIkrInRiwiEleYkg", "object": "chat.completion", - "created": 1760704576, + "created": 1773345246, "model": "gpt-4o-2024-08-06", "choices": [ { @@ -143,11 +143,11 @@ interactions: } }, "service_tier": "default", - "system_fingerprint": "fp_f64f290af2" + "system_fingerprint": "fp_44968754fe" } headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 632.902333ms + duration: 1.17854075s diff --git a/providertests/testdata/TestOpenAICommon/openai-gpt-4o/multi_tool_streaming.yaml b/providertests/testdata/TestOpenAICommon/openai-gpt-4o/multi_tool_streaming.yaml index 23f237bbf813e2d6013118d2aed4aa9a757e08e4..bdf2e29e2b54e270f5d11338e9c5b74246492153 100644 --- a/providertests/testdata/TestOpenAICommon/openai-gpt-4o/multi_tool_streaming.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-gpt-4o/multi_tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,31 +24,31 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CRdyrlpgfyiFlAAnoiflUbvXhNUGP","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","usage":null,"choices":[{"index":0,"delta":{"role":"assistant","content":null},"logprobs":null,"finish_reason":null}],"obfuscation":"OHGcRuhO4A4"} + data: {"id":"chatcmpl-DIgOgnbt21sEHKKTkWWAUf2BiMy3T","object":"chat.completion.chunk","created":1773345250,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","usage":null,"choices":[{"index":0,"delta":{"role":"assistant","content":null},"logprobs":null,"finish_reason":null}],"obfuscation":"iVMxB4bDtxB"} - data: {"id":"chatcmpl-CRdyrlpgfyiFlAAnoiflUbvXhNUGP","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"call_43EjiXfsjRlSfqUDWptDvMBZ","type":"function","function":{"name":"add","arguments":""}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"Zz"} + data: {"id":"chatcmpl-DIgOgnbt21sEHKKTkWWAUf2BiMy3T","object":"chat.completion.chunk","created":1773345250,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"call_lhJr4dWBxpVpf9LjGfERTy62","type":"function","function":{"name":"add","arguments":""}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"KE"} - data: {"id":"chatcmpl-CRdyrlpgfyiFlAAnoiflUbvXhNUGP","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"a\""}}]},"logprobs":null,"finish_reason":null}],"obfuscation":""} + data: {"id":"chatcmpl-DIgOgnbt21sEHKKTkWWAUf2BiMy3T","object":"chat.completion.chunk","created":1773345250,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"a\""}}]},"logprobs":null,"finish_reason":null}],"obfuscation":""} - data: {"id":"chatcmpl-CRdyrlpgfyiFlAAnoiflUbvXhNUGP","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":": 2, "}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"X"} + data: {"id":"chatcmpl-DIgOgnbt21sEHKKTkWWAUf2BiMy3T","object":"chat.completion.chunk","created":1773345250,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":": 2, "}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"S"} - data: {"id":"chatcmpl-CRdyrlpgfyiFlAAnoiflUbvXhNUGP","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"b\": 3"}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"m5lvJ0jw20BTZs"} + data: {"id":"chatcmpl-DIgOgnbt21sEHKKTkWWAUf2BiMy3T","object":"chat.completion.chunk","created":1773345250,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"b\": 3"}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"Bx6KS6Kn5SaKPa"} - data: {"id":"chatcmpl-CRdyrlpgfyiFlAAnoiflUbvXhNUGP","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"}"}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"uM0Ca"} + data: {"id":"chatcmpl-DIgOgnbt21sEHKKTkWWAUf2BiMy3T","object":"chat.completion.chunk","created":1773345250,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"}"}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"6608q"} - data: {"id":"chatcmpl-CRdyrlpgfyiFlAAnoiflUbvXhNUGP","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"call_xHjbYtQqq9gsbadfjB3Vpjde","type":"function","function":{"name":"multiply","arguments":""}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"u39m7n3pFddmq"} + data: {"id":"chatcmpl-DIgOgnbt21sEHKKTkWWAUf2BiMy3T","object":"chat.completion.chunk","created":1773345250,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"call_o97Fs8Ray28WjwotGOcB6vXB","type":"function","function":{"name":"multiply","arguments":""}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"WBOuHOUc04gzs"} - data: {"id":"chatcmpl-CRdyrlpgfyiFlAAnoiflUbvXhNUGP","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"a\""}}]},"logprobs":null,"finish_reason":null}],"obfuscation":""} + data: {"id":"chatcmpl-DIgOgnbt21sEHKKTkWWAUf2BiMy3T","object":"chat.completion.chunk","created":1773345250,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"a\""}}]},"logprobs":null,"finish_reason":null}],"obfuscation":""} - data: {"id":"chatcmpl-CRdyrlpgfyiFlAAnoiflUbvXhNUGP","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":": 2, "}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"Z"} + data: {"id":"chatcmpl-DIgOgnbt21sEHKKTkWWAUf2BiMy3T","object":"chat.completion.chunk","created":1773345250,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":": 2, "}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"h"} - data: {"id":"chatcmpl-CRdyrlpgfyiFlAAnoiflUbvXhNUGP","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"\"b\": 3"}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"fk12n2in3eYPHY"} + data: {"id":"chatcmpl-DIgOgnbt21sEHKKTkWWAUf2BiMy3T","object":"chat.completion.chunk","created":1773345250,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"\"b\": 3"}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"n5afZuErja0bFi"} - data: {"id":"chatcmpl-CRdyrlpgfyiFlAAnoiflUbvXhNUGP","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"}"}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"XS0QR"} + data: {"id":"chatcmpl-DIgOgnbt21sEHKKTkWWAUf2BiMy3T","object":"chat.completion.chunk","created":1773345250,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"}"}}]},"logprobs":null,"finish_reason":null}],"obfuscation":"EQXsc"} - data: {"id":"chatcmpl-CRdyrlpgfyiFlAAnoiflUbvXhNUGP","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}],"usage":null,"obfuscation":"J1Fr"} + data: {"id":"chatcmpl-DIgOgnbt21sEHKKTkWWAUf2BiMy3T","object":"chat.completion.chunk","created":1773345250,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}],"usage":null,"obfuscation":"dxl0"} - data: {"id":"chatcmpl-CRdyrlpgfyiFlAAnoiflUbvXhNUGP","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[],"usage":{"prompt_tokens":106,"completion_tokens":50,"total_tokens":156,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"8X9w9cqTHQGUY"} + data: {"id":"chatcmpl-DIgOgnbt21sEHKKTkWWAUf2BiMy3T","object":"chat.completion.chunk","created":1773345250,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[],"usage":{"prompt_tokens":106,"completion_tokens":50,"total_tokens":156,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"TGqprANrKBek6"} data: [DONE] @@ -57,7 +57,7 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 772.991416ms + duration: 3.781110667s - id: 1 request: proto: HTTP/1.1 @@ -65,14 +65,14 @@ interactions: proto_minor: 1 content_length: 1279 host: "" - body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_43EjiXfsjRlSfqUDWptDvMBZ","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_xHjbYtQqq9gsbadfjB3Vpjde","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_43EjiXfsjRlSfqUDWptDvMBZ","role":"tool"},{"content":"6","tool_call_id":"call_xHjbYtQqq9gsbadfjB3Vpjde","role":"tool"}],"model":"gpt-4o","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}' + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_lhJr4dWBxpVpf9LjGfERTy62","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_o97Fs8Ray28WjwotGOcB6vXB","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_lhJr4dWBxpVpf9LjGfERTy62","role":"tool"},{"content":"6","tool_call_id":"call_o97Fs8Ray28WjwotGOcB6vXB","role":"tool"}],"model":"gpt-4o","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 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -81,49 +81,49 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"wQ0ZUR76SWLb1Q"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"I00rI7wzo1HTO4"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"ISPfkxMctrH0o"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"WLjIy7Astonby"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":" sum"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"JqFwg751miTx"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"content":" sum"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"bOXdHrLR03Zp"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":" of"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"9YWR8giqtYFUM"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"content":" of"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"9bbu0esZoaBdx"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"itlKS7ahTpMBW8L"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"2Fvg5RCUBYHGnUs"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"2"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"2e7u7BIkx92l3cr"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"content":"2"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"tRqLf2rz8UbPaz7"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"m5Oplb1gN9Ja"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"DwNSpEpUXxzr"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"3vugZRR3s2aEKKY"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"1ue4FuXrgG0dLmk"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"28sBUXYUnGB22UI"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"eK1qbtAxWfyPEzj"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"AuXkgVuyVW8Hy"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"IIt8asqN1PThE"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"PJgz1kJnoOj9Ftb"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"ra6B5Mepffgq3AJ"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"5"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"5osDSc1ClKxMw71"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"content":"5"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"c18shkN11EFWg1D"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"QsS9PzfMEQOkIt4"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"CWRigLwlvI8YOjH"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"qfFoD9BWS7OJ"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"xXtpRlnEIrnE"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"yVmAXLCiwmCA"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Us4LEC3qJTpv"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":" product"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"zdqgWQg4"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"content":" product"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"WDMIwfIr"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"BURYwy2cPdNM1"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"VXwKNFr0nU49U"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"z12QGfGlmG9qbx1"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"A5dEb5Boh91ELeX"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"6"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"WLygsVccLgfco4Q"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"content":"6"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"dJ0PotEtLvWld1o"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"gK83HveBSnYrHmO"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"1O71Ppjix5JfjEh"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"AmG4YiCc1W"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"1NSXVez5Rf"} - data: {"id":"chatcmpl-CRdyriuRwApMtbM90UU0ea8z83pmx","object":"chat.completion.chunk","created":1760704577,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[],"usage":{"prompt_tokens":172,"completion_tokens":20,"total_tokens":192,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"BlFvM9v7xKitB"} + data: {"id":"chatcmpl-DIgOhMk4rdtMwcP5RhJQHwNQWkjse","object":"chat.completion.chunk","created":1773345251,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b7c8e3f100","choices":[],"usage":{"prompt_tokens":172,"completion_tokens":20,"total_tokens":192,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"LvgodbfjYIIYs"} data: [DONE] @@ -132,4 +132,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 582.337667ms + duration: 504.805375ms diff --git a/providertests/testdata/TestOpenAICommon/openai-gpt-4o/simple.yaml b/providertests/testdata/TestOpenAICommon/openai-gpt-4o/simple.yaml index 1199b98bc664fd250c6a9a6786a8a8620825e8c7..bfdfe6ae6e0a75e1e7291faa177894ab8ac9b1f0 100644 --- a/providertests/testdata/TestOpenAICommon/openai-gpt-4o/simple.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-gpt-4o/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,9 +26,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CRdyjdJswbbI6kuVNScObDe3tYnu2", + "id": "chatcmpl-DIgOSL1y8LJyfxxxzLR97P1iacvT8", "object": "chat.completion", - "created": 1760704569, + "created": 1773345236, "model": "gpt-4o-2024-08-06", "choices": [ { @@ -59,11 +59,11 @@ interactions: } }, "service_tier": "default", - "system_fingerprint": "fp_cbf1785567" + "system_fingerprint": "fp_c7a156cce7" } headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 740.354167ms + duration: 1.690255125s diff --git a/providertests/testdata/TestOpenAICommon/openai-gpt-4o/simple_streaming.yaml b/providertests/testdata/TestOpenAICommon/openai-gpt-4o/simple_streaming.yaml index 9c31b3f7326385f46c698cddc9e432664dad8d48..11db4b55dee8d36fb35b125d41330b6154347d97 100644 --- a/providertests/testdata/TestOpenAICommon/openai-gpt-4o/simple_streaming.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-gpt-4o/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,15 +24,15 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CRdyjrv70pWoCSnjiX81dksuhZK0H","object":"chat.completion.chunk","created":1760704569,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"dW8LjvG3FnxHr9"} + data: {"id":"chatcmpl-DIgOT5HbKwGK7vEjQ8fxquD0ES8ig","object":"chat.completion.chunk","created":1773345237,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"40HCD1w4us7i7q"} - data: {"id":"chatcmpl-CRdyjrv70pWoCSnjiX81dksuhZK0H","object":"chat.completion.chunk","created":1760704569,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"Olá"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"HhaSik3KUWGzk"} + data: {"id":"chatcmpl-DIgOT5HbKwGK7vEjQ8fxquD0ES8ig","object":"chat.completion.chunk","created":1773345237,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"content":"Olá"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"n28Y6FdfZjqrq"} - data: {"id":"chatcmpl-CRdyjrv70pWoCSnjiX81dksuhZK0H","object":"chat.completion.chunk","created":1760704569,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"!"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"XoNpCCkgDMpPelm"} + data: {"id":"chatcmpl-DIgOT5HbKwGK7vEjQ8fxquD0ES8ig","object":"chat.completion.chunk","created":1773345237,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"content":"!"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"KEbvTC6xxk8jD8A"} - data: {"id":"chatcmpl-CRdyjrv70pWoCSnjiX81dksuhZK0H","object":"chat.completion.chunk","created":1760704569,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"FbHAsgWpZy"} + data: {"id":"chatcmpl-DIgOT5HbKwGK7vEjQ8fxquD0ES8ig","object":"chat.completion.chunk","created":1773345237,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"SAplBO6D3G"} - data: {"id":"chatcmpl-CRdyjrv70pWoCSnjiX81dksuhZK0H","object":"chat.completion.chunk","created":1760704569,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[],"usage":{"prompt_tokens":20,"completion_tokens":2,"total_tokens":22,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":""} + data: {"id":"chatcmpl-DIgOT5HbKwGK7vEjQ8fxquD0ES8ig","object":"chat.completion.chunk","created":1773345237,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[],"usage":{"prompt_tokens":20,"completion_tokens":2,"total_tokens":22,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":""} data: [DONE] @@ -41,4 +41,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 626.391292ms + duration: 507.327917ms diff --git a/providertests/testdata/TestOpenAICommon/openai-gpt-4o/tool.yaml b/providertests/testdata/TestOpenAICommon/openai-gpt-4o/tool.yaml index 2f58ff98e951ea16f061f115fddde1f57ed1016d..728441b739432fe2686b5e6526be08608b6a504d 100644 --- a/providertests/testdata/TestOpenAICommon/openai-gpt-4o/tool.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-gpt-4o/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,9 +26,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CRdykecyitTrtBgxG3cAhHM82R3ar", + "id": "chatcmpl-DIgOVkcYwRdDIvQjYGbUZZD00gsxh", "object": "chat.completion", - "created": 1760704570, + "created": 1773345239, "model": "gpt-4o-2024-08-06", "choices": [ { @@ -38,11 +38,11 @@ interactions: "content": null, "tool_calls": [ { - "id": "call_zKl0GvROtopAKaVzafvOYfPu", + "id": "call_3eHnfvL6QJXyzdmN10qxuau6", "type": "function", "function": { "name": "weather", - "arguments": "{\"location\":\"Florence, Italy\"}" + "arguments": "{\"location\":\"Florence,Italy\"}" } } ], @@ -69,29 +69,29 @@ interactions: } }, "service_tier": "default", - "system_fingerprint": "fp_cbf1785567" + "system_fingerprint": "fp_ad6e9d3570" } headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.142721375s + duration: 2.097003459s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 700 + content_length: 699 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_zKl0GvROtopAKaVzafvOYfPu","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_zKl0GvROtopAKaVzafvOYfPu","role":"tool"}],"model":"gpt-4o","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"}]}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_3eHnfvL6QJXyzdmN10qxuau6","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_3eHnfvL6QJXyzdmN10qxuau6","role":"tool"}],"model":"gpt-4o","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 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -102,16 +102,16 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CRdyljyj1IrCMsT69QVozUugzhlwd", + "id": "chatcmpl-DIgOWwD5sH104pb99yiRJ1be9UtUd", "object": "chat.completion", - "created": 1760704571, + "created": 1773345240, "model": "gpt-4o-2024-08-06", "choices": [ { "index": 0, "message": { "role": "assistant", - "content": "The current temperature in Florence, Italy is 40°C.", + "content": "The current weather in Florence, Italy is 40°C.", "refusal": null, "annotations": [] }, @@ -135,11 +135,11 @@ interactions: } }, "service_tier": "default", - "system_fingerprint": "fp_cbf1785567" + "system_fingerprint": "fp_ad6e9d3570" } headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.414555709s + duration: 920.258625ms diff --git a/providertests/testdata/TestOpenAICommon/openai-gpt-4o/tool_streaming.yaml b/providertests/testdata/TestOpenAICommon/openai-gpt-4o/tool_streaming.yaml index 0476310662c6ce4362409ae730622e0eebd1cd83..60d6435386341d50f659ce3572e5f0236269a68d 100644 --- a/providertests/testdata/TestOpenAICommon/openai-gpt-4o/tool_streaming.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-gpt-4o/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,27 +24,27 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CRdynEXtk7T39drPlGlAxtuaMPYtO","object":"chat.completion.chunk","created":1760704573,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_9W0PDPMmK2SHo8Ph5qmngr60","type":"function","function":{"name":"weather","arguments":""}}],"refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"SKTBYmVhUa37r"} + data: {"id":"chatcmpl-DIgOYMXmYOXjhEX6yuEufQ4vABXz2","object":"chat.completion.chunk","created":1773345242,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_gFQuLUJTwJsBM7Y2mq8A5Tb9","type":"function","function":{"name":"weather","arguments":""}}],"refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"6spKBRZAjZ8J0"} - data: {"id":"chatcmpl-CRdynEXtk7T39drPlGlAxtuaMPYtO","object":"chat.completion.chunk","created":1760704573,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\""}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"ISP"} + data: {"id":"chatcmpl-DIgOYMXmYOXjhEX6yuEufQ4vABXz2","object":"chat.completion.chunk","created":1773345242,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\""}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"yH6"} - data: {"id":"chatcmpl-CRdynEXtk7T39drPlGlAxtuaMPYtO","object":"chat.completion.chunk","created":1760704573,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"location"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"wTarJRBKmxWzEe"} + data: {"id":"chatcmpl-DIgOYMXmYOXjhEX6yuEufQ4vABXz2","object":"chat.completion.chunk","created":1773345242,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"location"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"lJ55qhVB1AN93C"} - data: {"id":"chatcmpl-CRdynEXtk7T39drPlGlAxtuaMPYtO","object":"chat.completion.chunk","created":1760704573,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\":\""}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"b"} + data: {"id":"chatcmpl-DIgOYMXmYOXjhEX6yuEufQ4vABXz2","object":"chat.completion.chunk","created":1773345242,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\":\""}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"s"} - data: {"id":"chatcmpl-CRdynEXtk7T39drPlGlAxtuaMPYtO","object":"chat.completion.chunk","created":1760704573,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Flor"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Dt"} + data: {"id":"chatcmpl-DIgOYMXmYOXjhEX6yuEufQ4vABXz2","object":"chat.completion.chunk","created":1773345242,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Flor"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"qN"} - data: {"id":"chatcmpl-CRdynEXtk7T39drPlGlAxtuaMPYtO","object":"chat.completion.chunk","created":1760704573,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ence"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"lK"} + data: {"id":"chatcmpl-DIgOYMXmYOXjhEX6yuEufQ4vABXz2","object":"chat.completion.chunk","created":1773345242,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ence"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"77"} - data: {"id":"chatcmpl-CRdynEXtk7T39drPlGlAxtuaMPYtO","object":"chat.completion.chunk","created":1760704573,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":","}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"ZEEqt"} + data: {"id":"chatcmpl-DIgOYMXmYOXjhEX6yuEufQ4vABXz2","object":"chat.completion.chunk","created":1773345242,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":","}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"VLp1X"} - data: {"id":"chatcmpl-CRdynEXtk7T39drPlGlAxtuaMPYtO","object":"chat.completion.chunk","created":1760704573,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" Italy"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":""} + data: {"id":"chatcmpl-DIgOYMXmYOXjhEX6yuEufQ4vABXz2","object":"chat.completion.chunk","created":1773345242,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" Italy"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":""} - data: {"id":"chatcmpl-CRdynEXtk7T39drPlGlAxtuaMPYtO","object":"chat.completion.chunk","created":1760704573,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"}"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"tsM"} + data: {"id":"chatcmpl-DIgOYMXmYOXjhEX6yuEufQ4vABXz2","object":"chat.completion.chunk","created":1773345242,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"}"}}]},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"YMN"} - data: {"id":"chatcmpl-CRdynEXtk7T39drPlGlAxtuaMPYtO","object":"chat.completion.chunk","created":1760704573,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}],"usage":null,"obfuscation":"hAQV"} + data: {"id":"chatcmpl-DIgOYMXmYOXjhEX6yuEufQ4vABXz2","object":"chat.completion.chunk","created":1773345242,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}],"usage":null,"obfuscation":"TFgV"} - data: {"id":"chatcmpl-CRdynEXtk7T39drPlGlAxtuaMPYtO","object":"chat.completion.chunk","created":1760704573,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[],"usage":{"prompt_tokens":61,"completion_tokens":16,"total_tokens":77,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"1fPE9DL5GVNekQj"} + data: {"id":"chatcmpl-DIgOYMXmYOXjhEX6yuEufQ4vABXz2","object":"chat.completion.chunk","created":1773345242,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[],"usage":{"prompt_tokens":61,"completion_tokens":16,"total_tokens":77,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"ZQqtsgfnKUMFnQR"} data: [DONE] @@ -53,7 +53,7 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 828.397667ms + duration: 1.533239416s - id: 1 request: proto: HTTP/1.1 @@ -61,14 +61,14 @@ interactions: proto_minor: 1 content_length: 754 host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_9W0PDPMmK2SHo8Ph5qmngr60","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_9W0PDPMmK2SHo8Ph5qmngr60","role":"tool"}],"model":"gpt-4o","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}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_gFQuLUJTwJsBM7Y2mq8A5Tb9","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_gFQuLUJTwJsBM7Y2mq8A5Tb9","role":"tool"}],"model":"gpt-4o","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 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -77,35 +77,35 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CRdyomJ9SewTkG1C99SPqHd6NWByb","object":"chat.completion.chunk","created":1760704574,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"redbGckJxoV9Sf"} + data: {"id":"chatcmpl-DIgOZEILn4dneOO9GLJ0fLQPDcnYr","object":"chat.completion.chunk","created":1773345243,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_22cd3c63e9","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"APGdpAes4gFKrF"} - data: {"id":"chatcmpl-CRdyomJ9SewTkG1C99SPqHd6NWByb","object":"chat.completion.chunk","created":1760704574,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"hokBzzfi9soMV"} + data: {"id":"chatcmpl-DIgOZEILn4dneOO9GLJ0fLQPDcnYr","object":"chat.completion.chunk","created":1773345243,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_22cd3c63e9","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"8ROdL0a3vN5cK"} - data: {"id":"chatcmpl-CRdyomJ9SewTkG1C99SPqHd6NWByb","object":"chat.completion.chunk","created":1760704574,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":" current"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"GYmp4NHd"} + data: {"id":"chatcmpl-DIgOZEILn4dneOO9GLJ0fLQPDcnYr","object":"chat.completion.chunk","created":1773345243,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_22cd3c63e9","choices":[{"index":0,"delta":{"content":" current"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"p11oc9ks"} - data: {"id":"chatcmpl-CRdyomJ9SewTkG1C99SPqHd6NWByb","object":"chat.completion.chunk","created":1760704574,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":" temperature"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"V72K"} + data: {"id":"chatcmpl-DIgOZEILn4dneOO9GLJ0fLQPDcnYr","object":"chat.completion.chunk","created":1773345243,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_22cd3c63e9","choices":[{"index":0,"delta":{"content":" temperature"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Gz5V"} - data: {"id":"chatcmpl-CRdyomJ9SewTkG1C99SPqHd6NWByb","object":"chat.completion.chunk","created":1760704574,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"J4dE5Y0oVkTnc"} + data: {"id":"chatcmpl-DIgOZEILn4dneOO9GLJ0fLQPDcnYr","object":"chat.completion.chunk","created":1773345243,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_22cd3c63e9","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"rynKxq0lJ6zCS"} - data: {"id":"chatcmpl-CRdyomJ9SewTkG1C99SPqHd6NWByb","object":"chat.completion.chunk","created":1760704574,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":" Florence"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"embLD68"} + data: {"id":"chatcmpl-DIgOZEILn4dneOO9GLJ0fLQPDcnYr","object":"chat.completion.chunk","created":1773345243,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_22cd3c63e9","choices":[{"index":0,"delta":{"content":" Florence"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"RB2Cump"} - data: {"id":"chatcmpl-CRdyomJ9SewTkG1C99SPqHd6NWByb","object":"chat.completion.chunk","created":1760704574,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"QxOjL2vP9UUb8DE"} + data: {"id":"chatcmpl-DIgOZEILn4dneOO9GLJ0fLQPDcnYr","object":"chat.completion.chunk","created":1773345243,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_22cd3c63e9","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"dktNYMblGlkyqvC"} - data: {"id":"chatcmpl-CRdyomJ9SewTkG1C99SPqHd6NWByb","object":"chat.completion.chunk","created":1760704574,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":" Italy"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"xVq2JhUM0m"} + data: {"id":"chatcmpl-DIgOZEILn4dneOO9GLJ0fLQPDcnYr","object":"chat.completion.chunk","created":1773345243,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_22cd3c63e9","choices":[{"index":0,"delta":{"content":" Italy"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"6Ko3t1M7KO"} - data: {"id":"chatcmpl-CRdyomJ9SewTkG1C99SPqHd6NWByb","object":"chat.completion.chunk","created":1760704574,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"wR1prrEQ6cTc3"} + data: {"id":"chatcmpl-DIgOZEILn4dneOO9GLJ0fLQPDcnYr","object":"chat.completion.chunk","created":1773345243,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_22cd3c63e9","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"l9QjE69PUvvV5"} - data: {"id":"chatcmpl-CRdyomJ9SewTkG1C99SPqHd6NWByb","object":"chat.completion.chunk","created":1760704574,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"8tMP4q2OCLlkRy3"} + data: {"id":"chatcmpl-DIgOZEILn4dneOO9GLJ0fLQPDcnYr","object":"chat.completion.chunk","created":1773345243,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_22cd3c63e9","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"NV94464tHMJOFdV"} - data: {"id":"chatcmpl-CRdyomJ9SewTkG1C99SPqHd6NWByb","object":"chat.completion.chunk","created":1760704574,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"40"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"GOjJVxLP9sk8u4"} + data: {"id":"chatcmpl-DIgOZEILn4dneOO9GLJ0fLQPDcnYr","object":"chat.completion.chunk","created":1773345243,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_22cd3c63e9","choices":[{"index":0,"delta":{"content":"40"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"XqVrRIj7NMJjSg"} - data: {"id":"chatcmpl-CRdyomJ9SewTkG1C99SPqHd6NWByb","object":"chat.completion.chunk","created":1760704574,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"°C"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"CCwAe3AFhmdpna"} + data: {"id":"chatcmpl-DIgOZEILn4dneOO9GLJ0fLQPDcnYr","object":"chat.completion.chunk","created":1773345243,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_22cd3c63e9","choices":[{"index":0,"delta":{"content":"°C"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"g0R9xOfjnFySDQ"} - data: {"id":"chatcmpl-CRdyomJ9SewTkG1C99SPqHd6NWByb","object":"chat.completion.chunk","created":1760704574,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"6DQeIz589eDMca5"} + data: {"id":"chatcmpl-DIgOZEILn4dneOO9GLJ0fLQPDcnYr","object":"chat.completion.chunk","created":1773345243,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_22cd3c63e9","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"aJTBIAG5P5Zog5v"} - data: {"id":"chatcmpl-CRdyomJ9SewTkG1C99SPqHd6NWByb","object":"chat.completion.chunk","created":1760704574,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"gnoMeZSJgE"} + data: {"id":"chatcmpl-DIgOZEILn4dneOO9GLJ0fLQPDcnYr","object":"chat.completion.chunk","created":1773345243,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_22cd3c63e9","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"e9Yt0HF6FH"} - data: {"id":"chatcmpl-CRdyomJ9SewTkG1C99SPqHd6NWByb","object":"chat.completion.chunk","created":1760704574,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[],"usage":{"prompt_tokens":86,"completion_tokens":13,"total_tokens":99,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"ImGWeSBRNjxx71V"} + data: {"id":"chatcmpl-DIgOZEILn4dneOO9GLJ0fLQPDcnYr","object":"chat.completion.chunk","created":1773345243,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_22cd3c63e9","choices":[],"usage":{"prompt_tokens":86,"completion_tokens":13,"total_tokens":99,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"V89OWCoE0c7MQOo"} data: [DONE] @@ -114,4 +114,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 637.852666ms + duration: 1.82146025s diff --git a/providertests/testdata/TestOpenAICommon/openai-gpt-5/multi_tool.yaml b/providertests/testdata/TestOpenAICommon/openai-gpt-5/multi_tool.yaml index ded49c07c927667466e7688bdc72734e9b0fc8e8..983be05d7d3be5fdb5ef77f2f0e3fff8bcfe8080 100644 --- a/providertests/testdata/TestOpenAICommon/openai-gpt-5/multi_tool.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-gpt-5/multi_tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,9 +26,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CRdzUDVMIrCJUYwgqR69TFp8L2Swc", + "id": "chatcmpl-DIgPPk7saen7U19r0G4lPuldlpqWC", "object": "chat.completion", - "created": 1760704616, + "created": 1773345295, "model": "gpt-5-2025-08-07", "choices": [ { @@ -38,7 +38,7 @@ interactions: "content": null, "tool_calls": [ { - "id": "call_md2XuaM6Rk2D4bTo2L6U2rC4", + "id": "call_qYblat6FHmVxqmw0d5E2GriK", "type": "function", "function": { "name": "add", @@ -46,7 +46,7 @@ interactions: } }, { - "id": "call_uSejWXP98W4wT6BU62WnSFkD", + "id": "call_nB3RUGzSDKdqIYs5ctAN9DRP", "type": "function", "function": { "name": "multiply", @@ -83,7 +83,7 @@ interactions: - application/json status: 200 OK code: 200 - duration: 5.788909416s + duration: 6.091876458s - id: 1 request: proto: HTTP/1.1 @@ -91,14 +91,14 @@ interactions: proto_minor: 1 content_length: 1252 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"},{"tool_calls":[{"id":"call_md2XuaM6Rk2D4bTo2L6U2rC4","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_uSejWXP98W4wT6BU62WnSFkD","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_md2XuaM6Rk2D4bTo2L6U2rC4","role":"tool"},{"content":"6","tool_call_id":"call_uSejWXP98W4wT6BU62WnSFkD","role":"tool"}],"model":"gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}]}' + 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":"call_qYblat6FHmVxqmw0d5E2GriK","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_nB3RUGzSDKdqIYs5ctAN9DRP","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_qYblat6FHmVxqmw0d5E2GriK","role":"tool"},{"content":"6","tool_call_id":"call_nB3RUGzSDKdqIYs5ctAN9DRP","role":"tool"}],"model":"gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -109,16 +109,16 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CRdzaC6UTwNAIUssvUroMMI05yZPC", + "id": "chatcmpl-DIgPV4XrXfzx4Go0eCC5SSYTEtm5h", "object": "chat.completion", - "created": 1760704622, + "created": 1773345301, "model": "gpt-5-2025-08-07", "choices": [ { "index": 0, "message": { "role": "assistant", - "content": "- Sum (2 + 3): 5\n- Product (2 × 3): 6", + "content": "Results:\n- Addition: 2 + 3 = 5\n- Multiplication: 2 × 3 = 6", "refusal": null, "annotations": [] }, @@ -127,8 +127,8 @@ interactions: ], "usage": { "prompt_tokens": 266, - "completion_tokens": 24, - "total_tokens": 290, + "completion_tokens": 29, + "total_tokens": 295, "prompt_tokens_details": { "cached_tokens": 0, "audio_tokens": 0 @@ -148,4 +148,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 2.555093917s + duration: 1.220892708s diff --git a/providertests/testdata/TestOpenAICommon/openai-gpt-5/multi_tool_streaming.yaml b/providertests/testdata/TestOpenAICommon/openai-gpt-5/multi_tool_streaming.yaml index 858a42df18f04a348055cd9d85f2ca92e1664840..ecf072b97c53c4763c1ebb844ef68426ffcc2561 100644 --- a/providertests/testdata/TestOpenAICommon/openai-gpt-5/multi_tool_streaming.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-gpt-5/multi_tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,31 +24,31 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CRdzc7GhPT7mc2HunXDSslDWG7Bhx","object":"chat.completion.chunk","created":1760704624,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"role":"assistant","content":null},"finish_reason":null}],"obfuscation":"NvBRsp2"} + data: {"id":"chatcmpl-DIgPW9JEWVwwJNAQ3qR06ANW8KVff","object":"chat.completion.chunk","created":1773345302,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"role":"assistant","content":null},"finish_reason":null}],"obfuscation":"HACDS8t"} - data: {"id":"chatcmpl-CRdzc7GhPT7mc2HunXDSslDWG7Bhx","object":"chat.completion.chunk","created":1760704624,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"call_4ebZx1iZmHY4sPZ1h1iMHaWD","type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null}],"obfuscation":"5qQkfsMd6Ydd9V"} + data: {"id":"chatcmpl-DIgPW9JEWVwwJNAQ3qR06ANW8KVff","object":"chat.completion.chunk","created":1773345302,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"call_HK2ZnDjXVP8y7DIxGfUj37xn","type":"function","function":{"name":"add","arguments":""}}]},"finish_reason":null}],"obfuscation":"eYYMFNtwCRnxIn"} - data: {"id":"chatcmpl-CRdzc7GhPT7mc2HunXDSslDWG7Bhx","object":"chat.completion.chunk","created":1760704624,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"a\""}}]},"finish_reason":null}],"obfuscation":"VeWK0cIPeocT"} + data: {"id":"chatcmpl-DIgPW9JEWVwwJNAQ3qR06ANW8KVff","object":"chat.completion.chunk","created":1773345302,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"a\""}}]},"finish_reason":null}],"obfuscation":"YU6lFpCT8DlI"} - data: {"id":"chatcmpl-CRdzc7GhPT7mc2HunXDSslDWG7Bhx","object":"chat.completion.chunk","created":1760704624,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":": 2, "}}]},"finish_reason":null}],"obfuscation":"ROMuHEfrgbrS7"} + data: {"id":"chatcmpl-DIgPW9JEWVwwJNAQ3qR06ANW8KVff","object":"chat.completion.chunk","created":1773345302,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":": 2, "}}]},"finish_reason":null}],"obfuscation":"nEyU1RU1lEipK"} - data: {"id":"chatcmpl-CRdzc7GhPT7mc2HunXDSslDWG7Bhx","object":"chat.completion.chunk","created":1760704624,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"b\": 3"}}]},"finish_reason":null}],"obfuscation":"xE9kB40afY"} + data: {"id":"chatcmpl-DIgPW9JEWVwwJNAQ3qR06ANW8KVff","object":"chat.completion.chunk","created":1773345302,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"b\": 3"}}]},"finish_reason":null}],"obfuscation":"e7UG9P82Rz"} - data: {"id":"chatcmpl-CRdzc7GhPT7mc2HunXDSslDWG7Bhx","object":"chat.completion.chunk","created":1760704624,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"}"}}]},"finish_reason":null}],"obfuscation":"4"} + data: {"id":"chatcmpl-DIgPW9JEWVwwJNAQ3qR06ANW8KVff","object":"chat.completion.chunk","created":1773345302,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"}"}}]},"finish_reason":null}],"obfuscation":"b"} - data: {"id":"chatcmpl-CRdzc7GhPT7mc2HunXDSslDWG7Bhx","object":"chat.completion.chunk","created":1760704624,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"call_wyeHgH870UHPvm0tKc4MwvDD","type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null}],"obfuscation":"IneSneP7z"} + data: {"id":"chatcmpl-DIgPW9JEWVwwJNAQ3qR06ANW8KVff","object":"chat.completion.chunk","created":1773345302,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"call_FziDuLl4P4uEHEaVPOq7KApz","type":"function","function":{"name":"multiply","arguments":""}}]},"finish_reason":null}],"obfuscation":"fNh1zA1va"} - data: {"id":"chatcmpl-CRdzc7GhPT7mc2HunXDSslDWG7Bhx","object":"chat.completion.chunk","created":1760704624,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"a\""}}]},"finish_reason":null}],"obfuscation":"HGrCNThdZNii"} + data: {"id":"chatcmpl-DIgPW9JEWVwwJNAQ3qR06ANW8KVff","object":"chat.completion.chunk","created":1773345302,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"a\""}}]},"finish_reason":null}],"obfuscation":"hGBJkQyT9sfy"} - data: {"id":"chatcmpl-CRdzc7GhPT7mc2HunXDSslDWG7Bhx","object":"chat.completion.chunk","created":1760704624,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":": 2, "}}]},"finish_reason":null}],"obfuscation":"5ZULYIdry7hus"} + data: {"id":"chatcmpl-DIgPW9JEWVwwJNAQ3qR06ANW8KVff","object":"chat.completion.chunk","created":1773345302,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":": 2, "}}]},"finish_reason":null}],"obfuscation":"RMGsBkUp9hu3k"} - data: {"id":"chatcmpl-CRdzc7GhPT7mc2HunXDSslDWG7Bhx","object":"chat.completion.chunk","created":1760704624,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"\"b\": 3"}}]},"finish_reason":null}],"obfuscation":"3iFLy71PX6"} + data: {"id":"chatcmpl-DIgPW9JEWVwwJNAQ3qR06ANW8KVff","object":"chat.completion.chunk","created":1773345302,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"\"b\": 3"}}]},"finish_reason":null}],"obfuscation":"oN2krbBWOg"} - data: {"id":"chatcmpl-CRdzc7GhPT7mc2HunXDSslDWG7Bhx","object":"chat.completion.chunk","created":1760704624,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"}"}}]},"finish_reason":null}],"obfuscation":"d"} + data: {"id":"chatcmpl-DIgPW9JEWVwwJNAQ3qR06ANW8KVff","object":"chat.completion.chunk","created":1773345302,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"usage":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"}"}}]},"finish_reason":null}],"obfuscation":"R"} - data: {"id":"chatcmpl-CRdzc7GhPT7mc2HunXDSslDWG7Bhx","object":"chat.completion.chunk","created":1760704624,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"usage":null,"obfuscation":""} + data: {"id":"chatcmpl-DIgPW9JEWVwwJNAQ3qR06ANW8KVff","object":"chat.completion.chunk","created":1773345302,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"usage":null,"obfuscation":""} - data: {"id":"chatcmpl-CRdzc7GhPT7mc2HunXDSslDWG7Bhx","object":"chat.completion.chunk","created":1760704624,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":190,"completion_tokens":507,"total_tokens":697,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":448,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"Em6PO8"} + data: {"id":"chatcmpl-DIgPW9JEWVwwJNAQ3qR06ANW8KVff","object":"chat.completion.chunk","created":1773345302,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":190,"completion_tokens":315,"total_tokens":505,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":256,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"2JJpgI"} data: [DONE] @@ -57,7 +57,7 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 7.672726292s + duration: 6.964085083s - id: 1 request: proto: HTTP/1.1 @@ -65,14 +65,14 @@ interactions: proto_minor: 1 content_length: 1289 host: "" - body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_4ebZx1iZmHY4sPZ1h1iMHaWD","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_wyeHgH870UHPvm0tKc4MwvDD","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_4ebZx1iZmHY4sPZ1h1iMHaWD","role":"tool"},{"content":"6","tool_call_id":"call_wyeHgH870UHPvm0tKc4MwvDD","role":"tool"}],"model":"gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_HK2ZnDjXVP8y7DIxGfUj37xn","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"call_FziDuLl4P4uEHEaVPOq7KApz","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_HK2ZnDjXVP8y7DIxGfUj37xn","role":"tool"},{"content":"6","tool_call_id":"call_FziDuLl4P4uEHEaVPOq7KApz","role":"tool"}],"model":"gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -81,57 +81,57 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"1TG67VBOtJ"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"6J7ZI3bsns"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"-"},"finish_reason":null}],"usage":null,"obfuscation":"OHhVbfnddSM"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"-"},"finish_reason":null}],"usage":null,"obfuscation":"81XGlvpWROm"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Sum"},"finish_reason":null}],"usage":null,"obfuscation":"jEUBOH54"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Sum"},"finish_reason":null}],"usage":null,"obfuscation":"NSmWgmap"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" ("},"finish_reason":null}],"usage":null,"obfuscation":"PtgcMX4qEe"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" ("},"finish_reason":null}],"usage":null,"obfuscation":"jH7uArQMmQ"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"2"},"finish_reason":null}],"usage":null,"obfuscation":"zfYlcOcLZ9C"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"2"},"finish_reason":null}],"usage":null,"obfuscation":"HqQ56gcVKED"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" +"},"finish_reason":null}],"usage":null,"obfuscation":"1u8xvTtq3Y"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" +"},"finish_reason":null}],"usage":null,"obfuscation":"TYOVr0GO0a"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" "},"finish_reason":null}],"usage":null,"obfuscation":"K9I2ZUnGymF"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" "},"finish_reason":null}],"usage":null,"obfuscation":"C12uOxBXHQK"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"3"},"finish_reason":null}],"usage":null,"obfuscation":"TIkXxx9gbCK"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"3"},"finish_reason":null}],"usage":null,"obfuscation":"KGLb8NU46IG"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":")"},"finish_reason":null}],"usage":null,"obfuscation":"mFcLz5PLsoF"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":")"},"finish_reason":null}],"usage":null,"obfuscation":"jB9cmhKKTFW"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" ="},"finish_reason":null}],"usage":null,"obfuscation":"0ZLum9Jw5e"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" ="},"finish_reason":null}],"usage":null,"obfuscation":"esnduWZH99"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" "},"finish_reason":null}],"usage":null,"obfuscation":"pbEwyGNzS90"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" "},"finish_reason":null}],"usage":null,"obfuscation":"d9qdsGvEAIy"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"5"},"finish_reason":null}],"usage":null,"obfuscation":"OYQfKVWpL6O"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"5"},"finish_reason":null}],"usage":null,"obfuscation":"xqmU8b3GaXY"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\n"},"finish_reason":null}],"usage":null,"obfuscation":"fjPV5j0VDX"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\n"},"finish_reason":null}],"usage":null,"obfuscation":"G6BZAobIF7"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"-"},"finish_reason":null}],"usage":null,"obfuscation":"j7Xcg9fNM95"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"-"},"finish_reason":null}],"usage":null,"obfuscation":"K6le8T0bniD"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Product"},"finish_reason":null}],"usage":null,"obfuscation":"GAEj"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Product"},"finish_reason":null}],"usage":null,"obfuscation":"ymeI"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" ("},"finish_reason":null}],"usage":null,"obfuscation":"BE9tgnurlz"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" ("},"finish_reason":null}],"usage":null,"obfuscation":"mcBsTpX0EG"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"2"},"finish_reason":null}],"usage":null,"obfuscation":"Yymwjl7AQga"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"2"},"finish_reason":null}],"usage":null,"obfuscation":"pZDrnJ0rCCV"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" ×"},"finish_reason":null}],"usage":null,"obfuscation":"gGuS8rBmJ7"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" ×"},"finish_reason":null}],"usage":null,"obfuscation":"Bg1rlRRr0x"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" "},"finish_reason":null}],"usage":null,"obfuscation":"8Z5amiIoV0M"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" "},"finish_reason":null}],"usage":null,"obfuscation":"quSUDqgoByI"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"3"},"finish_reason":null}],"usage":null,"obfuscation":"jBrz8DxKZbt"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"3"},"finish_reason":null}],"usage":null,"obfuscation":"kBX0JiHB4LP"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":")"},"finish_reason":null}],"usage":null,"obfuscation":"5mWkJRjBkAX"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":")"},"finish_reason":null}],"usage":null,"obfuscation":"H026O8G0G2x"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" ="},"finish_reason":null}],"usage":null,"obfuscation":"UWqBcH386u"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" ="},"finish_reason":null}],"usage":null,"obfuscation":"uoZG2R2cHi"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" "},"finish_reason":null}],"usage":null,"obfuscation":"WDsRS72YWt0"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" "},"finish_reason":null}],"usage":null,"obfuscation":"3hIDg40DK7U"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"6"},"finish_reason":null}],"usage":null,"obfuscation":"tUUmtDYNimg"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"6"},"finish_reason":null}],"usage":null,"obfuscation":"Ez70DkFCXuS"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"UgDqt8"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"Lj7Cy9"} - data: {"id":"chatcmpl-CRdzkO32Hy3VSWpgWF4X77ZM5KD12","object":"chat.completion.chunk","created":1760704632,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":262,"completion_tokens":26,"total_tokens":288,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"Wqu7E2SWz"} + data: {"id":"chatcmpl-DIgPdKQqJh9SQOWG0lr9E9GR4ejBV","object":"chat.completion.chunk","created":1773345309,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":262,"completion_tokens":26,"total_tokens":288,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"LU3nvWwHd"} data: [DONE] @@ -140,4 +140,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 954.683416ms + duration: 640.692ms diff --git a/providertests/testdata/TestOpenAICommon/openai-gpt-5/simple.yaml b/providertests/testdata/TestOpenAICommon/openai-gpt-5/simple.yaml index 0e91885c49c3dcf1f3238bed17de0f7c6198c5b7..5865a8f5dabd883571f79cd15dfe9f9e4e7f0116 100644 --- a/providertests/testdata/TestOpenAICommon/openai-gpt-5/simple.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-gpt-5/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,9 +26,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CRdz3IlGIW2lfJ0VP6n8tkysshWP6", + "id": "chatcmpl-DIgOvtAUIXW4npz54Y1WBQrdmydWl", "object": "chat.completion", - "created": 1760704589, + "created": 1773345265, "model": "gpt-5-2025-08-07", "choices": [ { @@ -44,14 +44,14 @@ interactions: ], "usage": { "prompt_tokens": 19, - "completion_tokens": 203, - "total_tokens": 222, + "completion_tokens": 75, + "total_tokens": 94, "prompt_tokens_details": { "cached_tokens": 0, "audio_tokens": 0 }, "completion_tokens_details": { - "reasoning_tokens": 192, + "reasoning_tokens": 64, "audio_tokens": 0, "accepted_prediction_tokens": 0, "rejected_prediction_tokens": 0 @@ -65,4 +65,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 5.250838625s + duration: 3.497726291s diff --git a/providertests/testdata/TestOpenAICommon/openai-gpt-5/simple_streaming.yaml b/providertests/testdata/TestOpenAICommon/openai-gpt-5/simple_streaming.yaml index 71885f56532bf0d36943cbbaf17bca09d43d98f8..fcc8b2ba256b3dfcce10b08cb7ed65e7faa1393b 100644 --- a/providertests/testdata/TestOpenAICommon/openai-gpt-5/simple_streaming.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-gpt-5/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,15 +24,15 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CRdz8RCAgBM561aJOMPL9YeHB957W","object":"chat.completion.chunk","created":1760704594,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"SFRj4fNgeY"} + data: {"id":"chatcmpl-DIgOzIUUPhRUFtD2eaXPrsJ8sQjqP","object":"chat.completion.chunk","created":1773345269,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"RqvT6Oh3Gy"} - data: {"id":"chatcmpl-CRdz8RCAgBM561aJOMPL9YeHB957W","object":"chat.completion.chunk","created":1760704594,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Olá"},"finish_reason":null}],"usage":null,"obfuscation":"x2Y1eWqda"} + data: {"id":"chatcmpl-DIgOzIUUPhRUFtD2eaXPrsJ8sQjqP","object":"chat.completion.chunk","created":1773345269,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Olá"},"finish_reason":null}],"usage":null,"obfuscation":"6TRZKgChI"} - data: {"id":"chatcmpl-CRdz8RCAgBM561aJOMPL9YeHB957W","object":"chat.completion.chunk","created":1760704594,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"!"},"finish_reason":null}],"usage":null,"obfuscation":"tDJ7zpDqgTi"} + data: {"id":"chatcmpl-DIgOzIUUPhRUFtD2eaXPrsJ8sQjqP","object":"chat.completion.chunk","created":1773345269,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"!"},"finish_reason":null}],"usage":null,"obfuscation":"arqZWqvZkKB"} - data: {"id":"chatcmpl-CRdz8RCAgBM561aJOMPL9YeHB957W","object":"chat.completion.chunk","created":1760704594,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"85W83X"} + data: {"id":"chatcmpl-DIgOzIUUPhRUFtD2eaXPrsJ8sQjqP","object":"chat.completion.chunk","created":1773345269,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"7H6gf4"} - data: {"id":"chatcmpl-CRdz8RCAgBM561aJOMPL9YeHB957W","object":"chat.completion.chunk","created":1760704594,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":19,"completion_tokens":75,"total_tokens":94,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":64,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"gUl972lllc"} + data: {"id":"chatcmpl-DIgOzIUUPhRUFtD2eaXPrsJ8sQjqP","object":"chat.completion.chunk","created":1773345269,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":19,"completion_tokens":139,"total_tokens":158,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":128,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"JD3JtPw"} data: [DONE] @@ -41,4 +41,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 2.890382667s + duration: 2.667532458s diff --git a/providertests/testdata/TestOpenAICommon/openai-gpt-5/tool.yaml b/providertests/testdata/TestOpenAICommon/openai-gpt-5/tool.yaml index 8a8cd3dbe1161054126f4df0188776eb83533d80..c7509e1789d9ded6467f6862fe5cd370fa8b7323 100644 --- a/providertests/testdata/TestOpenAICommon/openai-gpt-5/tool.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-gpt-5/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,9 +26,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CRdzCfnkaQoMYKAvfAXds0hUUaCog", + "id": "chatcmpl-DIgP1cdJUOKtUeAnEKhAXPlz4ocX1", "object": "chat.completion", - "created": 1760704598, + "created": 1773345271, "model": "gpt-5-2025-08-07", "choices": [ { @@ -38,7 +38,7 @@ interactions: "content": null, "tool_calls": [ { - "id": "call_iENK0JiZIVgIwVhzXgr2vqAb", + "id": "call_UC58858zDb1VGnI3t4T7v19X", "type": "function", "function": { "name": "weather", @@ -54,14 +54,14 @@ interactions: ], "usage": { "prompt_tokens": 145, - "completion_tokens": 89, - "total_tokens": 234, + "completion_tokens": 153, + "total_tokens": 298, "prompt_tokens_details": { "cached_tokens": 0, "audio_tokens": 0 }, "completion_tokens_details": { - "reasoning_tokens": 64, + "reasoning_tokens": 128, "audio_tokens": 0, "accepted_prediction_tokens": 0, "rejected_prediction_tokens": 0 @@ -75,7 +75,7 @@ interactions: - application/json status: 200 OK code: 200 - duration: 4.061672083s + duration: 3.250397625s - id: 1 request: proto: HTTP/1.1 @@ -83,14 +83,14 @@ interactions: proto_minor: 1 content_length: 710 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_iENK0JiZIVgIwVhzXgr2vqAb","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_iENK0JiZIVgIwVhzXgr2vqAb","role":"tool"}],"model":"gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_UC58858zDb1VGnI3t4T7v19X","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_UC58858zDb1VGnI3t4T7v19X","role":"tool"}],"model":"gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -101,16 +101,16 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CRdzFTi2wOwwtpFFMfez7pGHYh07c", + "id": "chatcmpl-DIgP5ZkKTU1fpDUXvRzcsYmgrTBv5", "object": "chat.completion", - "created": 1760704601, + "created": 1773345275, "model": "gpt-5-2025-08-07", "choices": [ { "index": 0, "message": { "role": "assistant", - "content": "It’s currently about 40°C (104°F) in Florence, Italy. Would you like a forecast or more details (humidity, wind, etc.)?", + "content": "Right now in Florence, Italy, it’s about 40°C (104°F). Would you like a forecast or more details like wind and humidity?", "refusal": null, "annotations": [] }, @@ -119,14 +119,14 @@ interactions: ], "usage": { "prompt_tokens": 176, - "completion_tokens": 297, - "total_tokens": 473, + "completion_tokens": 359, + "total_tokens": 535, "prompt_tokens_details": { "cached_tokens": 0, "audio_tokens": 0 }, "completion_tokens_details": { - "reasoning_tokens": 256, + "reasoning_tokens": 320, "audio_tokens": 0, "accepted_prediction_tokens": 0, "rejected_prediction_tokens": 0 @@ -140,4 +140,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 6.021670833s + duration: 11.360699125s diff --git a/providertests/testdata/TestOpenAICommon/openai-gpt-5/tool_streaming.yaml b/providertests/testdata/TestOpenAICommon/openai-gpt-5/tool_streaming.yaml index cb04a361d67de4d83fd0a8b990527285bf470c4a..84bdd1950611e8cd253f8d7a768b991d1fa31f08 100644 --- a/providertests/testdata/TestOpenAICommon/openai-gpt-5/tool_streaming.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-gpt-5/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,27 +24,27 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CRdzLjfDek4NLenFzdYH7xA7ZwhXR","object":"chat.completion.chunk","created":1760704607,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_HclHssdmN42q5djc4MO0fnIH","type":"function","function":{"name":"weather","arguments":""}}],"refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"wW0mB4WAi"} + data: {"id":"chatcmpl-DIgPGik2hAdKcPOj1RDhKq0ceGhIt","object":"chat.completion.chunk","created":1773345286,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_eJ2thyY7663zBFMe4P6Lb8Yk","type":"function","function":{"name":"weather","arguments":""}}],"refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"R8PYPwot6"} - data: {"id":"chatcmpl-CRdzLjfDek4NLenFzdYH7xA7ZwhXR","object":"chat.completion.chunk","created":1760704607,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\""}}]},"finish_reason":null}],"usage":null,"obfuscation":"Djas7aoZyHzDdg5"} + data: {"id":"chatcmpl-DIgPGik2hAdKcPOj1RDhKq0ceGhIt","object":"chat.completion.chunk","created":1773345286,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\""}}]},"finish_reason":null}],"usage":null,"obfuscation":"aFFn0ls4hxoBT4F"} - data: {"id":"chatcmpl-CRdzLjfDek4NLenFzdYH7xA7ZwhXR","object":"chat.completion.chunk","created":1760704607,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"location"}}]},"finish_reason":null}],"usage":null,"obfuscation":"9OsYZ12UtG"} + data: {"id":"chatcmpl-DIgPGik2hAdKcPOj1RDhKq0ceGhIt","object":"chat.completion.chunk","created":1773345286,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"location"}}]},"finish_reason":null}],"usage":null,"obfuscation":"BrZWmNeP4Y"} - data: {"id":"chatcmpl-CRdzLjfDek4NLenFzdYH7xA7ZwhXR","object":"chat.completion.chunk","created":1760704607,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\":\""}}]},"finish_reason":null}],"usage":null,"obfuscation":"YIo7qOV9nxFX5"} + data: {"id":"chatcmpl-DIgPGik2hAdKcPOj1RDhKq0ceGhIt","object":"chat.completion.chunk","created":1773345286,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\":\""}}]},"finish_reason":null}],"usage":null,"obfuscation":"PvzCZ3WQzErV7"} - data: {"id":"chatcmpl-CRdzLjfDek4NLenFzdYH7xA7ZwhXR","object":"chat.completion.chunk","created":1760704607,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Flor"}}]},"finish_reason":null}],"usage":null,"obfuscation":"0t9tM3wGusJNdp"} + data: {"id":"chatcmpl-DIgPGik2hAdKcPOj1RDhKq0ceGhIt","object":"chat.completion.chunk","created":1773345286,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Flor"}}]},"finish_reason":null}],"usage":null,"obfuscation":"c1obCHKkYVIePA"} - data: {"id":"chatcmpl-CRdzLjfDek4NLenFzdYH7xA7ZwhXR","object":"chat.completion.chunk","created":1760704607,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ence"}}]},"finish_reason":null}],"usage":null,"obfuscation":"B5LwqW2HhJ6FQv"} + data: {"id":"chatcmpl-DIgPGik2hAdKcPOj1RDhKq0ceGhIt","object":"chat.completion.chunk","created":1773345286,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ence"}}]},"finish_reason":null}],"usage":null,"obfuscation":"q4u1B6Y6c6SUhW"} - data: {"id":"chatcmpl-CRdzLjfDek4NLenFzdYH7xA7ZwhXR","object":"chat.completion.chunk","created":1760704607,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":","}}]},"finish_reason":null}],"usage":null,"obfuscation":"4"} + data: {"id":"chatcmpl-DIgPGik2hAdKcPOj1RDhKq0ceGhIt","object":"chat.completion.chunk","created":1773345286,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":","}}]},"finish_reason":null}],"usage":null,"obfuscation":"Y"} - data: {"id":"chatcmpl-CRdzLjfDek4NLenFzdYH7xA7ZwhXR","object":"chat.completion.chunk","created":1760704607,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" Italy"}}]},"finish_reason":null}],"usage":null,"obfuscation":"Bxlp9FKSsSrt"} + data: {"id":"chatcmpl-DIgPGik2hAdKcPOj1RDhKq0ceGhIt","object":"chat.completion.chunk","created":1773345286,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" Italy"}}]},"finish_reason":null}],"usage":null,"obfuscation":"gxardK8TniMI"} - data: {"id":"chatcmpl-CRdzLjfDek4NLenFzdYH7xA7ZwhXR","object":"chat.completion.chunk","created":1760704607,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"}"}}]},"finish_reason":null}],"usage":null,"obfuscation":"zX7DDFi6nMXYRWx"} + data: {"id":"chatcmpl-DIgPGik2hAdKcPOj1RDhKq0ceGhIt","object":"chat.completion.chunk","created":1773345286,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"}"}}]},"finish_reason":null}],"usage":null,"obfuscation":"cCSFWJkwLh8xewo"} - data: {"id":"chatcmpl-CRdzLjfDek4NLenFzdYH7xA7ZwhXR","object":"chat.completion.chunk","created":1760704607,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"usage":null,"obfuscation":""} + data: {"id":"chatcmpl-DIgPGik2hAdKcPOj1RDhKq0ceGhIt","object":"chat.completion.chunk","created":1773345286,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"usage":null,"obfuscation":""} - data: {"id":"chatcmpl-CRdzLjfDek4NLenFzdYH7xA7ZwhXR","object":"chat.completion.chunk","created":1760704607,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":145,"completion_tokens":89,"total_tokens":234,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":64,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"9A0uIEuB"} + data: {"id":"chatcmpl-DIgPGik2hAdKcPOj1RDhKq0ceGhIt","object":"chat.completion.chunk","created":1773345286,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":145,"completion_tokens":89,"total_tokens":234,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":64,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"NLZbTOjm"} data: [DONE] @@ -53,7 +53,7 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 3.656144208s + duration: 2.531527834s - id: 1 request: proto: HTTP/1.1 @@ -61,14 +61,14 @@ interactions: proto_minor: 1 content_length: 764 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_HclHssdmN42q5djc4MO0fnIH","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_HclHssdmN42q5djc4MO0fnIH","role":"tool"}],"model":"gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_eJ2thyY7663zBFMe4P6Lb8Yk","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_eJ2thyY7663zBFMe4P6Lb8Yk","role":"tool"}],"model":"gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -77,43 +77,65 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CRdzPGEdWul8J6am5jOSgWZXVK6c8","object":"chat.completion.chunk","created":1760704611,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"Zo8VekTq7A"} + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"XiDPexih7w"} - data: {"id":"chatcmpl-CRdzPGEdWul8J6am5jOSgWZXVK6c8","object":"chat.completion.chunk","created":1760704611,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"It"},"finish_reason":null}],"usage":null,"obfuscation":"0XPFHlQbT1"} + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"It"},"finish_reason":null}],"usage":null,"obfuscation":"oENgFXuSd7"} - data: {"id":"chatcmpl-CRdzPGEdWul8J6am5jOSgWZXVK6c8","object":"chat.completion.chunk","created":1760704611,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"’s"},"finish_reason":null}],"usage":null,"obfuscation":"VqFEMOFD6V"} + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"’s"},"finish_reason":null}],"usage":null,"obfuscation":"fzjG0RroQT"} - data: {"id":"chatcmpl-CRdzPGEdWul8J6am5jOSgWZXVK6c8","object":"chat.completion.chunk","created":1760704611,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" currently"},"finish_reason":null}],"usage":null,"obfuscation":"05"} + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" currently"},"finish_reason":null}],"usage":null,"obfuscation":"dz"} - data: {"id":"chatcmpl-CRdzPGEdWul8J6am5jOSgWZXVK6c8","object":"chat.completion.chunk","created":1760704611,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" about"},"finish_reason":null}],"usage":null,"obfuscation":"Hmjn6u"} + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" about"},"finish_reason":null}],"usage":null,"obfuscation":"tMbXn0"} - data: {"id":"chatcmpl-CRdzPGEdWul8J6am5jOSgWZXVK6c8","object":"chat.completion.chunk","created":1760704611,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" "},"finish_reason":null}],"usage":null,"obfuscation":"R6mJbjdENZ1"} + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" "},"finish_reason":null}],"usage":null,"obfuscation":"kUvkrAGocnJ"} - data: {"id":"chatcmpl-CRdzPGEdWul8J6am5jOSgWZXVK6c8","object":"chat.completion.chunk","created":1760704611,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"40"},"finish_reason":null}],"usage":null,"obfuscation":"aVWsABpE1B"} + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"40"},"finish_reason":null}],"usage":null,"obfuscation":"99A85XCQou"} - data: {"id":"chatcmpl-CRdzPGEdWul8J6am5jOSgWZXVK6c8","object":"chat.completion.chunk","created":1760704611,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"°C"},"finish_reason":null}],"usage":null,"obfuscation":"vRN6vWf8xs"} + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"°C"},"finish_reason":null}],"usage":null,"obfuscation":"AvniZh9bSS"} - data: {"id":"chatcmpl-CRdzPGEdWul8J6am5jOSgWZXVK6c8","object":"chat.completion.chunk","created":1760704611,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" ("},"finish_reason":null}],"usage":null,"obfuscation":"qf1rIt73k5"} + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" ("},"finish_reason":null}],"usage":null,"obfuscation":"TW8wDQVHS8"} - data: {"id":"chatcmpl-CRdzPGEdWul8J6am5jOSgWZXVK6c8","object":"chat.completion.chunk","created":1760704611,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"104"},"finish_reason":null}],"usage":null,"obfuscation":"lkJ8qhLqA"} + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"104"},"finish_reason":null}],"usage":null,"obfuscation":"mZldA7TCO"} - data: {"id":"chatcmpl-CRdzPGEdWul8J6am5jOSgWZXVK6c8","object":"chat.completion.chunk","created":1760704611,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"°F"},"finish_reason":null}],"usage":null,"obfuscation":"x76W7W30bt"} + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"°F"},"finish_reason":null}],"usage":null,"obfuscation":"8mf53hQtJA"} - data: {"id":"chatcmpl-CRdzPGEdWul8J6am5jOSgWZXVK6c8","object":"chat.completion.chunk","created":1760704611,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":")"},"finish_reason":null}],"usage":null,"obfuscation":"X46lgG61m9r"} + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":")"},"finish_reason":null}],"usage":null,"obfuscation":"1Rb8wet2NPI"} - data: {"id":"chatcmpl-CRdzPGEdWul8J6am5jOSgWZXVK6c8","object":"chat.completion.chunk","created":1760704611,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" in"},"finish_reason":null}],"usage":null,"obfuscation":"IXf4EbHLq"} + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" in"},"finish_reason":null}],"usage":null,"obfuscation":"Yu5azcKFM"} - data: {"id":"chatcmpl-CRdzPGEdWul8J6am5jOSgWZXVK6c8","object":"chat.completion.chunk","created":1760704611,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Florence"},"finish_reason":null}],"usage":null,"obfuscation":"MQT"} + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Florence"},"finish_reason":null}],"usage":null,"obfuscation":"F2Q"} - data: {"id":"chatcmpl-CRdzPGEdWul8J6am5jOSgWZXVK6c8","object":"chat.completion.chunk","created":1760704611,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"finish_reason":null}],"usage":null,"obfuscation":"dxfY7jhGQdw"} + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"finish_reason":null}],"usage":null,"obfuscation":"mHcX706UAf7"} - data: {"id":"chatcmpl-CRdzPGEdWul8J6am5jOSgWZXVK6c8","object":"chat.completion.chunk","created":1760704611,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Italy"},"finish_reason":null}],"usage":null,"obfuscation":"WKm2x1"} + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Italy"},"finish_reason":null}],"usage":null,"obfuscation":"5ZKafo"} - data: {"id":"chatcmpl-CRdzPGEdWul8J6am5jOSgWZXVK6c8","object":"chat.completion.chunk","created":1760704611,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"finish_reason":null}],"usage":null,"obfuscation":"pCxaTBsDTC8"} + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"finish_reason":null}],"usage":null,"obfuscation":"ksBJT9ORN4W"} - data: {"id":"chatcmpl-CRdzPGEdWul8J6am5jOSgWZXVK6c8","object":"chat.completion.chunk","created":1760704611,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"uEVTHt"} + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Want"},"finish_reason":null}],"usage":null,"obfuscation":"AsH09ka"} - data: {"id":"chatcmpl-CRdzPGEdWul8J6am5jOSgWZXVK6c8","object":"chat.completion.chunk","created":1760704611,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":176,"completion_tokens":217,"total_tokens":393,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":192,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"PJkBnc"} + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" a"},"finish_reason":null}],"usage":null,"obfuscation":"ffDCYtZfG6"} + + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" forecast"},"finish_reason":null}],"usage":null,"obfuscation":"ree"} + + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" or"},"finish_reason":null}],"usage":null,"obfuscation":"8KeKcBw5T"} + + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" more"},"finish_reason":null}],"usage":null,"obfuscation":"S9sBpHy"} + + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" details"},"finish_reason":null}],"usage":null,"obfuscation":"855E"} + + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" like"},"finish_reason":null}],"usage":null,"obfuscation":"ZsQcAoo"} + + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" wind"},"finish_reason":null}],"usage":null,"obfuscation":"gPWHHcw"} + + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" and"},"finish_reason":null}],"usage":null,"obfuscation":"fb50AAQB"} + + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" precipitation"},"finish_reason":null}],"usage":null,"obfuscation":"GFPj1aAFqr092b"} + + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"?"},"finish_reason":null}],"usage":null,"obfuscation":"ASOmJoTz8dc"} + + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"FjUHfl"} + + data: {"id":"chatcmpl-DIgPJ8oDy11g7Dhcl6yilNP70J3pY","object":"chat.completion.chunk","created":1773345289,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":176,"completion_tokens":228,"total_tokens":404,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":192,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"Rf9dfT"} data: [DONE] @@ -122,4 +144,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 4.725152125s + duration: 6.066157375s diff --git a/providertests/testdata/TestOpenAICommon/openai-o4-mini/simple.yaml b/providertests/testdata/TestOpenAICommon/openai-o4-mini/simple.yaml index 65c1131bff2ca942b38c6ddd41154deda43f8884..5e6f8fb15c3992d476e509b1861c85a5cc9f2115 100644 --- a/providertests/testdata/TestOpenAICommon/openai-o4-mini/simple.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-o4-mini/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,16 +26,16 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CRdzlFzVyGYYxdsq9AKdmXfr7MukL", + "id": "chatcmpl-DIgPfPRHH3hbcJrUvp86lUUftzWnb", "object": "chat.completion", - "created": 1760704633, + "created": 1773345311, "model": "o4-mini-2025-04-16", "choices": [ { "index": 0, "message": { "role": "assistant", - "content": "Olá!", + "content": "Oi!", "refusal": null, "annotations": [] }, @@ -65,4 +65,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 2.321425625s + duration: 2.659721958s diff --git a/providertests/testdata/TestOpenAICommon/openai-o4-mini/simple_streaming.yaml b/providertests/testdata/TestOpenAICommon/openai-o4-mini/simple_streaming.yaml index de93f432a57e53a57619e65bde2f548495682dcd..56d1135df020e93612f369e9dd31fef62c3887b7 100644 --- a/providertests/testdata/TestOpenAICommon/openai-o4-mini/simple_streaming.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-o4-mini/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,15 +24,15 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CRdznBTZHwiwBn3wgDxF7dJBJmoV8","object":"chat.completion.chunk","created":1760704635,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"In0BspKy"} + data: {"id":"chatcmpl-DIgPh1YE0k628kxm9BT1bZ1Ruc66x","object":"chat.completion.chunk","created":1773345313,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"a0V9REEu"} - data: {"id":"chatcmpl-CRdznBTZHwiwBn3wgDxF7dJBJmoV8","object":"chat.completion.chunk","created":1760704635,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Oi"},"finish_reason":null}],"usage":null,"obfuscation":"RHZ9L7BA"} + data: {"id":"chatcmpl-DIgPh1YE0k628kxm9BT1bZ1Ruc66x","object":"chat.completion.chunk","created":1773345313,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Oi"},"finish_reason":null}],"usage":null,"obfuscation":"Zx8hqQTu"} - data: {"id":"chatcmpl-CRdznBTZHwiwBn3wgDxF7dJBJmoV8","object":"chat.completion.chunk","created":1760704635,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"!"},"finish_reason":null}],"usage":null,"obfuscation":"X8LMBUcZV"} + data: {"id":"chatcmpl-DIgPh1YE0k628kxm9BT1bZ1Ruc66x","object":"chat.completion.chunk","created":1773345313,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"!"},"finish_reason":null}],"usage":null,"obfuscation":"Pwf1M3ddx"} - data: {"id":"chatcmpl-CRdznBTZHwiwBn3wgDxF7dJBJmoV8","object":"chat.completion.chunk","created":1760704635,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"q1Yq"} + data: {"id":"chatcmpl-DIgPh1YE0k628kxm9BT1bZ1Ruc66x","object":"chat.completion.chunk","created":1773345313,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"DyIS"} - data: {"id":"chatcmpl-CRdznBTZHwiwBn3wgDxF7dJBJmoV8","object":"chat.completion.chunk","created":1760704635,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":19,"completion_tokens":148,"total_tokens":167,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":128,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"VkPeD"} + data: {"id":"chatcmpl-DIgPh1YE0k628kxm9BT1bZ1Ruc66x","object":"chat.completion.chunk","created":1773345313,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":19,"completion_tokens":148,"total_tokens":167,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":128,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"2vHvk"} data: [DONE] @@ -41,4 +41,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 3.133094s + duration: 1.727020792s diff --git a/providertests/testdata/TestOpenAICommon/openai-o4-mini/tool.yaml b/providertests/testdata/TestOpenAICommon/openai-o4-mini/tool.yaml index 7f6538b21b382d749a17ce6ce58f17efe079376e..cac2c69daac1d08ce3a69de9cb3307b89c486482 100644 --- a/providertests/testdata/TestOpenAICommon/openai-o4-mini/tool.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-o4-mini/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,9 +26,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CRdzrg9Xy1ovxuEsdeaIh5HbAmzlq", + "id": "chatcmpl-DIgPjH4PSJNZtaCUtWht6f93kVI2o", "object": "chat.completion", - "created": 1760704639, + "created": 1773345315, "model": "o4-mini-2025-04-16", "choices": [ { @@ -38,11 +38,11 @@ interactions: "content": null, "tool_calls": [ { - "id": "call_ZvgvJnyxcLxfnrw1vvy9QVMu", + "id": "call_Uto0Xgr2iYWOHzkWGoNNoYTb", "type": "function", "function": { "name": "weather", - "arguments": "{\"location\":\"Florence,Italy\"}" + "arguments": "{\"location\":\"Florence, Italy\"}" } } ], @@ -75,22 +75,22 @@ interactions: - application/json status: 200 OK code: 200 - duration: 2.706478833s + duration: 1.500324417s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 711 + content_length: 712 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_ZvgvJnyxcLxfnrw1vvy9QVMu","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_ZvgvJnyxcLxfnrw1vvy9QVMu","role":"tool"}],"model":"o4-mini","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_Uto0Xgr2iYWOHzkWGoNNoYTb","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_Uto0Xgr2iYWOHzkWGoNNoYTb","role":"tool"}],"model":"o4-mini","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -101,16 +101,16 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CRdzu4C4EiqGRGJMYLhi1nnaygxRb", + "id": "chatcmpl-DIgPkGqw5A5Sl65TfoTZrI4dgSUHd", "object": "chat.completion", - "created": 1760704642, + "created": 1773345316, "model": "o4-mini-2025-04-16", "choices": [ { "index": 0, "message": { "role": "assistant", - "content": "The current temperature in Florence, Italy is 40°C. It's quite hot, so stay hydrated and try to stay in the shade or indoors with air conditioning if you can!", + "content": "The current temperature in Florence, Italy is 40 °C.", "refusal": null, "annotations": [] }, @@ -119,8 +119,8 @@ interactions: ], "usage": { "prompt_tokens": 95, - "completion_tokens": 47, - "total_tokens": 142, + "completion_tokens": 25, + "total_tokens": 120, "prompt_tokens_details": { "cached_tokens": 0, "audio_tokens": 0 @@ -140,4 +140,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 1.575507083s + duration: 872.285291ms diff --git a/providertests/testdata/TestOpenAICommon/openai-o4-mini/tool_streaming.yaml b/providertests/testdata/TestOpenAICommon/openai-o4-mini/tool_streaming.yaml index 5b2f388bcd3c91b98af78ba329698f444c9cc691..76109fac52200681237da331217baaf09d51c36b 100644 --- a/providertests/testdata/TestOpenAICommon/openai-o4-mini/tool_streaming.yaml +++ b/providertests/testdata/TestOpenAICommon/openai-o4-mini/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,27 +24,27 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CRdzvzjPGfHTfxYWBuHOE6Fqgbd3w","object":"chat.completion.chunk","created":1760704643,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_XevDuUMYIPg4YiA0oGOYlJTt","type":"function","function":{"name":"weather","arguments":""}}],"refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"kPmohDP"} + data: {"id":"chatcmpl-DIgPlQPwJD3L58NCrIk3tvAcboKkQ","object":"chat.completion.chunk","created":1773345317,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":null,"tool_calls":[{"index":0,"id":"call_IPFxz4Q0YCdQYlcVjKu1zTAa","type":"function","function":{"name":"weather","arguments":""}}],"refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"VRnxcNa"} - data: {"id":"chatcmpl-CRdzvzjPGfHTfxYWBuHOE6Fqgbd3w","object":"chat.completion.chunk","created":1760704643,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\""}}]},"finish_reason":null}],"usage":null,"obfuscation":"l8ZBA4sqknndZ"} + data: {"id":"chatcmpl-DIgPlQPwJD3L58NCrIk3tvAcboKkQ","object":"chat.completion.chunk","created":1773345317,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\""}}]},"finish_reason":null}],"usage":null,"obfuscation":"V4pTgeLXAx9yZ"} - data: {"id":"chatcmpl-CRdzvzjPGfHTfxYWBuHOE6Fqgbd3w","object":"chat.completion.chunk","created":1760704643,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"location"}}]},"finish_reason":null}],"usage":null,"obfuscation":"uDtteUEc"} + data: {"id":"chatcmpl-DIgPlQPwJD3L58NCrIk3tvAcboKkQ","object":"chat.completion.chunk","created":1773345317,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"location"}}]},"finish_reason":null}],"usage":null,"obfuscation":"QsjsqhuC"} - data: {"id":"chatcmpl-CRdzvzjPGfHTfxYWBuHOE6Fqgbd3w","object":"chat.completion.chunk","created":1760704643,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\":\""}}]},"finish_reason":null}],"usage":null,"obfuscation":"RLch0C57YvN"} + data: {"id":"chatcmpl-DIgPlQPwJD3L58NCrIk3tvAcboKkQ","object":"chat.completion.chunk","created":1773345317,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\":\""}}]},"finish_reason":null}],"usage":null,"obfuscation":"ikmxFdW0G4O"} - data: {"id":"chatcmpl-CRdzvzjPGfHTfxYWBuHOE6Fqgbd3w","object":"chat.completion.chunk","created":1760704643,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Flor"}}]},"finish_reason":null}],"usage":null,"obfuscation":"ubrkTTBECEch"} + data: {"id":"chatcmpl-DIgPlQPwJD3L58NCrIk3tvAcboKkQ","object":"chat.completion.chunk","created":1773345317,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Flor"}}]},"finish_reason":null}],"usage":null,"obfuscation":"13vYLgoRPJKD"} - data: {"id":"chatcmpl-CRdzvzjPGfHTfxYWBuHOE6Fqgbd3w","object":"chat.completion.chunk","created":1760704643,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ence"}}]},"finish_reason":null}],"usage":null,"obfuscation":"ymKoTibZF2Wx"} + data: {"id":"chatcmpl-DIgPlQPwJD3L58NCrIk3tvAcboKkQ","object":"chat.completion.chunk","created":1773345317,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ence"}}]},"finish_reason":null}],"usage":null,"obfuscation":"aswXf0mYvU03"} - data: {"id":"chatcmpl-CRdzvzjPGfHTfxYWBuHOE6Fqgbd3w","object":"chat.completion.chunk","created":1760704643,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":","}}]},"finish_reason":null}],"usage":null,"obfuscation":"lunIUN6UnqixGVS"} + data: {"id":"chatcmpl-DIgPlQPwJD3L58NCrIk3tvAcboKkQ","object":"chat.completion.chunk","created":1773345317,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":","}}]},"finish_reason":null}],"usage":null,"obfuscation":"v6X6MmrIfRxFNTD"} - data: {"id":"chatcmpl-CRdzvzjPGfHTfxYWBuHOE6Fqgbd3w","object":"chat.completion.chunk","created":1760704643,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" Italy"}}]},"finish_reason":null}],"usage":null,"obfuscation":"0R7CM90wrz"} + data: {"id":"chatcmpl-DIgPlQPwJD3L58NCrIk3tvAcboKkQ","object":"chat.completion.chunk","created":1773345317,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" Italy"}}]},"finish_reason":null}],"usage":null,"obfuscation":"VfJN7HUk1x"} - data: {"id":"chatcmpl-CRdzvzjPGfHTfxYWBuHOE6Fqgbd3w","object":"chat.completion.chunk","created":1760704643,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"}"}}]},"finish_reason":null}],"usage":null,"obfuscation":"UoUH2orSC5M6H"} + data: {"id":"chatcmpl-DIgPlQPwJD3L58NCrIk3tvAcboKkQ","object":"chat.completion.chunk","created":1773345317,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"}"}}]},"finish_reason":null}],"usage":null,"obfuscation":"ji56ji488O4TT"} - data: {"id":"chatcmpl-CRdzvzjPGfHTfxYWBuHOE6Fqgbd3w","object":"chat.completion.chunk","created":1760704643,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"usage":null,"obfuscation":"kyr6C4vgS6KpIx"} + data: {"id":"chatcmpl-DIgPlQPwJD3L58NCrIk3tvAcboKkQ","object":"chat.completion.chunk","created":1773345317,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"usage":null,"obfuscation":"ZHLEkvPfQiwaBL"} - data: {"id":"chatcmpl-CRdzvzjPGfHTfxYWBuHOE6Fqgbd3w","object":"chat.completion.chunk","created":1760704643,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":64,"completion_tokens":25,"total_tokens":89,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"BMYaOAORX"} + data: {"id":"chatcmpl-DIgPlQPwJD3L58NCrIk3tvAcboKkQ","object":"chat.completion.chunk","created":1773345317,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":64,"completion_tokens":25,"total_tokens":89,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"gn2DQ30v3"} data: [DONE] @@ -53,7 +53,7 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 1.742662959s + duration: 1.224742875s - id: 1 request: proto: HTTP/1.1 @@ -61,14 +61,14 @@ interactions: proto_minor: 1 content_length: 766 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_XevDuUMYIPg4YiA0oGOYlJTt","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_XevDuUMYIPg4YiA0oGOYlJTt","role":"tool"}],"model":"o4-mini","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_IPFxz4Q0YCdQYlcVjKu1zTAa","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_IPFxz4Q0YCdQYlcVjKu1zTAa","role":"tool"}],"model":"o4-mini","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -77,67 +77,97 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"J9fqcxQ0"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"DDlYigKk"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"The"},"finish_reason":null}],"usage":null,"obfuscation":"9psTh4S"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"The"},"finish_reason":null}],"usage":null,"obfuscation":"jeEaJfD"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" current"},"finish_reason":null}],"usage":null,"obfuscation":"qC"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" current"},"finish_reason":null}],"usage":null,"obfuscation":"ao"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" temperature"},"finish_reason":null}],"usage":null,"obfuscation":"IWaJutlGMgxvCa"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" temperature"},"finish_reason":null}],"usage":null,"obfuscation":"O4FwZbYiLtqXpB"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" in"},"finish_reason":null}],"usage":null,"obfuscation":"7GnoJrO"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" in"},"finish_reason":null}],"usage":null,"obfuscation":"HuZjbZc"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Florence"},"finish_reason":null}],"usage":null,"obfuscation":"C"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Florence"},"finish_reason":null}],"usage":null,"obfuscation":"2"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"finish_reason":null}],"usage":null,"obfuscation":"7uviSp1f4"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"finish_reason":null}],"usage":null,"obfuscation":"SP4qhQ9ir"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Italy"},"finish_reason":null}],"usage":null,"obfuscation":"OIuc"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Italy"},"finish_reason":null}],"usage":null,"obfuscation":"dYeJ"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" is"},"finish_reason":null}],"usage":null,"obfuscation":"FefXEvV"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" is"},"finish_reason":null}],"usage":null,"obfuscation":"TCxfzaU"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" "},"finish_reason":null}],"usage":null,"obfuscation":"zMQLb8hcU"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" "},"finish_reason":null}],"usage":null,"obfuscation":"G0YjHOrDQ"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"40"},"finish_reason":null}],"usage":null,"obfuscation":"dqTN5maD"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"40"},"finish_reason":null}],"usage":null,"obfuscation":"F7QFoDDT"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"°C"},"finish_reason":null}],"usage":null,"obfuscation":"zmWzszVf"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"°C"},"finish_reason":null}],"usage":null,"obfuscation":"bBVJdTaK"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"finish_reason":null}],"usage":null,"obfuscation":"wcGkYYod2"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"finish_reason":null}],"usage":null,"obfuscation":"IIGrsbwaB"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Would"},"finish_reason":null}],"usage":null,"obfuscation":"Y3wl"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Let"},"finish_reason":null}],"usage":null,"obfuscation":"lgGKo9"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" you"},"finish_reason":null}],"usage":null,"obfuscation":"whFvbn"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" me"},"finish_reason":null}],"usage":null,"obfuscation":"v00rVsQ"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" like"},"finish_reason":null}],"usage":null,"obfuscation":"zleYy"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" know"},"finish_reason":null}],"usage":null,"obfuscation":"MjgMR"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" more"},"finish_reason":null}],"usage":null,"obfuscation":"LvKVS"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" if"},"finish_reason":null}],"usage":null,"obfuscation":"aC3WM4K"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" details"},"finish_reason":null}],"usage":null,"obfuscation":"6S"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" you"},"finish_reason":null}],"usage":null,"obfuscation":"NOFWzn"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" ("},"finish_reason":null}],"usage":null,"obfuscation":"CN2vr0cw"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"’d"},"finish_reason":null}],"usage":null,"obfuscation":"urEcj2hA"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"e"},"finish_reason":null}],"usage":null,"obfuscation":"MnqKVTshP"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" like"},"finish_reason":null}],"usage":null,"obfuscation":"WBTJI"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".g"},"finish_reason":null}],"usage":null,"obfuscation":"3dgCtAmi"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" more"},"finish_reason":null}],"usage":null,"obfuscation":"fsWyl"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".,"},"finish_reason":null}],"usage":null,"obfuscation":"3PssNymm"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" detailed"},"finish_reason":null}],"usage":null,"obfuscation":"4"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" humidity"},"finish_reason":null}],"usage":null,"obfuscation":"2"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" info"},"finish_reason":null}],"usage":null,"obfuscation":"wkh6a"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"finish_reason":null}],"usage":null,"obfuscation":"YOzesgDGD"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"—"},"finish_reason":null}],"usage":null,"obfuscation":"H6KfId463"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" wind"},"finish_reason":null}],"usage":null,"obfuscation":"WcWEd"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"such"},"finish_reason":null}],"usage":null,"obfuscation":"Xedcj0"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" speed"},"finish_reason":null}],"usage":null,"obfuscation":"22yU"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" as"},"finish_reason":null}],"usage":null,"obfuscation":"oCNLtJB"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"finish_reason":null}],"usage":null,"obfuscation":"YM4evRNHw"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" conditions"},"finish_reason":null}],"usage":null,"obfuscation":"vpA8sHknSBMoRi8"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" forecast"},"finish_reason":null}],"usage":null,"obfuscation":"X"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" ("},"finish_reason":null}],"usage":null,"obfuscation":"KCadl7a6"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":")?"},"finish_reason":null}],"usage":null,"obfuscation":"kWnwQGZK"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"sun"},"finish_reason":null}],"usage":null,"obfuscation":"82oDycO"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"u1V5"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ny"},"finish_reason":null}],"usage":null,"obfuscation":"77XWeW6R"} - data: {"id":"chatcmpl-CRdzxUM84mYwaVLVUEQ0BMkH7N3rK","object":"chat.completion.chunk","created":1760704645,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":95,"completion_tokens":40,"total_tokens":135,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"WOSHdxIx"} + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"finish_reason":null}],"usage":null,"obfuscation":"NbduFnd0o"} + + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" cloudy"},"finish_reason":null}],"usage":null,"obfuscation":"AGc"} + + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"finish_reason":null}],"usage":null,"obfuscation":"TA4voQggb"} + + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" etc"},"finish_reason":null}],"usage":null,"obfuscation":"LzOtRM"} + + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".),"},"finish_reason":null}],"usage":null,"obfuscation":"dIpk1Z1"} + + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" wind"},"finish_reason":null}],"usage":null,"obfuscation":"hADbE"} + + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" speed"},"finish_reason":null}],"usage":null,"obfuscation":"UAsn"} + + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":","},"finish_reason":null}],"usage":null,"obfuscation":"r1mai7bLD"} + + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" or"},"finish_reason":null}],"usage":null,"obfuscation":"1H6M62d"} + + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" forecasts"},"finish_reason":null}],"usage":null,"obfuscation":""} + + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" for"},"finish_reason":null}],"usage":null,"obfuscation":"oQJEKo"} + + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" upcoming"},"finish_reason":null}],"usage":null,"obfuscation":"y"} + + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" days"},"finish_reason":null}],"usage":null,"obfuscation":"xgMSt"} + + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"!"},"finish_reason":null}],"usage":null,"obfuscation":"OJ1z2ZLGq"} + + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"j9oI"} + + data: {"id":"chatcmpl-DIgPmdvQ53n4Vw2fe770d2VxVZnq3","object":"chat.completion.chunk","created":1773345318,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":95,"completion_tokens":55,"total_tokens":150,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"QsTDmpjG"} data: [DONE] @@ -146,4 +176,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 905.154333ms + duration: 450.043792ms diff --git a/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-4-fast/complex_object.yaml b/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-4-fast/complex_object.yaml index 4f359150012da77bf7eec85fcbfa3098632fce48..06238eb0d5a0ba09c525115de01caf36a7338b26 100644 --- a/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-4-fast/complex_object.yaml +++ b/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-4-fast/complex_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"c507c7e0-9670-a02e-8c70-1df65c243406","object":"chat.completion","created":1762637614,"model":"grok-4-fast-reasoning","choices":[{"index":0,"message":{"role":"assistant","content":"","tool_calls":[{"id":"call_93127190","function":{"name":"Book","arguments":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"fantasy\",\"adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":468,"completion_tokens":83,"total_tokens":1122,"prompt_tokens_details":{"text_tokens":468,"audio_tokens":0,"image_tokens":0,"cached_tokens":305},"completion_tokens_details":{"reasoning_tokens":571,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_bfbe7bd0a2"}' + body: '{"id":"4d079f49-147e-8564-409e-78a6aac4aa19","object":"chat.completion","created":1773345647,"model":"grok-4-fast-reasoning","choices":[{"index":0,"message":{"role":"assistant","content":"","tool_calls":[{"id":"call_50222897","function":{"name":"Book","arguments":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"fantasy\",\"adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":468,"completion_tokens":82,"total_tokens":870,"prompt_tokens_details":{"text_tokens":468,"audio_tokens":0,"image_tokens":0,"cached_tokens":305},"completion_tokens_details":{"reasoning_tokens":320,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":2488500},"system_fingerprint":"fp_3d7ed3b779"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 3.442305458s + duration: 4.112960917s diff --git a/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-4-fast/complex_object_streaming.yaml b/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-4-fast/complex_object_streaming.yaml index 93d28c0b053fe06941769bebd60645dfa8ad986c..f97181c9d918250b8d85f17ae4242088d6b49634 100644 --- a/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-4-fast/complex_object_streaming.yaml +++ b/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-4-fast/complex_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,1129 +24,11 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"role":"assistant"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"3ad22016-09c0-a473-e780-916350777cc5","object":"chat.completion.chunk","created":1773345656,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"role":"assistant","tool_calls":[{"id":"call_88118924","function":{"name":"Book","arguments":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"fantasy\",\"adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"3ad22016-09c0-a473-e780-916350777cc5","object":"chat.completion.chunk","created":1773345656,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637618,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637619,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637620,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637621,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_96704413","function":{"name":"Book","arguments":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"fantasy\",\"adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637621,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"7737a2b5-8585-c605-a8bb-3007b764dbfa","object":"chat.completion.chunk","created":1762637621,"model":"grok-4-fast-reasoning","choices":[],"usage":{"prompt_tokens":468,"completion_tokens":79,"total_tokens":1106,"prompt_tokens_details":{"text_tokens":468,"audio_tokens":0,"image_tokens":0,"cached_tokens":305},"completion_tokens_details":{"reasoning_tokens":559,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"3ad22016-09c0-a473-e780-916350777cc5","object":"chat.completion.chunk","created":1773345656,"model":"grok-4-fast-reasoning","choices":[],"usage":{"prompt_tokens":468,"completion_tokens":77,"total_tokens":1127,"prompt_tokens_details":{"text_tokens":468,"audio_tokens":0,"image_tokens":0,"cached_tokens":467},"completion_tokens_details":{"reasoning_tokens":582,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":3530500},"system_fingerprint":"fp_3d7ed3b779"} data: [DONE] @@ -1155,4 +37,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 168.769958ms + duration: 756.12025ms diff --git a/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-4-fast/simple_object.yaml b/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-4-fast/simple_object.yaml index 7e8648974e4afa1863f97b6fc5171bc63b939275..8fb48c9bab6ad4caa1e4118675094b424a629759 100644 --- a/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-4-fast/simple_object.yaml +++ b/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-4-fast/simple_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"c741f0c0-b3ad-605e-94e9-aa17f8ad0f1f","object":"chat.completion","created":1762637610,"model":"grok-4-fast-reasoning","choices":[{"index":0,"message":{"role":"assistant","content":"","tool_calls":[{"id":"call_85975414","function":{"name":"Person","arguments":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":401,"completion_tokens":46,"total_tokens":787,"prompt_tokens_details":{"text_tokens":401,"audio_tokens":0,"image_tokens":0,"cached_tokens":305},"completion_tokens_details":{"reasoning_tokens":340,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_bfbe7bd0a2"}' + body: '{"id":"ab5611ac-960a-803b-029b-1f1e3e99c3c0","object":"chat.completion","created":1773345643,"model":"grok-4-fast-reasoning","choices":[{"index":0,"message":{"role":"assistant","content":"","tool_calls":[{"id":"call_76442708","function":{"name":"Person","arguments":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":401,"completion_tokens":44,"total_tokens":630,"prompt_tokens_details":{"text_tokens":401,"audio_tokens":0,"image_tokens":0,"cached_tokens":305},"completion_tokens_details":{"reasoning_tokens":185,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":1489500},"system_fingerprint":"fp_3d7ed3b779"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.228575458s + duration: 2.231993875s diff --git a/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-4-fast/simple_object_streaming.yaml b/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-4-fast/simple_object_streaming.yaml index 80ef0a1830ba2caaa97bb80132ac258d2a264a25..b2f9aea265e093d3f3c75a30bb87560092165565 100644 --- a/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-4-fast/simple_object_streaming.yaml +++ b/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-4-fast/simple_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,349 +24,11 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"role":"assistant"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"212602fb-e3a2-6ee2-f83a-99bbfc95b48a","object":"chat.completion.chunk","created":1773345647,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"role":"assistant","tool_calls":[{"id":"call_19252052","function":{"name":"Person","arguments":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"212602fb-e3a2-6ee2-f83a-99bbfc95b48a","object":"chat.completion.chunk","created":1773345647,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637613,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637614,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_85608889","function":{"name":"Person","arguments":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637614,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"a6a4a8e9-1f95-504d-3f2c-0f106447d2d2","object":"chat.completion.chunk","created":1762637614,"model":"grok-4-fast-reasoning","choices":[],"usage":{"prompt_tokens":401,"completion_tokens":46,"total_tokens":616,"prompt_tokens_details":{"text_tokens":401,"audio_tokens":0,"image_tokens":0,"cached_tokens":400},"completion_tokens_details":{"reasoning_tokens":169,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"212602fb-e3a2-6ee2-f83a-99bbfc95b48a","object":"chat.completion.chunk","created":1773345647,"model":"grok-4-fast-reasoning","choices":[],"usage":{"prompt_tokens":401,"completion_tokens":44,"total_tokens":702,"prompt_tokens_details":{"text_tokens":401,"audio_tokens":0,"image_tokens":0,"cached_tokens":400},"completion_tokens_details":{"reasoning_tokens":257,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":1707000},"system_fingerprint":"fp_3d7ed3b779"} data: [DONE] @@ -375,4 +37,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 176.963166ms + duration: 635.784ms diff --git a/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-code-fast/complex_object.yaml b/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-code-fast/complex_object.yaml index 361b9a00ee2ac289131f64c34f3efd68e4587e0a..8705f2ef0bee68b56ea7b9be0cb107f86b2a4e27 100644 --- a/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-code-fast/complex_object.yaml +++ b/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-code-fast/complex_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"2537f822-595e-1e8e-fe59-59c9761c15a1","object":"chat.completion","created":1762637624,"model":"grok-code-fast-1","choices":[{"index":0,"message":{"role":"assistant","content":"","tool_calls":[{"id":"call_05092142","function":{"name":"Book","arguments":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"fantasy\",\"adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":496,"completion_tokens":81,"total_tokens":820,"prompt_tokens_details":{"text_tokens":496,"audio_tokens":0,"image_tokens":0,"cached_tokens":320},"completion_tokens_details":{"reasoning_tokens":243,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"}' + body: '{"id":"cf5c4efc-2fb0-ce7c-8020-a3d64e6cec23","object":"chat.completion","created":1773345673,"model":"grok-code-fast-1","choices":[{"index":0,"message":{"role":"assistant","content":"","reasoning_content":"## Gathering book details \n- The user requested information on \"The Lord of the Rings\" by J.R.R. Tolkien, including its genres and publication year. \n- Found the book fits the genres fantasy and adventure, with a publication year of 1954. \n- Noted the author is British, which will be included in the details. \n- Confirmed the book was published in three volumes, but commonly referred to as 1954 based on user input. \n- Preparing to compile all details for a complete book summary.","tool_calls":[{"id":"call_88538725","function":{"name":"Book","arguments":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"fantasy\",\"adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":496,"completion_tokens":77,"total_tokens":829,"prompt_tokens_details":{"text_tokens":496,"audio_tokens":0,"image_tokens":0,"cached_tokens":320},"completion_tokens_details":{"reasoning_tokens":256,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":5411000},"system_fingerprint":"fp_99052e9f23"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.213765834s + duration: 8.846421709s diff --git a/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-code-fast/complex_object_streaming.yaml b/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-code-fast/complex_object_streaming.yaml index ac074e4c28f247f57f71f376ea2255af1a8d5812..cfccb40e3dddb102075d367c40b72ac93a3181e8 100644 --- a/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-code-fast/complex_object_streaming.yaml +++ b/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-code-fast/complex_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,291 +24,83 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"The","role":"assistant"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"The","role":"assistant"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" asked"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" asked"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" generate"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" generate"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" information"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" information"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" about"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" about"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" '"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" '"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"The"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"The"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Lord"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Lord"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" of"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" of"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Rings"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Rings"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"'"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"'"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" by"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" book"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" J"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" by"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".R"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" J"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".R"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".R"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".R"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Tolkien"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Tolkien"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" with"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" genres"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" with"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" fantasy"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" genres"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" like"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" adventure"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" fantasy"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" adventure"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" publication"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" year"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" publication"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"195"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" year"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"4"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".\n"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"195"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"4"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345682,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".\n"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345683,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_82293478","function":{"name":"Book","arguments":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"fantasy\",\"adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345683,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637626,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_07349906","function":{"name":"Book","arguments":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"fantasy\",\"adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"821dc033-d41a-abe2-4f7a-61da882f43b8","object":"chat.completion.chunk","created":1762637627,"model":"grok-code-fast-1","choices":[],"usage":{"prompt_tokens":496,"completion_tokens":77,"total_tokens":713,"prompt_tokens_details":{"text_tokens":496,"audio_tokens":0,"image_tokens":0,"cached_tokens":448},"completion_tokens_details":{"reasoning_tokens":140,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"} + data: {"id":"a02db2b3-11e9-1b57-2f5b-c73c0809d2cf","object":"chat.completion.chunk","created":1773345683,"model":"grok-code-fast-1","choices":[],"usage":{"prompt_tokens":496,"completion_tokens":77,"total_tokens":694,"prompt_tokens_details":{"text_tokens":496,"audio_tokens":0,"image_tokens":0,"cached_tokens":448},"completion_tokens_details":{"reasoning_tokens":121,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":3155600},"system_fingerprint":"fp_99052e9f23"} data: [DONE] @@ -317,4 +109,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 391.881125ms + duration: 563.838834ms diff --git a/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-code-fast/simple_object.yaml b/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-code-fast/simple_object.yaml index 1520ab859d96a5f5249262163fdc6d55a1116ecc..e9498b6d5f3b8a0caf2916be4090dd582a12a1c8 100644 --- a/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-code-fast/simple_object.yaml +++ b/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-code-fast/simple_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"8d3d6258-cbe1-f871-55c0-32bd3487f2d7","object":"chat.completion","created":1762637621,"model":"grok-code-fast-1","choices":[{"index":0,"message":{"role":"assistant","content":"","tool_calls":[{"id":"call_38033184","function":{"name":"Person","arguments":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":429,"completion_tokens":44,"total_tokens":630,"prompt_tokens_details":{"text_tokens":429,"audio_tokens":0,"image_tokens":0,"cached_tokens":320},"completion_tokens_details":{"reasoning_tokens":157,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"}' + body: '{"id":"abf5cc8a-cbff-c3b8-aa7d-b8751de51020","object":"chat.completion","created":1773345657,"model":"grok-code-fast-1","choices":[{"index":0,"message":{"role":"assistant","content":"","reasoning_content":"## Processing user request \n- The user asked for information about Alice, who is 30 years old and lives in Paris. \n- Found a tool called \"Person\" that matches the request, with parameters for name, age, and city. \n\n## Structuring tool call \n- The tool requires parameters in the order: age, city, name, based on function definitions. \n- Will call the tool with parameters: age 30, city Paris, name Alice, to generate the information.","tool_calls":[{"id":"call_22831808","function":{"name":"Person","arguments":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":429,"completion_tokens":44,"total_tokens":975,"prompt_tokens_details":{"text_tokens":429,"audio_tokens":0,"image_tokens":0,"cached_tokens":192},"completion_tokens_details":{"reasoning_tokens":502,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":8702400},"system_fingerprint":"fp_99052e9f23"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.615676541s + duration: 12.069042709s diff --git a/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-code-fast/simple_object_streaming.yaml b/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-code-fast/simple_object_streaming.yaml index 4ac46828931d2b9752d9ad19b3a56915fef9c938..61a3bdf41b1c542f21d9a65b11447c134b064679 100644 --- a/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-code-fast/simple_object_streaming.yaml +++ b/providertests/testdata/TestOpenAICompatObjectGeneration/xai-grok-code-fast/simple_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,309 +24,99 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"The","role":"assistant"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"The","role":"assistant"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" asked"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" asks"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" generate"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" generate"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" information"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" information"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" about"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" about"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" person"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" person"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" named"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" named"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Alice"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Alice"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"30"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"30"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" years"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" years"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" old"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" old"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" living"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" living"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Paris"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Paris"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" There's"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" There's"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" tool"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" tool"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" called"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" called"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"Person"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"Person"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" that"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" that"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" matches"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" matches"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" this"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" this"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" exactly"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" it"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" it"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" creates"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" has"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" name"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" person"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" with"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" age"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" name"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" age"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" city"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".\n"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" city"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345670,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".\n"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345672,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_89395763","function":{"name":"Person","arguments":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345672,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_71440968","function":{"name":"Person","arguments":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"\n\n## Investigating user request \n- The user asked for information about Alice, a 30-year-old living in Paris."},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"8887124f-28ef-3f97-76c9-b348294a5bd5","object":"chat.completion.chunk","created":1762637623,"model":"grok-code-fast-1","choices":[],"usage":{"prompt_tokens":429,"completion_tokens":44,"total_tokens":622,"prompt_tokens_details":{"text_tokens":429,"audio_tokens":0,"image_tokens":0,"cached_tokens":384},"completion_tokens_details":{"reasoning_tokens":149,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"} + data: {"id":"6c2e9887-3a3b-dbcf-c9e3-a54e54208225","object":"chat.completion.chunk","created":1773345672,"model":"grok-code-fast-1","choices":[],"usage":{"prompt_tokens":429,"completion_tokens":44,"total_tokens":846,"prompt_tokens_details":{"text_tokens":429,"audio_tokens":0,"image_tokens":0,"cached_tokens":192},"completion_tokens_details":{"reasoning_tokens":373,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":6767400},"system_fingerprint":"fp_99052e9f23"} data: [DONE] @@ -335,4 +125,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 244.686625ms + duration: 1.629281625s diff --git a/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4-7-flash/complex_object.yaml b/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4-7-flash/complex_object.yaml new file mode 100644 index 0000000000000000000000000000000000000000..cb8a187c97c66bf78da1b6442a16307913a4af8f --- /dev/null +++ b/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4-7-flash/complex_object.yaml @@ -0,0 +1,33 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 964 + host: "" + body: '{"messages":[{"content":"Generate information about ''The Lord of the Rings'' book by J.R.R. Tolkien, including genres like fantasy and adventure, and its publication year (1954).","role":"user"}],"model":"glm-4.7-flash","max_tokens":4000,"tool_choice":{"function":{"name":"Book"},"type":"function"},"tools":[{"function":{"name":"Book","strict":false,"description":"A book with title, author, genres, and publication year","parameters":{"properties":{"author":{"properties":{"name":{"description":"Author''s name","type":"string"},"nationality":{"description":"Author''s nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"}},"type":"function"}]}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + 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":"","reasoning_content":"The user is asking me to generate information about \"The Lord of the Rings\" book by J.R.R. Tolkien. They''ve provided the specific details I need:\n- Title: \"The Lord of the Rings\"\n- Author: J.R.R. Tolkien (nationality: British/English - this is well-known)\n- Genres: fantasy and adventure (they mentioned these explicitly)\n- Publication year: 1954\n\nI need to use the Book function to create this entry. Let me check the required parameters:\n- title: \"The Lord of the Rings\" ✓\n- author: Need to create an author object with name and nationality\n - name: \"J.R.R. Tolkien\" ✓\n - nationality: \"British\" (this is correct - Tolkien was British) ✓\n- genres: [\"fantasy\", \"adventure\"] ✓\n- published_year: 1954 ✓\n\nAll required parameters are provided or can be reasonably inferred.","role":"assistant","tool_calls":[{"function":{"arguments":"{\"author\":{\"name\": \"J.R.R. Tolkien\", \"nationality\": \"British\"},\"genres\":[\"fantasy\", \"adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}","name":"Book"},"id":"call_-7807251775253113230","index":0,"type":"function"}]}}],"created":1773349517,"id":"20260313050506f00a029fba604431","model":"glm-4.7-flash","object":"chat.completion","request_id":"20260313050506f00a029fba604431","usage":{"completion_tokens":252,"completion_tokens_details":{"reasoning_tokens":194},"prompt_tokens":312,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":564}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 12.180893083s diff --git a/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4-7-flash/complex_object_streaming.yaml b/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4-7-flash/complex_object_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b5ae0b3c4b70d3e68f295eec0bb408df3578fc47 --- /dev/null +++ b/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4-7-flash/complex_object_streaming.yaml @@ -0,0 +1,388 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1018 + host: "" + body: '{"messages":[{"content":"Generate information about ''The Lord of the Rings'' book by J.R.R. Tolkien, including genres like fantasy and adventure, and its publication year (1954).","role":"user"}],"model":"glm-4.7-flash","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":{"function":{"name":"Book"},"type":"function"},"tools":[{"function":{"name":"Book","strict":false,"description":"A book with title, author, genres, and publication year","parameters":{"properties":{"author":{"properties":{"name":{"description":"Author''s name","type":"string"},"nationality":{"description":"Author''s nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"}},"type":"function"}],"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + 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":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" asking"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" me"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" generate"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" about"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Lord"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" of"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Rings"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" book"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" by"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" J"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".R"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".R"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Tolkien"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" They"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'ve"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provided"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" specific"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" details"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":\n"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Title"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Lord"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" of"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Rings"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"\n"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Author"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" J"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".R"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".R"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Tolkien"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\n"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Gen"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"res"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" fantasy"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" adventure"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\n"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Publication"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" year"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"195"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"4"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\n\n"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"I"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" need"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Book"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" create"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Let"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" me"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" check"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" required"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameters"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":\n"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" title"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Lord"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" of"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Rings"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ✓"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\n"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" author"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" need"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provide"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" an"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" author"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" object"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"name"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"national"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ity"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"\n"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" name"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"J"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".R"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".R"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Tolkien"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ✓"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\n"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" nationality"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" need"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" determine"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Tolkien"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" was"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" British"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\n"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" genres"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" [\""}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"fant"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"asy"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\","}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ad"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"venture"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"]"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ✓"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\n"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" published"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"_year"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"195"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"4"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ✓"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\n\n"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"I"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" create"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" book"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" entry"}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_809513e050954d3aa2d03b97","index":0,"type":"function","function":{"name":"Book","arguments":"{\"author\":{\"name\": \"J.R.R. Tolkien\", \"nationality\": \"British\"},\"genres\":[\"fantasy\", \"adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}}]}}]} + + data: {"id":"202603130505188c5fe47771ce4c7d","created":1773349518,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":312,"completion_tokens":233,"total_tokens":545,"prompt_tokens_details":{"cached_tokens":43},"completion_tokens_details":{"reasoning_tokens":175}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 5.787191958s diff --git a/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4-7-flash/simple_object.yaml b/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4-7-flash/simple_object.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3b4a0a1d3fbe91b651f24e90b621753373f9add1 --- /dev/null +++ b/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4-7-flash/simple_object.yaml @@ -0,0 +1,33 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 628 + host: "" + body: '{"messages":[{"content":"Generate information about a person named Alice who is 30 years old and lives in Paris.","role":"user"}],"model":"glm-4.7-flash","max_tokens":4000,"tool_choice":{"function":{"name":"Person"},"type":"function"},"tools":[{"function":{"name":"Person","strict":false,"description":"A person with name, age, and city","parameters":{"properties":{"age":{"description":"The person''s age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person''s name","type":"string"}},"required":["name","age","city"],"type":"object"}},"type":"function"}]}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + 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":"","reasoning_content":"The user wants me to generate information about a person named Alice who is 30 years old and lives in Paris. I have a Person function available that takes name, age, and city as required parameters. The user has provided all the required information:\n- name: Alice\n- age: 30\n- city: Paris\n\nI should use the Person function to generate this information.","role":"assistant","tool_calls":[{"function":{"arguments":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}","name":"Person"},"id":"call_-7807256997933348525","index":0,"type":"function"}]}}],"created":1773349503,"id":"202603130505011f6aa93c4e8445e0","model":"glm-4.7-flash","object":"chat.completion","request_id":"202603130505011f6aa93c4e8445e0","usage":{"completion_tokens":100,"completion_tokens_details":{"reasoning_tokens":77},"prompt_tokens":225,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":325}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 2.314329667s diff --git a/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4-7-flash/simple_object_streaming.yaml b/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4-7-flash/simple_object_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3e313578bd6c76aa4a14bad3d3ff68c3f1d54e59 --- /dev/null +++ b/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4-7-flash/simple_object_streaming.yaml @@ -0,0 +1,194 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 682 + host: "" + body: '{"messages":[{"content":"Generate information about a person named Alice who is 30 years old and lives in Paris.","role":"user"}],"model":"glm-4.7-flash","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":{"function":{"name":"Person"},"type":"function"},"tools":[{"function":{"name":"Person","strict":false,"description":"A person with name, age, and city","parameters":{"properties":{"age":{"description":"The person''s age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person''s name","type":"string"}},"required":["name","age","city"],"type":"object"}},"type":"function"}],"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + 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":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" wants"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" me"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" generate"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" about"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" person"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" named"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Alice"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" who"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"30"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" years"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" old"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" lives"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Paris"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" have"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Person"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" available"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" that"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" takes"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" three"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" required"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameters"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" name"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" age"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" city"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" has"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provided"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" all"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":\n\n"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" name"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Alice"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\n"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" age"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"30"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\n"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" city"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Paris"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\n\n"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"I"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Person"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" create"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" person"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_010379f2abac48dfaf05ba93","index":0,"type":"function","function":{"name":"Person","arguments":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}}]}}]} + + data: {"id":"20260313050503dd971f38137544a8","created":1773349503,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":225,"completion_tokens":101,"total_tokens":326,"prompt_tokens_details":{"cached_tokens":224},"completion_tokens_details":{"reasoning_tokens":78}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 742.753958ms diff --git a/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4.5/complex_object.yaml b/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4.5/complex_object.yaml deleted file mode 100644 index 62a93ca212988bc80f12926af1b2df8606403989..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4.5/complex_object.yaml +++ /dev/null @@ -1,33 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 958 - host: "" - body: '{"messages":[{"content":"Generate information about ''The Lord of the Rings'' book by J.R.R. Tolkien, including genres like fantasy and adventure, and its publication year (1954).","role":"user"}],"model":"glm-4.5","max_tokens":4000,"tool_choice":{"function":{"name":"Book"},"type":"function"},"tools":[{"function":{"name":"Book","strict":false,"description":"A book with title, author, genres, and publication year","parameters":{"properties":{"author":{"properties":{"name":{"description":"Author''s name","type":"string"},"nationality":{"description":"Author''s nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"}},"type":"function"}]}' - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - OpenAI/Go 2.7.1 - 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":"","reasoning_content":"\nThe user is asking me to generate information about \"The Lord of the Rings\" book. They''ve provided specific details:\n- Title: \"The Lord of the Rings\"\n- Author: J.R.R. Tolkien \n- Genres: fantasy and adventure\n- Publication year: 1954\n\nI need to use the Book function to create this information. Let me check the required parameters:\n- title: \"The Lord of the Rings\" ✓\n- author: This needs to be an object with name and nationality. The user provided \"J.R.R. Tolkien\" as the name, but didn''t specify nationality. However, I know Tolkien was British, so I should include that.\n- genres: [\"fantasy\", \"adventure\"] ✓\n- published_year: 1954 ✓\n\nFor the author parameter, I need to create an object with:\n- name: \"J.R.R. Tolkien\"\n- nationality: I should use \"British\" as Tolkien was from the UK\n\nLet me make the function call.","role":"assistant","tool_calls":[{"function":{"arguments":"{\"author\":{\"name\": \"J.R.R. Tolkien\", \"nationality\": \"British\"},\"genres\":[\"fantasy\", \"adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}","name":"Book"},"id":"call_-8178161609897772812","index":0,"type":"function"}]}}],"created":1762637648,"id":"20251109053400036d2d4153bd41bf","model":"glm-4.5","request_id":"20251109053400036d2d4153bd41bf","usage":{"completion_tokens":275,"prompt_tokens":317,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":592}}' - headers: - Content-Type: - - application/json; charset=UTF-8 - status: 200 OK - code: 200 - duration: 8.903275792s diff --git a/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4.5/complex_object_streaming.yaml b/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4.5/complex_object_streaming.yaml deleted file mode 100644 index 5f73fae91a9700cf6f1be48a789003f7b7d5f678..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4.5/complex_object_streaming.yaml +++ /dev/null @@ -1,446 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 1012 - host: "" - body: '{"messages":[{"content":"Generate information about ''The Lord of the Rings'' book by J.R.R. Tolkien, including genres like fantasy and adventure, and its publication year (1954).","role":"user"}],"model":"glm-4.5","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":{"function":{"name":"Book"},"type":"function"},"tools":[{"function":{"name":"Book","strict":false,"description":"A book with title, author, genres, and publication year","parameters":{"properties":{"author":{"properties":{"name":{"description":"Author''s name","type":"string"},"nationality":{"description":"Author''s nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"}},"type":"function"}],"stream":true}' - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - OpenAI/Go 2.7.1 - 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":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" wants"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" me"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" generate"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" about"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Lord"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" of"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Rings"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" book"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" by"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" J"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".R"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".R"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Tolkien"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" They"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'ve"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provided"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" specific"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" details"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":\n"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Title"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Lord"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" of"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Rings"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"\n"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Author"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" J"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".R"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".R"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Tolkien"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Gen"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"res"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" fantasy"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" adventure"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Publication"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" year"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"195"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"4"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n\n"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"I"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" need"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Book"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" create"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Let"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" me"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" check"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" required"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameters"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":\n"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" title"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Lord"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" of"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Rings"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ✓"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" author"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" needs"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" an"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" object"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" name"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" nationality"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provided"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"J"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".R"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".R"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Tolkien"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" name"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" but"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" didn"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'t"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" specify"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" nationality"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" reasonable"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" nationality"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Tolkien"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" he"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" was"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" British"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"/"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"English"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" genres"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" [\""}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"fant"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"asy"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\","}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ad"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"venture"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"]"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ✓"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" published"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"_year"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"195"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"4"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ✓"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n\n"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"For"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" author"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" need"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" create"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" an"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" object"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" name"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"J"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".R"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".R"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Tolkien"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" nationality"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Tolkien"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" was"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" British"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" so"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'ll"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"British"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" nationality"}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_94b356a0eb5f46da8edc2ac4","index":0,"type":"function","function":{"name":"Book","arguments":"{\"author\":{\"name\": \"J.R.R. Tolkien\", \"nationality\": \"British\"},\"genres\":[\"fantasy\", \"adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}}]}}]} - - data: {"id":"202511090534097e2c534f7c00470a","created":1762637649,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":317,"completion_tokens":272,"total_tokens":589,"prompt_tokens_details":{"cached_tokens":316}}} - - data: [DONE] - - headers: - Content-Type: - - text/event-stream;charset=UTF-8 - status: 200 OK - code: 200 - duration: 650.778291ms diff --git a/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4.5/simple_object.yaml b/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4.5/simple_object.yaml deleted file mode 100644 index 2cb27dfed8186c00d1fa04d6062c65d0ed92114e..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4.5/simple_object.yaml +++ /dev/null @@ -1,33 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 622 - host: "" - body: '{"messages":[{"content":"Generate information about a person named Alice who is 30 years old and lives in Paris.","role":"user"}],"model":"glm-4.5","max_tokens":4000,"tool_choice":{"function":{"name":"Person"},"type":"function"},"tools":[{"function":{"name":"Person","strict":false,"description":"A person with name, age, and city","parameters":{"properties":{"age":{"description":"The person''s age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person''s name","type":"string"}},"required":["name","age","city"],"type":"object"}},"type":"function"}]}' - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - OpenAI/Go 2.7.1 - 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":"","reasoning_content":"\nThe user is asking me to generate information about a person named Alice who is 30 years old and lives in Paris. Looking at the available function, I have a \"Person\" function that takes three required parameters:\n- name: \"Alice\" \n- age: 30\n- city: \"Paris\"\n\nAll the required parameters are provided, so I can call this function.","role":"assistant","tool_calls":[{"function":{"arguments":"{\"age\": 30, \"city\": \"Paris\", \"name\": \"Alice\"}","name":"Person"},"id":"call_-8178200539482324764","index":0,"type":"function"}]}}],"created":1762637635,"id":"2025110905335254041e69de3b448e","model":"glm-4.5","request_id":"2025110905335254041e69de3b448e","usage":{"completion_tokens":121,"prompt_tokens":230,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":351}}' - headers: - Content-Type: - - application/json; charset=UTF-8 - status: 200 OK - code: 200 - duration: 6.174196125s diff --git a/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4.5/simple_object_streaming.yaml b/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4.5/simple_object_streaming.yaml deleted file mode 100644 index 8e6668ce2c18b2db2f93599fbdbe76176fa91930..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestOpenAICompatObjectGeneration/zai-glm-4.5/simple_object_streaming.yaml +++ /dev/null @@ -1,200 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 676 - host: "" - body: '{"messages":[{"content":"Generate information about a person named Alice who is 30 years old and lives in Paris.","role":"user"}],"model":"glm-4.5","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":{"function":{"name":"Person"},"type":"function"},"tools":[{"function":{"name":"Person","strict":false,"description":"A person with name, age, and city","parameters":{"properties":{"age":{"description":"The person''s age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person''s name","type":"string"}},"required":["name","age","city"],"type":"object"}},"type":"function"}],"stream":true}' - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - OpenAI/Go 2.7.1 - 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":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" wants"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" me"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" generate"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" about"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" person"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" specific"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" details"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":\n"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Name"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Alice"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Age"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"30"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" City"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Paris"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n\n"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"I"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" have"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Person"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" available"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" that"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" takes"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" these"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" exact"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameters"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":\n"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" name"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"required"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"):"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Alice"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"\n"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" age"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"required"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"):"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"30"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" city"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"required"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"):"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Paris"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"\n\n"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"All"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" required"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameters"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" are"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provided"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" so"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" can"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" make"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" call"}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_11f61396a06b43ebb9ab7992","index":0,"type":"function","function":{"name":"Person","arguments":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}}]}}]} - - data: {"id":"2025110905335643ffc6855fee49b2","created":1762637636,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":230,"completion_tokens":112,"total_tokens":342,"prompt_tokens_details":{"cached_tokens":43}}} - - data: [DONE] - - headers: - Content-Type: - - text/event-stream;charset=UTF-8 - status: 200 OK - code: 200 - duration: 1.864133208s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/multi_tool.yaml b/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/multi_tool.yaml index 5b98ddddbb47c8a6b847864ab575579977d801e9..9700957ba64171e6a93dd72a81107b9dda1f0d2e 100644 --- a/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/multi_tool.yaml +++ b/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/multi_tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.groq.com/openai/v1/chat/completions method: POST response: @@ -25,28 +25,28 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"chatcmpl-f99f9572-5553-418a-a974-3ce7763f287d","object":"chat.completion","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","choices":[{"index":0,"message":{"role":"assistant","content":"I'll add and multiply the numbers 2 and 3 for you.","tool_calls":[{"id":"functions.add:0","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}},{"id":"functions.multiply:1","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}]},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"queue_time":0.16105511,"prompt_tokens":205,"prompt_time":0.021381762,"completion_tokens":55,"completion_time":0.177128832,"total_tokens":260,"total_time":0.198510594},"usage_breakdown":null,"system_fingerprint":"fp_5fe129dff6","x_groq":{"id":"req_01k9s5gdn9fqpaz58zxaarqt7b"},"service_tier":"on_demand"} + {"id":"chatcmpl-062b781b-b680-460e-b8c9-ec1d8fce6df9","object":"chat.completion","created":1773345614,"model":"moonshotai/kimi-k2-instruct-0905","choices":[{"index":0,"message":{"role":"assistant","content":"I'll add and multiply 2 and 3 for you.","tool_calls":[{"id":"functions.add:0","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}},{"id":"functions.multiply:1","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}]},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"queue_time":0.199896963,"prompt_tokens":205,"prompt_time":0.042576435,"completion_tokens":53,"completion_time":0.149338403,"total_tokens":258,"total_time":0.191914838},"usage_breakdown":null,"system_fingerprint":"fp_05df423bab","x_groq":{"id":"req_01kkht5a6nfzxtkc3tsg6bsh65","seed":491682413},"service_tier":"on_demand"} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 410.276791ms + duration: 525.948084ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1279 + content_length: 1267 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 add and multiply the numbers 2 and 3 for you.","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply:1","role":"tool"}],"model":"moonshotai/kimi-k2-instruct-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"}]}' + 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 add and multiply 2 and 3 for you.","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply:1","role":"tool"}],"model":"moonshotai/kimi-k2-instruct-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"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.groq.com/openai/v1/chat/completions method: POST response: @@ -56,10 +56,10 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"chatcmpl-21bda724-6180-4357-943e-a555622dd5b9","object":"chat.completion","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","choices":[{"index":0,"message":{"role":"assistant","content":"The results are:\n- Addition: 2 + 3 = 5\n- Multiplication: 2 × 3 = 6"},"logprobs":null,"finish_reason":"stop"}],"usage":{"queue_time":0.162310812,"prompt_tokens":297,"prompt_time":0.029482976,"completion_tokens":29,"completion_time":0.06281568,"total_tokens":326,"total_time":0.092298656},"usage_breakdown":null,"system_fingerprint":"fp_3312304636","x_groq":{"id":"req_01k9s5ge24ehwsanxan8an35he"},"service_tier":"on_demand"} + {"id":"chatcmpl-30fc98d9-2d82-4085-b639-2709664bc6c3","object":"chat.completion","created":1773345614,"model":"moonshotai/kimi-k2-instruct-0905","choices":[{"index":0,"message":{"role":"assistant","content":"Here are the results:\n- Addition: 2 + 3 = **5**\n- Multiplication: 2 × 3 = **6**"},"logprobs":null,"finish_reason":"stop"}],"usage":{"queue_time":0.192768557,"prompt_tokens":295,"prompt_time":0.094786521,"completion_tokens":31,"completion_time":0.074686642,"total_tokens":326,"total_time":0.169473163},"usage_breakdown":null,"system_fingerprint":"fp_241bc7119c","x_groq":{"id":"req_01kkht5aq5fzxr9z5y8yrcpmy4","seed":1916015797},"service_tier":"on_demand"} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 305.567541ms + duration: 407.653083ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/multi_tool_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/multi_tool_streaming.yaml index b46e603a5db51f0674c73752e0d4d8876a86c094..d1e6d56d31a2ea3cc5a1fd9de484a5a131d141ff 100644 --- a/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/multi_tool_streaming.yaml +++ b/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/multi_tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.groq.com/openai/v1/chat/completions method: POST response: @@ -24,47 +24,49 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}],"x_groq":{"id":"req_01k9s5gebzfqpr76b0dcepxd89"}} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}],"x_groq":{"id":"req_01kkht5b3yfqdt97w99bdntjns","seed":690443319}} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":"I'll"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":"I'll"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" calculate"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" perform"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" both"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" both"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" addition"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" sum"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" multiplication"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" product"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" on"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" of"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" numbers"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":"2"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":"2"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" for"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" you"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" for"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" you"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"tool_calls":[{"id":"functions.add:0","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"},"index":0}]},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"tool_calls":[{"id":"functions.multiply:1","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"},"index":1}]},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"tool_calls":[{"id":"functions.add:0","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"},"index":0}]},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}],"x_groq":{"id":"req_01k9s5gebzfqpr76b0dcepxd89","usage":{"queue_time":0.162914893,"prompt_tokens":201,"prompt_time":0.052741139,"completion_tokens":57,"completion_time":0.195291661,"total_tokens":258,"total_time":0.2480328}},"usage":{"queue_time":0.162914893,"prompt_tokens":201,"prompt_time":0.052741139,"completion_tokens":57,"completion_time":0.195291661,"total_tokens":258,"total_time":0.2480328}} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"tool_calls":[{"id":"functions.multiply:1","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"},"index":1}]},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-2c900147-daa3-4ba7-9f06-34cddb9750d2","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[],"usage":{"queue_time":0.162914893,"prompt_tokens":201,"prompt_time":0.052741139,"completion_tokens":57,"completion_time":0.195291661,"total_tokens":258,"total_time":0.2480328},"service_tier":"on_demand"} + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}],"x_groq":{"id":"req_01kkht5b3yfqdt97w99bdntjns","usage":{"queue_time":0.200019293,"prompt_tokens":201,"prompt_time":0.022569048,"completion_tokens":58,"completion_time":0.168140587,"total_tokens":259,"total_time":0.190709635}},"usage":{"queue_time":0.200019293,"prompt_tokens":201,"prompt_time":0.022569048,"completion_tokens":58,"completion_time":0.168140587,"total_tokens":259,"total_time":0.190709635}} + + data: {"id":"chatcmpl-a74ad02f-fb60-461d-8042-24ab0b962b51","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[],"usage":{"queue_time":0.200019293,"prompt_tokens":201,"prompt_time":0.022569048,"completion_tokens":58,"completion_time":0.168140587,"total_tokens":259,"total_time":0.190709635},"service_tier":"on_demand"} data: [DONE] @@ -73,22 +75,22 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 270.783709ms + duration: 257.591833ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1325 + content_length: 1343 host: "" - body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"content":"I''ll calculate both the sum and product of 2 and 3 for you.","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply:1","role":"tool"}],"model":"moonshotai/kimi-k2-instruct-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"}],"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 on the numbers 2 and 3 for you.","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply:1","role":"tool"}],"model":"moonshotai/kimi-k2-instruct-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"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.groq.com/openai/v1/chat/completions method: POST response: @@ -97,71 +99,69 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}],"x_groq":{"id":"req_01k9s5geteehya7n9jqe65paze"}} - - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}],"x_groq":{"id":"req_01kkht5bh5fqdtgmaa2dyb1d2w","seed":1752296393}} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" results"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"Here"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" are"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" are"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":":\n"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"-"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" results"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" **"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":":\n"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"Addition"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"-"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"**:"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" Addition"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"2"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" +"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"2"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" +"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" ="},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" ="},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"5"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"\n"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"5"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"-"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"\n"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" **"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"-"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"Multi"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" Multi"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"plication"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"plication"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"**:"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"2"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"2"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" ×"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" ×"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" ="},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" ="},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"6"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"6"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"x_groq":{"id":"req_01k9s5geteehya7n9jqe65paze","usage":{"queue_time":0.16011279,"prompt_tokens":295,"prompt_time":0.054205662,"completion_tokens":31,"completion_time":0.082124494,"total_tokens":326,"total_time":0.136330156}},"usage":{"queue_time":0.16011279,"prompt_tokens":295,"prompt_time":0.054205662,"completion_tokens":31,"completion_time":0.082124494,"total_tokens":326,"total_time":0.136330156}} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"x_groq":{"id":"req_01kkht5bh5fqdtgmaa2dyb1d2w","usage":{"queue_time":0.21146538,"prompt_tokens":296,"prompt_time":0.060790061,"completion_tokens":30,"completion_time":0.066672213,"total_tokens":326,"total_time":0.127462274}},"usage":{"queue_time":0.21146538,"prompt_tokens":296,"prompt_time":0.060790061,"completion_tokens":30,"completion_time":0.066672213,"total_tokens":326,"total_time":0.127462274}} - data: {"id":"chatcmpl-76e3527c-b479-46a6-982f-fe721501bb7a","object":"chat.completion.chunk","created":1762854976,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[],"usage":{"queue_time":0.16011279,"prompt_tokens":295,"prompt_time":0.054205662,"completion_tokens":31,"completion_time":0.082124494,"total_tokens":326,"total_time":0.136330156},"service_tier":"on_demand"} + data: {"id":"chatcmpl-f88f0c44-83f0-41e1-be33-9c520acb9090","object":"chat.completion.chunk","created":1773345615,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[],"usage":{"queue_time":0.21146538,"prompt_tokens":296,"prompt_time":0.060790061,"completion_tokens":30,"completion_time":0.066672213,"total_tokens":326,"total_time":0.127462274},"service_tier":"on_demand"} data: [DONE] @@ -170,4 +170,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 265.328458ms + duration: 309.791792ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/simple.yaml b/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/simple.yaml index deabd88b45dcf810dbb5ee1b97ad04a42b42b029..bd103edeb923a5aecf9530dca12c4dcb8a850c39 100644 --- a/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/simple.yaml +++ b/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.groq.com/openai/v1/chat/completions method: POST response: @@ -25,10 +25,10 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"chatcmpl-9d25476d-ffb3-4fc0-8a33-6e84b5ede19c","object":"chat.completion","created":1762854973,"model":"moonshotai/kimi-k2-instruct-0905","choices":[{"index":0,"message":{"role":"assistant","content":"Olá!"},"logprobs":null,"finish_reason":"stop"}],"usage":{"queue_time":0.161356542,"prompt_tokens":20,"prompt_time":0.009083588,"completion_tokens":4,"completion_time":0.008812502,"total_tokens":24,"total_time":0.01789609},"usage_breakdown":null,"system_fingerprint":"fp_5fe129dff6","x_groq":{"id":"req_01k9s5gc22f6m968npajvjx0x0"},"service_tier":"on_demand"} + {"id":"chatcmpl-6a0f3262-12b3-44b8-8253-8c1cad4415d5","object":"chat.completion","created":1773345612,"model":"moonshotai/kimi-k2-instruct-0905","choices":[{"index":0,"message":{"role":"assistant","content":"Olá!"},"logprobs":null,"finish_reason":"stop"}],"usage":{"queue_time":0.194572138,"prompt_tokens":20,"prompt_time":0.010962163,"completion_tokens":4,"completion_time":0.009096914,"total_tokens":24,"total_time":0.020059077},"usage_breakdown":null,"system_fingerprint":"fp_00c37775b7","x_groq":{"id":"req_01kkht589efqdsj9kpsy67f2sk","seed":1322261444},"service_tier":"on_demand"} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 374.755334ms + duration: 373.365833ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/simple_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/simple_streaming.yaml index a79fe0d2cc1dd5b02917aaedf13a20a1352bf434..bfaecb46bd846c3bba422e96fd0efa69dfda3a7c 100644 --- a/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/simple_streaming.yaml +++ b/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.groq.com/openai/v1/chat/completions method: POST response: @@ -24,17 +24,17 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-01c5e4bc-e533-4f23-bc74-32b9f2f473b0","object":"chat.completion.chunk","created":1762854973,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}],"x_groq":{"id":"req_01k9s5gc9mfqk9exgvmtm3gw25"}} + data: {"id":"chatcmpl-f07b368c-ae72-4555-9465-ae09fe4614e6","object":"chat.completion.chunk","created":1773345612,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}],"x_groq":{"id":"req_01kkht58hmfqdt7taat7yqmh20","seed":2139001717}} - data: {"id":"chatcmpl-01c5e4bc-e533-4f23-bc74-32b9f2f473b0","object":"chat.completion.chunk","created":1762854973,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"Ol"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f07b368c-ae72-4555-9465-ae09fe4614e6","object":"chat.completion.chunk","created":1773345612,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":"Ol"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-01c5e4bc-e533-4f23-bc74-32b9f2f473b0","object":"chat.completion.chunk","created":1762854973,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"á"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f07b368c-ae72-4555-9465-ae09fe4614e6","object":"chat.completion.chunk","created":1773345612,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":"á"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-01c5e4bc-e533-4f23-bc74-32b9f2f473b0","object":"chat.completion.chunk","created":1762854973,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"!"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-f07b368c-ae72-4555-9465-ae09fe4614e6","object":"chat.completion.chunk","created":1773345612,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":"!"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-01c5e4bc-e533-4f23-bc74-32b9f2f473b0","object":"chat.completion.chunk","created":1762854973,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"x_groq":{"id":"req_01k9s5gc9mfqk9exgvmtm3gw25","usage":{"queue_time":0.160975287,"prompt_tokens":20,"prompt_time":0.009101728,"completion_tokens":4,"completion_time":0.009250085,"total_tokens":24,"total_time":0.018351813}},"usage":{"queue_time":0.160975287,"prompt_tokens":20,"prompt_time":0.009101728,"completion_tokens":4,"completion_time":0.009250085,"total_tokens":24,"total_time":0.018351813}} + data: {"id":"chatcmpl-f07b368c-ae72-4555-9465-ae09fe4614e6","object":"chat.completion.chunk","created":1773345612,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"x_groq":{"id":"req_01kkht58hmfqdt7taat7yqmh20","usage":{"queue_time":0.193227832,"prompt_tokens":20,"prompt_time":0.010710679,"completion_tokens":4,"completion_time":0.009030045,"total_tokens":24,"total_time":0.019740724}},"usage":{"queue_time":0.193227832,"prompt_tokens":20,"prompt_time":0.010710679,"completion_tokens":4,"completion_time":0.009030045,"total_tokens":24,"total_time":0.019740724}} - data: {"id":"chatcmpl-01c5e4bc-e533-4f23-bc74-32b9f2f473b0","object":"chat.completion.chunk","created":1762854973,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[],"usage":{"queue_time":0.160975287,"prompt_tokens":20,"prompt_time":0.009101728,"completion_tokens":4,"completion_time":0.009250085,"total_tokens":24,"total_time":0.018351813},"service_tier":"on_demand"} + data: {"id":"chatcmpl-f07b368c-ae72-4555-9465-ae09fe4614e6","object":"chat.completion.chunk","created":1773345612,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[],"usage":{"queue_time":0.193227832,"prompt_tokens":20,"prompt_time":0.010710679,"completion_tokens":4,"completion_time":0.009030045,"total_tokens":24,"total_time":0.019740724},"service_tier":"on_demand"} data: [DONE] @@ -43,4 +43,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 221.770167ms + duration: 238.122625ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/tool.yaml b/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/tool.yaml index 53c795371ce62fb7ad650f836fecbc2fdb261a56..2b79cf9d4c410ff2811297ec458bf08963a2634c 100644 --- a/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/tool.yaml +++ b/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.groq.com/openai/v1/chat/completions method: POST response: @@ -25,28 +25,28 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"chatcmpl-7822ddc7-c616-45cc-9315-1da4ae05d870","object":"chat.completion","created":1762854974,"model":"moonshotai/kimi-k2-instruct-0905","choices":[{"index":0,"message":{"role":"assistant","tool_calls":[{"id":"functions.weather:0","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"}}]},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"queue_time":0.162552698,"prompt_tokens":93,"prompt_time":0.01385344,"completion_tokens":21,"completion_time":0.067437002,"total_tokens":114,"total_time":0.081290442},"usage_breakdown":null,"system_fingerprint":"fp_3312304636","x_groq":{"id":"req_01k9s5gcgyf6ttekbzf8v4fta8"},"service_tier":"on_demand"} + {"id":"chatcmpl-be641f72-2714-47dd-8b4f-522e8134fe11","object":"chat.completion","created":1773345612,"model":"moonshotai/kimi-k2-instruct-0905","choices":[{"index":0,"message":{"role":"assistant","content":"I'll check the weather in Florence, Italy for you.","tool_calls":[{"id":"functions.weather:0","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"}}]},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"queue_time":0.195204943,"prompt_tokens":93,"prompt_time":0.014645715,"completion_tokens":32,"completion_time":0.085405286,"total_tokens":125,"total_time":0.100051001},"usage_breakdown":null,"system_fingerprint":"fp_241bc7119c","x_groq":{"id":"req_01kkht58t5fzxty9507k1xeacd","seed":1524148036},"service_tier":"on_demand"} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 294.483708ms + duration: 367.7875ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 705 + content_length: 768 host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"functions.weather:0","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"functions.weather:0","role":"tool"}],"model":"moonshotai/kimi-k2-instruct-0905","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"I''ll check the weather in Florence, Italy for you.","tool_calls":[{"id":"functions.weather:0","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"functions.weather:0","role":"tool"}],"model":"moonshotai/kimi-k2-instruct-0905","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.groq.com/openai/v1/chat/completions method: POST response: @@ -56,10 +56,10 @@ interactions: content_length: -1 uncompressed: true body: | - {"id":"chatcmpl-97e734c9-073a-48bf-926d-462e1eb23a77","object":"chat.completion","created":1762854974,"model":"moonshotai/kimi-k2-instruct-0905","choices":[{"index":0,"message":{"role":"assistant","content":"It's currently 40°C in Florence, Italy."},"logprobs":null,"finish_reason":"stop"}],"usage":{"queue_time":0.162461202,"prompt_tokens":132,"prompt_time":0.017534991,"completion_tokens":11,"completion_time":0.021573995,"total_tokens":143,"total_time":0.039108986},"usage_breakdown":null,"system_fingerprint":"fp_3312304636","x_groq":{"id":"req_01k9s5gct2fqm9ew59aphgfzdc"},"service_tier":"on_demand"} + {"id":"chatcmpl-7a679b99-7eeb-4a98-ac30-c48297ee855f","object":"chat.completion","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","choices":[{"index":0,"message":{"role":"assistant","content":"The current temperature in Florence, Italy is 40°C."},"logprobs":null,"finish_reason":"stop"}],"usage":{"queue_time":0.2004154,"prompt_tokens":143,"prompt_time":0.037531339,"completion_tokens":13,"completion_time":0.039510744,"total_tokens":156,"total_time":0.077042083},"usage_breakdown":null,"system_fingerprint":"fp_05df423bab","x_groq":{"id":"req_01kkht595hfwrt93w2tve660tb","seed":1991909797},"service_tier":"on_demand"} headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 248.764041ms + duration: 362.018875ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/tool_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/tool_streaming.yaml index 6af65686ad7b2b236a12110e3bbffccca6d8765f..ec321d1b443e3295346be9882d5a51e041a3cc46 100644 --- a/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/tool_streaming.yaml +++ b/providertests/testdata/TestOpenAICompatibleCommon/groq-kimi-k2/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.groq.com/openai/v1/chat/completions method: POST response: @@ -24,13 +24,35 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-6059e0d5-a7a8-4b9b-9d23-8b44a9175a59","object":"chat.completion.chunk","created":1762854974,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"role":"assistant","content":null},"logprobs":null,"finish_reason":null}],"x_groq":{"id":"req_01k9s5gd20ehs83d8fkh52fr85"}} + data: {"id":"chatcmpl-00a93bf0-be50-4f2a-a2fa-7729472d1b2d","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}],"x_groq":{"id":"req_01kkht59h3fzxvfpdjga0sbx0n","seed":1075582771}} - data: {"id":"chatcmpl-6059e0d5-a7a8-4b9b-9d23-8b44a9175a59","object":"chat.completion.chunk","created":1762854974,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"tool_calls":[{"id":"functions.weather:0","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"},"index":0}]},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-00a93bf0-be50-4f2a-a2fa-7729472d1b2d","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":"I'll"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-6059e0d5-a7a8-4b9b-9d23-8b44a9175a59","object":"chat.completion.chunk","created":1762854974,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}],"x_groq":{"id":"req_01k9s5gd20ehs83d8fkh52fr85","usage":{"queue_time":0.162791944,"prompt_tokens":93,"prompt_time":0.014461869,"completion_tokens":21,"completion_time":0.067222006,"total_tokens":114,"total_time":0.081683875}},"usage":{"queue_time":0.162791944,"prompt_tokens":93,"prompt_time":0.014461869,"completion_tokens":21,"completion_time":0.067222006,"total_tokens":114,"total_time":0.081683875}} + data: {"id":"chatcmpl-00a93bf0-be50-4f2a-a2fa-7729472d1b2d","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" check"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-6059e0d5-a7a8-4b9b-9d23-8b44a9175a59","object":"chat.completion.chunk","created":1762854974,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[],"usage":{"queue_time":0.162791944,"prompt_tokens":93,"prompt_time":0.014461869,"completion_tokens":21,"completion_time":0.067222006,"total_tokens":114,"total_time":0.081683875},"service_tier":"on_demand"} + data: {"id":"chatcmpl-00a93bf0-be50-4f2a-a2fa-7729472d1b2d","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-00a93bf0-be50-4f2a-a2fa-7729472d1b2d","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" weather"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-00a93bf0-be50-4f2a-a2fa-7729472d1b2d","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-00a93bf0-be50-4f2a-a2fa-7729472d1b2d","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" Florence"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-00a93bf0-be50-4f2a-a2fa-7729472d1b2d","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-00a93bf0-be50-4f2a-a2fa-7729472d1b2d","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" Italy"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-00a93bf0-be50-4f2a-a2fa-7729472d1b2d","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" for"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-00a93bf0-be50-4f2a-a2fa-7729472d1b2d","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" you"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-00a93bf0-be50-4f2a-a2fa-7729472d1b2d","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-00a93bf0-be50-4f2a-a2fa-7729472d1b2d","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"tool_calls":[{"id":"functions.weather:0","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"},"index":0}]},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-00a93bf0-be50-4f2a-a2fa-7729472d1b2d","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}],"x_groq":{"id":"req_01kkht59h3fzxvfpdjga0sbx0n","usage":{"queue_time":0.201239972,"prompt_tokens":93,"prompt_time":0.027081356,"completion_tokens":32,"completion_time":0.103231659,"total_tokens":125,"total_time":0.130313015}},"usage":{"queue_time":0.201239972,"prompt_tokens":93,"prompt_time":0.027081356,"completion_tokens":32,"completion_time":0.103231659,"total_tokens":125,"total_time":0.130313015}} + + data: {"id":"chatcmpl-00a93bf0-be50-4f2a-a2fa-7729472d1b2d","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[],"usage":{"queue_time":0.201239972,"prompt_tokens":93,"prompt_time":0.027081356,"completion_tokens":32,"completion_time":0.103231659,"total_tokens":125,"total_time":0.130313015},"service_tier":"on_demand"} data: [DONE] @@ -39,22 +61,22 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 289.580708ms + duration: 303.752583ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 759 + content_length: 822 host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"functions.weather:0","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"functions.weather:0","role":"tool"}],"model":"moonshotai/kimi-k2-instruct-0905","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"I''ll check the weather in Florence, Italy for you.","tool_calls":[{"id":"functions.weather:0","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"functions.weather:0","role":"tool"}],"model":"moonshotai/kimi-k2-instruct-0905","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.groq.com/openai/v1/chat/completions method: POST response: @@ -63,43 +85,35 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-e14af5f2-dcb6-4bfb-9fce-dbe848e76368","object":"chat.completion.chunk","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}],"x_groq":{"id":"req_01k9s5gdbweht9vbmhq6m82xx5"}} - - data: {"id":"chatcmpl-e14af5f2-dcb6-4bfb-9fce-dbe848e76368","object":"chat.completion.chunk","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":"Fl"},"logprobs":null,"finish_reason":null}]} - - data: {"id":"chatcmpl-e14af5f2-dcb6-4bfb-9fce-dbe848e76368","object":"chat.completion.chunk","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":"ore"},"logprobs":null,"finish_reason":null}]} - - data: {"id":"chatcmpl-e14af5f2-dcb6-4bfb-9fce-dbe848e76368","object":"chat.completion.chunk","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":"nce"},"logprobs":null,"finish_reason":null}]} - - data: {"id":"chatcmpl-e14af5f2-dcb6-4bfb-9fce-dbe848e76368","object":"chat.completion.chunk","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-16c6b96d-f54d-4ee0-9482-f142a0135f2f","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}],"x_groq":{"id":"req_01kkht59x3fqdtq2hty943195k","seed":42022667}} - data: {"id":"chatcmpl-e14af5f2-dcb6-4bfb-9fce-dbe848e76368","object":"chat.completion.chunk","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" Italy"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-16c6b96d-f54d-4ee0-9482-f142a0135f2f","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-e14af5f2-dcb6-4bfb-9fce-dbe848e76368","object":"chat.completion.chunk","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-16c6b96d-f54d-4ee0-9482-f142a0135f2f","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":" current"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-e14af5f2-dcb6-4bfb-9fce-dbe848e76368","object":"chat.completion.chunk","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" currently"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-16c6b96d-f54d-4ee0-9482-f142a0135f2f","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":" temperature"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-e14af5f2-dcb6-4bfb-9fce-dbe848e76368","object":"chat.completion.chunk","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" experiencing"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-16c6b96d-f54d-4ee0-9482-f142a0135f2f","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-e14af5f2-dcb6-4bfb-9fce-dbe848e76368","object":"chat.completion.chunk","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" very"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-16c6b96d-f54d-4ee0-9482-f142a0135f2f","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":" Florence"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-e14af5f2-dcb6-4bfb-9fce-dbe848e76368","object":"chat.completion.chunk","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" hot"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-16c6b96d-f54d-4ee0-9482-f142a0135f2f","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-e14af5f2-dcb6-4bfb-9fce-dbe848e76368","object":"chat.completion.chunk","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" weather"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-16c6b96d-f54d-4ee0-9482-f142a0135f2f","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":" Italy"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-e14af5f2-dcb6-4bfb-9fce-dbe848e76368","object":"chat.completion.chunk","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" at"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-16c6b96d-f54d-4ee0-9482-f142a0135f2f","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-e14af5f2-dcb6-4bfb-9fce-dbe848e76368","object":"chat.completion.chunk","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-16c6b96d-f54d-4ee0-9482-f142a0135f2f","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-e14af5f2-dcb6-4bfb-9fce-dbe848e76368","object":"chat.completion.chunk","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":"40"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-16c6b96d-f54d-4ee0-9482-f142a0135f2f","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":"40"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-e14af5f2-dcb6-4bfb-9fce-dbe848e76368","object":"chat.completion.chunk","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":"°C"},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-16c6b96d-f54d-4ee0-9482-f142a0135f2f","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":"°C"},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-e14af5f2-dcb6-4bfb-9fce-dbe848e76368","object":"chat.completion.chunk","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + data: {"id":"chatcmpl-16c6b96d-f54d-4ee0-9482-f142a0135f2f","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} - data: {"id":"chatcmpl-e14af5f2-dcb6-4bfb-9fce-dbe848e76368","object":"chat.completion.chunk","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"x_groq":{"id":"req_01k9s5gdbweht9vbmhq6m82xx5","usage":{"queue_time":0.162467912,"prompt_tokens":132,"prompt_time":0.020355587,"completion_tokens":17,"completion_time":0.063136224,"total_tokens":149,"total_time":0.083491811}},"usage":{"queue_time":0.162467912,"prompt_tokens":132,"prompt_time":0.020355587,"completion_tokens":17,"completion_time":0.063136224,"total_tokens":149,"total_time":0.083491811}} + data: {"id":"chatcmpl-16c6b96d-f54d-4ee0-9482-f142a0135f2f","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"x_groq":{"id":"req_01kkht59x3fqdtq2hty943195k","usage":{"queue_time":0.193318292,"prompt_tokens":143,"prompt_time":0.018093669,"completion_tokens":13,"completion_time":0.034117554,"total_tokens":156,"total_time":0.052211223}},"usage":{"queue_time":0.193318292,"prompt_tokens":143,"prompt_time":0.018093669,"completion_tokens":13,"completion_time":0.034117554,"total_tokens":156,"total_time":0.052211223}} - data: {"id":"chatcmpl-e14af5f2-dcb6-4bfb-9fce-dbe848e76368","object":"chat.completion.chunk","created":1762854975,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[],"usage":{"queue_time":0.162467912,"prompt_tokens":132,"prompt_time":0.020355587,"completion_tokens":17,"completion_time":0.063136224,"total_tokens":149,"total_time":0.083491811},"service_tier":"on_demand"} + data: {"id":"chatcmpl-16c6b96d-f54d-4ee0-9482-f142a0135f2f","object":"chat.completion.chunk","created":1773345613,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[],"usage":{"queue_time":0.193318292,"prompt_tokens":143,"prompt_time":0.018093669,"completion_tokens":13,"completion_time":0.034117554,"total_tokens":156,"total_time":0.052211223},"service_tier":"on_demand"} data: [DONE] @@ -108,4 +122,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 251.184375ms + duration: 258.860375ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/huggingface-kimi-k2/multi_tool.yaml b/providertests/testdata/TestOpenAICompatibleCommon/huggingface-kimi-k2/multi_tool.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b569e328a6caf97fb249be4c7ea45ac9f70ba242 --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/huggingface-kimi-k2/multi_tool.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 842 + 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":"moonshotai/Kimi-K2-Instruct-0905:groq","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: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://router.huggingface.co/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: | + {"id":"chatcmpl-a1862f62-6066-4ac1-88e3-a97272337803","object":"chat.completion","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","choices":[{"index":0,"message":{"role":"assistant","content":"I will perform both addition and multiplication on the numbers 2 and 3.","tool_calls":[{"id":"functions.add:0","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}},{"id":"functions.multiply:1","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}]},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"queue_time":0.071642918,"prompt_tokens":205,"prompt_time":0.024722865,"completion_tokens":57,"completion_time":0.157808154,"total_tokens":262,"total_time":0.182531019},"usage_breakdown":null,"system_fingerprint":"fp_241bc7119c","x_groq":{"id":"req_01kkhvr0gve36tx885a3mzgs49","seed":96327555},"service_tier":"on_demand"} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 457.16075ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1305 + 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 will perform both addition and multiplication on the numbers 2 and 3.","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply:1","role":"tool"}],"model":"moonshotai/Kimi-K2-Instruct-0905:groq","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: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://router.huggingface.co/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: | + {"id":"chatcmpl-3026f7a6-c406-4e4d-b016-bfd925782af0","object":"chat.completion","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","choices":[{"index":0,"message":{"role":"assistant","content":"The results are:\n- Addition: 2 + 3 = 5\n- Multiplication: 2 × 3 = 6"},"logprobs":null,"finish_reason":"stop"}],"usage":{"queue_time":0.065363187,"prompt_tokens":299,"prompt_time":0.029569493,"completion_tokens":29,"completion_time":0.062942563,"total_tokens":328,"total_time":0.092512056},"usage_breakdown":null,"system_fingerprint":"fp_00c37775b7","x_groq":{"id":"req_01kkhvr0z2eyhv5ns0rs648e58","seed":756091581},"service_tier":"on_demand"} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 455.612041ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/huggingface-kimi-k2/multi_tool_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/huggingface-kimi-k2/multi_tool_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b196b16b30ef08a27c0d64b309d389501fbf1c70 --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/huggingface-kimi-k2/multi_tool_streaming.yaml @@ -0,0 +1,165 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 879 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"}],"model":"moonshotai/Kimi-K2-Instruct-0905:groq","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: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://router.huggingface.co/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"chatcmpl-edcdda85-c2ec-4f70-9142-7b04f06c47aa","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}],"x_groq":{"id":"req_01kkhvr1djf7as7hxyta3y5d9q","seed":118898684}} + + data: {"id":"chatcmpl-edcdda85-c2ec-4f70-9142-7b04f06c47aa","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":"I'll"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-edcdda85-c2ec-4f70-9142-7b04f06c47aa","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" add"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-edcdda85-c2ec-4f70-9142-7b04f06c47aa","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-edcdda85-c2ec-4f70-9142-7b04f06c47aa","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" multiply"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-edcdda85-c2ec-4f70-9142-7b04f06c47aa","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-edcdda85-c2ec-4f70-9142-7b04f06c47aa","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" numbers"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-edcdda85-c2ec-4f70-9142-7b04f06c47aa","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-edcdda85-c2ec-4f70-9142-7b04f06c47aa","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":"2"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-edcdda85-c2ec-4f70-9142-7b04f06c47aa","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-edcdda85-c2ec-4f70-9142-7b04f06c47aa","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-edcdda85-c2ec-4f70-9142-7b04f06c47aa","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-edcdda85-c2ec-4f70-9142-7b04f06c47aa","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" for"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-edcdda85-c2ec-4f70-9142-7b04f06c47aa","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" you"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-edcdda85-c2ec-4f70-9142-7b04f06c47aa","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-edcdda85-c2ec-4f70-9142-7b04f06c47aa","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"tool_calls":[{"id":"functions.add:0","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"},"index":0}]},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-edcdda85-c2ec-4f70-9142-7b04f06c47aa","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"tool_calls":[{"id":"functions.multiply:1","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"},"index":1}]},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-edcdda85-c2ec-4f70-9142-7b04f06c47aa","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}],"x_groq":{"id":"req_01kkhvr1djf7as7hxyta3y5d9q","usage":{"queue_time":0.070000497,"prompt_tokens":201,"prompt_time":0.024993654,"completion_tokens":55,"completion_time":0.166981283,"total_tokens":256,"total_time":0.191974937}},"usage":{"queue_time":0.070000497,"prompt_tokens":201,"prompt_time":0.024993654,"completion_tokens":55,"completion_time":0.166981283,"total_tokens":256,"total_time":0.191974937}} + + data: {"id":"chatcmpl-edcdda85-c2ec-4f70-9142-7b04f06c47aa","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[],"usage":{"queue_time":0.070000497,"prompt_tokens":201,"prompt_time":0.024993654,"completion_tokens":55,"completion_time":0.166981283,"total_tokens":256,"total_time":0.191974937},"service_tier":"on_demand"} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 299.20475ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1321 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"content":"I''ll add and multiply the numbers 2 and 3 for you.","tool_calls":[{"id":"functions.add:0","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"functions.multiply:1","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"functions.add:0","role":"tool"},{"content":"6","tool_call_id":"functions.multiply:1","role":"tool"}],"model":"moonshotai/Kimi-K2-Instruct-0905:groq","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: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://router.huggingface.co/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}],"x_groq":{"id":"req_01kkhvr1y4f7c94xjnck5nxy62","seed":103431212}} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" results"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" are"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":":\n"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"-"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" Addition"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"2"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" +"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" ="},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"5"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"\n"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"-"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" Multi"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"plication"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"2"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" ×"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" ="},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"content":"6"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"x_groq":{"id":"req_01kkhvr1y4f7c94xjnck5nxy62","usage":{"queue_time":0.071348434,"prompt_tokens":293,"prompt_time":0.029318208,"completion_tokens":29,"completion_time":0.063189501,"total_tokens":322,"total_time":0.092507709}},"usage":{"queue_time":0.071348434,"prompt_tokens":293,"prompt_time":0.029318208,"completion_tokens":29,"completion_time":0.063189501,"total_tokens":322,"total_time":0.092507709}} + + data: {"id":"chatcmpl-911a867c-33bc-47fe-89cd-7a41c5b30b9b","object":"chat.completion.chunk","created":1773347276,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[],"usage":{"queue_time":0.071348434,"prompt_tokens":293,"prompt_time":0.029318208,"completion_tokens":29,"completion_time":0.063189501,"total_tokens":322,"total_time":0.092507709},"service_tier":"on_demand"} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 409.563166ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/huggingface-kimi-k2/simple.yaml b/providertests/testdata/TestOpenAICompatibleCommon/huggingface-kimi-k2/simple.yaml new file mode 100644 index 0000000000000000000000000000000000000000..2ff934e57ae5364a0aa4ac90b2268a00b4e9323b --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/huggingface-kimi-k2/simple.yaml @@ -0,0 +1,33 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 187 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"moonshotai/Kimi-K2-Instruct-0905:groq","max_tokens":4000}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://router.huggingface.co/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: | + {"id":"chatcmpl-762a80b4-d2e8-4e8d-9455-70e3547eba4f","object":"chat.completion","created":1773347273,"model":"moonshotai/kimi-k2-instruct-0905","choices":[{"index":0,"message":{"role":"assistant","content":"Olá!"},"logprobs":null,"finish_reason":"stop"}],"usage":{"queue_time":0.071599452,"prompt_tokens":20,"prompt_time":0.009078911,"completion_tokens":4,"completion_time":0.008794388,"total_tokens":24,"total_time":0.017873299},"usage_breakdown":null,"system_fingerprint":"fp_05df423bab","x_groq":{"id":"req_01kkhvqyg0fn3va1exm5xxrgfp","seed":580470571},"service_tier":"on_demand"} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 454.517791ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/huggingface-kimi-k2/simple_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/huggingface-kimi-k2/simple_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..9e4ef690841487bb217786379f72a291101b35d7 --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/huggingface-kimi-k2/simple_streaming.yaml @@ -0,0 +1,46 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 241 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"moonshotai/Kimi-K2-Instruct-0905:groq","max_tokens":4000,"stream_options":{"include_usage":true},"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://router.huggingface.co/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"chatcmpl-571992ac-2240-422e-ae6d-4df9328a902f","object":"chat.completion.chunk","created":1773347273,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}],"x_groq":{"id":"req_01kkhvqytef9tv8a2e4j8jrfsy","seed":1394299605}} + + data: {"id":"chatcmpl-571992ac-2240-422e-ae6d-4df9328a902f","object":"chat.completion.chunk","created":1773347273,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":"Ol"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-571992ac-2240-422e-ae6d-4df9328a902f","object":"chat.completion.chunk","created":1773347273,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":"á"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-571992ac-2240-422e-ae6d-4df9328a902f","object":"chat.completion.chunk","created":1773347273,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":"!"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-571992ac-2240-422e-ae6d-4df9328a902f","object":"chat.completion.chunk","created":1773347273,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"x_groq":{"id":"req_01kkhvqytef9tv8a2e4j8jrfsy","usage":{"queue_time":0.071626339,"prompt_tokens":20,"prompt_time":0.012551381,"completion_tokens":4,"completion_time":0.009086271,"total_tokens":24,"total_time":0.021637652}},"usage":{"queue_time":0.071626339,"prompt_tokens":20,"prompt_time":0.012551381,"completion_tokens":4,"completion_time":0.009086271,"total_tokens":24,"total_time":0.021637652}} + + data: {"id":"chatcmpl-571992ac-2240-422e-ae6d-4df9328a902f","object":"chat.completion.chunk","created":1773347273,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[],"usage":{"queue_time":0.071626339,"prompt_tokens":20,"prompt_time":0.012551381,"completion_tokens":4,"completion_time":0.009086271,"total_tokens":24,"total_time":0.021637652},"service_tier":"on_demand"} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 318.281083ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/huggingface-kimi-k2/tool.yaml b/providertests/testdata/TestOpenAICompatibleCommon/huggingface-kimi-k2/tool.yaml new file mode 100644 index 0000000000000000000000000000000000000000..33aca31a33908ebe508dc61e937277d0fae7bb7f --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/huggingface-kimi-k2/tool.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 479 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"moonshotai/Kimi-K2-Instruct-0905:groq","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: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://router.huggingface.co/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: | + {"id":"chatcmpl-ef313da5-2ff8-414d-9aed-0a94fc53e3f7","object":"chat.completion","created":1773347274,"model":"moonshotai/kimi-k2-instruct-0905","choices":[{"index":0,"message":{"role":"assistant","tool_calls":[{"id":"functions.weather:0","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"}}]},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"queue_time":0.065433504,"prompt_tokens":93,"prompt_time":0.041686801,"completion_tokens":21,"completion_time":0.060912659,"total_tokens":114,"total_time":0.10259946},"usage_breakdown":null,"system_fingerprint":"fp_241bc7119c","x_groq":{"id":"req_01kkhvqz45ey8rhqtrqyf6c680","seed":791288437},"service_tier":"on_demand"} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 390.445292ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 711 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"functions.weather:0","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"functions.weather:0","role":"tool"}],"model":"moonshotai/Kimi-K2-Instruct-0905:groq","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: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://router.huggingface.co/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: | + {"id":"chatcmpl-edbab22b-e60b-479c-98cc-dcca330826cc","object":"chat.completion","created":1773347274,"model":"moonshotai/kimi-k2-instruct-0905","choices":[{"index":0,"message":{"role":"assistant","content":"The weather in Florence, Italy is currently 40°C."},"logprobs":null,"finish_reason":"stop"}],"usage":{"queue_time":0.066086028,"prompt_tokens":132,"prompt_time":0.016352698,"completion_tokens":13,"completion_time":0.023336147,"total_tokens":145,"total_time":0.039688845},"usage_breakdown":null,"system_fingerprint":"fp_00c37775b7","x_groq":{"id":"req_01kkhvqzfwe76trxv7rrjhvane","seed":2089780372},"service_tier":"on_demand"} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 327.523833ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/huggingface-kimi-k2/tool_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/huggingface-kimi-k2/tool_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..87c510d2a081c006c0e34df8bc8d2b3f8afeb1c5 --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/huggingface-kimi-k2/tool_streaming.yaml @@ -0,0 +1,109 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 533 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"moonshotai/Kimi-K2-Instruct-0905:groq","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: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://router.huggingface.co/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"chatcmpl-dc722949-2c46-4d4b-b794-093c0ac92ec6","object":"chat.completion.chunk","created":1773347274,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"role":"assistant","content":null},"logprobs":null,"finish_reason":null}],"x_groq":{"id":"req_01kkhvqzthf77v5hnbmntxx7t5","seed":1841653034}} + + data: {"id":"chatcmpl-dc722949-2c46-4d4b-b794-093c0ac92ec6","object":"chat.completion.chunk","created":1773347274,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{"tool_calls":[{"id":"functions.weather:0","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"},"index":0}]},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-dc722949-2c46-4d4b-b794-093c0ac92ec6","object":"chat.completion.chunk","created":1773347274,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}],"x_groq":{"id":"req_01kkhvqzthf77v5hnbmntxx7t5","usage":{"queue_time":0.072077716,"prompt_tokens":93,"prompt_time":0.024482456,"completion_tokens":21,"completion_time":0.04188989,"total_tokens":114,"total_time":0.066372346}},"usage":{"queue_time":0.072077716,"prompt_tokens":93,"prompt_time":0.024482456,"completion_tokens":21,"completion_time":0.04188989,"total_tokens":114,"total_time":0.066372346}} + + data: {"id":"chatcmpl-dc722949-2c46-4d4b-b794-093c0ac92ec6","object":"chat.completion.chunk","created":1773347274,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_241bc7119c","choices":[],"usage":{"queue_time":0.072077716,"prompt_tokens":93,"prompt_time":0.024482456,"completion_tokens":21,"completion_time":0.04188989,"total_tokens":114,"total_time":0.066372346},"service_tier":"on_demand"} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 348.881541ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 764 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"functions.weather:0","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"functions.weather:0","role":"tool"}],"model":"moonshotai/Kimi-K2-Instruct-0905:groq","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: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + url: https://router.huggingface.co/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"chatcmpl-4c1bad0c-632f-4d80-b546-0a80412b8277","object":"chat.completion.chunk","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"role":"assistant","content":""},"logprobs":null,"finish_reason":null}],"x_groq":{"id":"req_01kkhvr05meycts9cwfnx6wcyt","seed":1854762339}} + + data: {"id":"chatcmpl-4c1bad0c-632f-4d80-b546-0a80412b8277","object":"chat.completion.chunk","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":"Right"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-4c1bad0c-632f-4d80-b546-0a80412b8277","object":"chat.completion.chunk","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":" now"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-4c1bad0c-632f-4d80-b546-0a80412b8277","object":"chat.completion.chunk","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":" it"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-4c1bad0c-632f-4d80-b546-0a80412b8277","object":"chat.completion.chunk","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":"’s"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-4c1bad0c-632f-4d80-b546-0a80412b8277","object":"chat.completion.chunk","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":" a"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-4c1bad0c-632f-4d80-b546-0a80412b8277","object":"chat.completion.chunk","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":" hot"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-4c1bad0c-632f-4d80-b546-0a80412b8277","object":"chat.completion.chunk","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-4c1bad0c-632f-4d80-b546-0a80412b8277","object":"chat.completion.chunk","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":"40"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-4c1bad0c-632f-4d80-b546-0a80412b8277","object":"chat.completion.chunk","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":" °"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-4c1bad0c-632f-4d80-b546-0a80412b8277","object":"chat.completion.chunk","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":"C"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-4c1bad0c-632f-4d80-b546-0a80412b8277","object":"chat.completion.chunk","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-4c1bad0c-632f-4d80-b546-0a80412b8277","object":"chat.completion.chunk","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":" Florence"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-4c1bad0c-632f-4d80-b546-0a80412b8277","object":"chat.completion.chunk","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-4c1bad0c-632f-4d80-b546-0a80412b8277","object":"chat.completion.chunk","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":" Italy"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-4c1bad0c-632f-4d80-b546-0a80412b8277","object":"chat.completion.chunk","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-4c1bad0c-632f-4d80-b546-0a80412b8277","object":"chat.completion.chunk","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"x_groq":{"id":"req_01kkhvr05meycts9cwfnx6wcyt","usage":{"queue_time":0.0656932,"prompt_tokens":132,"prompt_time":0.019550779,"completion_tokens":16,"completion_time":0.051223756,"total_tokens":148,"total_time":0.070774535}},"usage":{"queue_time":0.0656932,"prompt_tokens":132,"prompt_time":0.019550779,"completion_tokens":16,"completion_time":0.051223756,"total_tokens":148,"total_time":0.070774535}} + + data: {"id":"chatcmpl-4c1bad0c-632f-4d80-b546-0a80412b8277","object":"chat.completion.chunk","created":1773347275,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_00c37775b7","choices":[],"usage":{"queue_time":0.0656932,"prompt_tokens":132,"prompt_time":0.019550779,"completion_tokens":16,"completion_time":0.051223756,"total_tokens":148,"total_time":0.070774535},"service_tier":"on_demand"} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 304.518292ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/huggingface-qwen3-coder/multi_tool.yaml b/providertests/testdata/TestOpenAICompatibleCommon/huggingface-qwen3-coder/multi_tool.yaml deleted file mode 100644 index 75d4faff6b38acff56e73efcd3535af229ce5771..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestOpenAICompatibleCommon/huggingface-qwen3-coder/multi_tool.yaml +++ /dev/null @@ -1,61 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 829 - 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":"zai-org/GLM-4.6:cerebras","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.7.1 - url: https://router.huggingface.co/v1/chat/completions - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: '{"id":"chatcmpl-7189d22c-3447-47bd-99e5-5e5b509d6373","choices":[{"finish_reason":"tool_calls","index":0,"message":{"content":"\nI''ll add and multiply the numbers 2 and 3 for you.\n","reasoning":"The user wants me to add and multiply the numbers 2 and 3. Looking at the available functions, I have:\n1. add function - to add two numbers\n2. multiply function - to multiply two numbers\n\nI need to call both functions as instructed. Let me call both functions with a=2 and b=3.","tool_calls":[{"id":"4f736900e","type":"function","function":{"name":"add","arguments":"{\"a\": 2, \"b\": 3}"}},{"id":"c69319726","type":"function","function":{"name":"multiply","arguments":"{\"a\": 2, \"b\": 3}"}}],"role":"assistant"}}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion","usage":{"total_tokens":430,"completion_tokens":128,"prompt_tokens":302},"time_info":{"queue_time":0.003482136,"prompt_time":0.007521096,"completion_time":0.148015855,"total_time":0.16007018089294434,"created":1762855260.7792244}}' - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: 523.183584ms -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 1247 - 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":"\nI''ll add and multiply the numbers 2 and 3 for you.\n","tool_calls":[{"id":"4f736900e","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"c69319726","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"4f736900e","role":"tool"},{"content":"6","tool_call_id":"c69319726","role":"tool"}],"model":"zai-org/GLM-4.6:cerebras","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.7.1 - url: https://router.huggingface.co/v1/chat/completions - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: '{"id":"chatcmpl-79f11d7a-dc2b-4e3e-9051-d44712aa2780","choices":[{"finish_reason":"stop","index":0,"message":{"content":"\nThe results are:\n- Addition: 2 + 3 = 5\n- Multiplication: 2 × 3 = 6","role":"assistant"}}],"created":1762855280,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion","usage":{"total_tokens":408,"completion_tokens":32,"prompt_tokens":376},"time_info":{"queue_time":0.003082643,"prompt_time":0.008120705,"completion_time":0.030221978,"total_time":0.043164968490600586,"created":1762855280.5628223}}' - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: 19.670645958s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/huggingface-qwen3-coder/multi_tool_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/huggingface-qwen3-coder/multi_tool_streaming.yaml deleted file mode 100644 index 85ec42ba0c3202c0c5ffc18b56b896b8d03197c5..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestOpenAICompatibleCommon/huggingface-qwen3-coder/multi_tool_streaming.yaml +++ /dev/null @@ -1,103 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 866 - host: "" - body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"}],"model":"zai-org/GLM-4.6:cerebras","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.7.1 - url: https://router.huggingface.co/v1/chat/completions - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: |+ - data: {"id":"chatcmpl-9a97fd4d-1e78-462a-920f-fca9d74b2f42","choices":[{"delta":{"content":"","role":"assistant"},"index":0}],"created":1762855283,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-9a97fd4d-1e78-462a-920f-fca9d74b2f42","choices":[{"delta":{"reasoning":""},"index":0}],"created":1762855283,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-9a97fd4d-1e78-462a-920f-fca9d74b2f42","choices":[{"delta":{"reasoning":""},"index":0}],"created":1762855283,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-9a97fd4d-1e78-462a-920f-fca9d74b2f42","choices":[{"delta":{"content":"\nI"},"index":0}],"created":1762855283,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-9a97fd4d-1e78-462a-920f-fca9d74b2f42","choices":[{"delta":{"content":"'ll add"},"index":0}],"created":1762855283,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-9a97fd4d-1e78-462a-920f-fca9d74b2f42","choices":[{"delta":{"content":" and"},"index":0}],"created":1762855283,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-9a97fd4d-1e78-462a-920f-fca9d74b2f42","choices":[{"delta":{"content":" multiply"},"index":0}],"created":1762855283,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-9a97fd4d-1e78-462a-920f-fca9d74b2f42","choices":[{"delta":{"content":" the numbers 2"},"index":0}],"created":1762855283,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-9a97fd4d-1e78-462a-920f-fca9d74b2f42","choices":[{"delta":{"content":" and 3 for you"},"index":0}],"created":1762855283,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-9a97fd4d-1e78-462a-920f-fca9d74b2f42","choices":[{"delta":{"content":".\n"},"index":0}],"created":1762855283,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-9a97fd4d-1e78-462a-920f-fca9d74b2f42","choices":[{"delta":{"tool_calls":[{"function":{"name":"add","arguments":"{\"a\": 2, \"b\": 3}"},"type":"function","id":"5ffda67d4","index":0},{"function":{"name":"multiply","arguments":"{\"a\": 2, \"b\": 3}"},"type":"function","id":"64c2d22d0","index":1}]},"index":0}],"created":1762855283,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-9a97fd4d-1e78-462a-920f-fca9d74b2f42","choices":[{"delta":{},"finish_reason":"tool_calls","index":0}],"created":1762855283,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk","usage":{"total_tokens":358,"completion_tokens":60,"prompt_tokens":298},"time_info":{"queue_time":0.00408092,"prompt_time":0.006777905,"completion_time":0.048781309,"total_time":0.062016963958740234,"created":1762855283.6442046}} - - headers: - Content-Type: - - text/event-stream; charset=utf-8 - status: 200 OK - code: 200 - duration: 363.296791ms -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 1284 - host: "" - body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"content":"\nI''ll add and multiply the numbers 2 and 3 for you.\n","tool_calls":[{"id":"5ffda67d4","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"64c2d22d0","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"5ffda67d4","role":"tool"},{"content":"6","tool_call_id":"64c2d22d0","role":"tool"}],"model":"zai-org/GLM-4.6:cerebras","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.7.1 - url: https://router.huggingface.co/v1/chat/completions - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: |+ - data: {"id":"chatcmpl-cb515f18-8a70-4aef-88ee-347cc2af9f6d","choices":[{"delta":{"content":"","role":"assistant"},"index":0}],"created":1762855284,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cb515f18-8a70-4aef-88ee-347cc2af9f6d","choices":[{"delta":{"reasoning":""},"index":0}],"created":1762855284,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cb515f18-8a70-4aef-88ee-347cc2af9f6d","choices":[{"delta":{"reasoning":""},"index":0}],"created":1762855284,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cb515f18-8a70-4aef-88ee-347cc2af9f6d","choices":[{"delta":{"content":"\nFor the numbers 2"},"index":0}],"created":1762855284,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cb515f18-8a70-4aef-88ee-347cc2af9f6d","choices":[{"delta":{"content":" and 3:\n\n-"},"index":0}],"created":1762855284,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cb515f18-8a70-4aef-88ee-347cc2af9f6d","choices":[{"delta":{"content":" Addition:"},"index":0}],"created":1762855284,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cb515f18-8a70-4aef-88ee-347cc2af9f6d","choices":[{"delta":{"content":" 2 + 3 = 5\n- Multip"},"index":0}],"created":1762855284,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cb515f18-8a70-4aef-88ee-347cc2af9f6d","choices":[{"delta":{"content":"lication: 2 × 3 = 6"},"index":0}],"created":1762855284,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cb515f18-8a70-4aef-88ee-347cc2af9f6d","choices":[{"delta":{},"finish_reason":"stop","index":0}],"created":1762855284,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk","usage":{"total_tokens":409,"completion_tokens":37,"prompt_tokens":372},"time_info":{"queue_time":0.003343426,"prompt_time":0.008747444,"completion_time":0.023277878,"total_time":0.037343502044677734,"created":1762855284.1050324}} - - headers: - Content-Type: - - text/event-stream; charset=utf-8 - status: 200 OK - code: 200 - duration: 377.104625ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/huggingface-qwen3-coder/simple.yaml b/providertests/testdata/TestOpenAICompatibleCommon/huggingface-qwen3-coder/simple.yaml deleted file mode 100644 index feb786ac002e8e07c086c3144d3b420c94fab5c9..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestOpenAICompatibleCommon/huggingface-qwen3-coder/simple.yaml +++ /dev/null @@ -1,32 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 174 - host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"zai-org/GLM-4.6:cerebras","max_tokens":4000}' - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - OpenAI/Go 2.7.1 - url: https://router.huggingface.co/v1/chat/completions - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: '{"id":"chatcmpl-046a135e-e42b-4078-8359-9d5e76358644","choices":[{"finish_reason":"stop","index":0,"message":{"content":"\nOlá!\n\nHere are the most common ways to say hello in Portuguese, depending on the situation:\n\n### The Most Common \"Hi\"\n\n* **Oi!** (Oh-ee)\n This is the most direct translation of \"hi.\" It''s very common and informal, used with friends and family, especially in **Brazil**. It''s understood in **Portugal** but less common than \"Olá.\"\n\n### The All-Purpose \"Hello\"\n\n* **Olá!** (Oh-LAH)\n This is the most versatile greeting. It can be used in both formal and informal situations, anytime of day, and is common in both **Brazil and Portugal**. If you''re unsure which one to use, \"Olá\" is always a safe choice.\n\n### Greetings by Time of Day\n\nJust like in English, you can greet people based on the time of day. These are used in all Portuguese-speaking countries.\n\n* **Bom dia** (bong DEE-ah) — Good morning\n* **Boa tarde** (boh-AH tardjee) — Good afternoon\n* **Boa noite** (boh-AH noytchee) — Good evening / Good night\n * Note: You use **Boa noite** to greet someone in the evening and also to say goodnight when leaving or going to bed.\n\n### A Quick Summary\n\n| English | Portuguese | Formality | Best for... |\n|:-------------- |:---------------------|:------------------------|:------------------------------------------|\n| Hi | **Oi!** | Informal | Friends, family, casual situations (BR) |\n| Hello | **Olá!** | Formal / Informal | Any situation, anywhere. The safest bet. |\n| Good morning | **Bom dia** | Formal / Informal | Before noon. |\n| Good afternoon | **Boa tarde** | Formal / Informal | From noon until the evening. |\n| Good evening | **Boa noite** | Formal / Informal | In the evening and to say goodnight. |\n\nWant to follow up \"hi\" with \"how are you?\" The most common way is:\n\n* **Tudo bem?** (Too-doh beng?) — Literally \"Everything well?\" but used as \"How are you?\"","reasoning":"\n1. **Analyze the User''s Request:** The user wants to know how to say \"hi\" in Portuguese. This is a very direct, simple translation request.\n\n2. **Identify the Core Task:** Translate the English word \"hi\" into its Portuguese equivalent(s).\n\n3. **Initial Brainstorming & Keyword Association:**\n * Portuguese.\n * Greeting.\n * \"Hi\".\n * \"Hello\".\n * Informal. Formal.\n * Good morning. Good afternoon. Good evening.\n * What are the variations?\n * In what contexts are they used?\n * Brazil vs. Portugal. Are there differences? (This is a key point for any Romance language).\n\n4. **Structure the Answer:** I want to provide more than just a single word. A good answer will be helpful, clear, and provide context. A good structure would be:\n * Start with the most direct and common answer.\n * Provide alternatives (formal/informal, different times of day).\n * Explain the differences and when to use each one.\n * Mention the Brazil vs. Portugal distinction, as it''s very important for Portuguese.\n * Add a little \"extra\" – like how to ask \"How are you?\" to make the interaction more natural. This anticipates the user''s next logical question.\n * End with a friendly closing.\n\n5. **Drafting - Section by Section:**\n\n * **Direct Answer (The \"TL;DR\"):** The most common and direct translation of \"hi\" is **\"Oi\"**. I''ll put this first, in bold, to make it stand out immediately.\n\n * **Elaboration on \"Oi\":**\n * Pronunciation: \"oh-ee\". This is crucial for a non-speaker. I should include a simple phonetic guide.\n * Usage: It''s informal, like \"hi\" in English. Used with friends, family, people you know well. It''s very common in Brazil. It''s used in Portugal too, but maybe slightly less than other greetings? (I should double-check this. Yes, it''s understood and used in Portugal, but *Olá* is perhaps more standard/multi-purpose there). I''ll make a note of this.\n\n * **Formal/Basic Greeting:** The equivalent of \"Hello\" is **\"Olá\"**.\n * Pronunciation: \"oh-LAH\". I need to mention the stress on the second syllable.\n * Usage: It''s more versatile than \"Oi\". It can be used in formal and informal situations. It works anytime of day. It''s the safest bet if you''re unsure. It''s extremely common in both Brazil and Portugal.\n\n * **Time-of-Day Greetings:** This is a standard part of Romance languages and very useful for the user.\n * **Bom dia:** \"Good morning.\"\n * **Boa tarde:** \"Good afternoon.\"\n * **Boa noite:** \"Good evening / Good night.\"\n * I should explain that \"Boa noite\" is used both as a greeting in the evening and as a way to say goodbye at night. This is a common point of confusion for English speakers. I''ll explicitly state this.\n * I''ll also add a quick pronunciation guide for each one. This adds a lot of value.\n\n * **Brazil vs. Portugal Nuances:** This is a great \"value-add.\"\n * In **Brazil**: \"Oi\" is super common and informal. \"E aí?\" (Eh-eye?) or \"Beleza?\" are very common informal follow-ups, like \"What''s up?\". I should include this to make the greeting more complete and natural.\n * In **Portugal**: \"Olá\" is the most standard. Informal greetings might include \"Viva\" (a bit more enthusiastic/older-fashioned but still used) or simply \"Está tudo bem?\". I should mention that \"Oi\" is understood but less common than in Brazil. Using \"Olá\" is a safer bet for a tourist.\n\n * **Putting it all together (A summary table/list):** A quick summary helps users scan and find the right option quickly. I''ll create a simple list format:\n\n * **Informal \"Hi\":** Oi (Mostly Brazil, but understood everywhere)\n * **Universal \"Hello\":** Olá (Works in any situation)\n * **By time of day:** Bom dia / Boa tarde / Boa noite\n\n * **Bonus Content:** How to ask \"How are you?\"\n * Common phrase: **Tudo bem?** (Too-doh beng?)\n * Explain it means \"Is everything well?\" or just \"How are you?\".\n * Explain the standard response: **Tudo bem.** (Everything''s well.) or **Tudo bom.** (Everything''s good.) This is a very common exchange and teaching both sides is very helpful.\n\n6. **Review and Refine:** Read through the entire answer.\n * Is it clear? Yes.\n * Is it accurate? Yes.\n * Is it easy to read? The use of bolding, bullet points, and lists helps a lot.\n * Is the tone helpful and friendly? Yes.\n * Did I answer the user''s question directly and also provide useful, related information? Yes. The structure from simple to complex works well. The pronunciation guides are a key feature. The Brazil/Portugal distinction is an important detail. The \"How are you?\" part is a proactive addition.","role":"assistant"}}],"created":1762855217,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion","usage":{"total_tokens":1714,"completion_tokens":1698,"prompt_tokens":16},"time_info":{"queue_time":0.000135781,"prompt_time":0.003248146,"completion_time":2.603353152,"total_time":2.6080667972564697,"created":1762855217.1120505}}' - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: 3.291823958s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/huggingface-qwen3-coder/simple_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/huggingface-qwen3-coder/simple_streaming.yaml deleted file mode 100644 index 917ae0d73739a103f9498ef3828de3f1afb67605..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestOpenAICompatibleCommon/huggingface-qwen3-coder/simple_streaming.yaml +++ /dev/null @@ -1,736 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 228 - host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"zai-org/GLM-4.6:cerebras","max_tokens":4000,"stream_options":{"include_usage":true},"stream":true}' - headers: - Accept: - - application/json - Content-Type: - - application/json - User-Agent: - - OpenAI/Go 2.7.1 - url: https://router.huggingface.co/v1/chat/completions - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: |+ - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"content":"","role":"assistant"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"\n"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"1. **Analyze the User's Request"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":":** The user"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"'s request is"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" very simple and direct"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":": \"Say hi in Portuguese\".\n\n"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"2. "},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" **Identify the"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" Core Task:** The core task is"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" to provide the Portuguese translation"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" of"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" the English word"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" \""},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"hi\".\n\n3. **Initial Knowledge"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" Retrie"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"val:** I"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" access my"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" internal knowledge base for translations"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":".\n"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" "},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" * \"Hi\" is an"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" informal greeting"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":".\n"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" * The most"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" common, direct"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":", and informal translation"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" for"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" \"hi"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"\" in Portuguese is \"Oi\".\n"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" * I should"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" also consider other greetings."},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" What"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" are"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" the nuances"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"?\n\n4"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":". **Brainstorm"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" Portuguese G"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"reetings & Their"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" Context"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"s:"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"**\n * **Oi:**"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" This is"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" the most direct equivalent of"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" \""},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"Hi\"."},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" It's informal,"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" used with"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" friends,"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" family, people you"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" know well"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":". It's universally understood"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" in both"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" Brazil"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" and Portugal. This is the primary answer.\n * **Olá:** This is a"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" bit more"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" formal than \""},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"Oi\" but"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" still very"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" common. It's like \""},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"Hello\". It's"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" a safe bet"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" in"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" almost"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" any situation"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":", informal or slightly formal"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"."},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" I should"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" include this as a good alternative"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":".\n * **Bom dia:** This means"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" \"Good morning\". It"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"'s a very common greeting"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":", but it's time"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"-specific."},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" I should"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" mention this. It"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"'s used until"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" around noon"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":".\n"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" "},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" * **Boa tarde:**"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" This means"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" \"Good afternoon\". Also time"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"-specific, used from"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" noon until"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" evening/d"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"usk"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":".\n "},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" * **Boa noite:** This means \"Good evening\" or"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" \"Good night\". It's"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" used from dusk onwards"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" and"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" can be"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" both a"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" greeting"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" and a"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" farewell. This is an"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" important distinction"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" to make.\n"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" * **E aí"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"? / Be"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"le"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"za?"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" (Brazil"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"ian slang"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"):"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"** These are"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" very informal"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":", like \""},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"What's"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" up?\"."},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" They are specific to"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" Brazil ("},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"or"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" at least"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" much more"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" common"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" there) and very casual"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"."},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" I should include these to provide"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" more depth"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" and"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" show a better"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" understanding of"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" colloquial"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" language.\n * **"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"Tudo bem"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"?:**"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" Literally"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" \"Is everything"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" well"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"?\". It's used"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" both as"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" a"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" greeting (\"How are"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" you?\") and"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" a response to \""},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"Oi"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"\""},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" or \"Olá\". Worth mentioning"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":".\n\n5."},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" **Structure the Answer:** I need to present this information clearly and concis"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"ely, without"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" overwhelming"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" the user"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":". A good structure would be:\n\n * **Start with"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" the most direct answer:** The"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" user asked"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" for \"hi\", so"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" give them \"Oi\" right away"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":". Make it"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" bold and clear"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":".\n * **Provide the most"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" common alternative:** Give \""},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"Olá\" next as"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" a"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" slightly more"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" formal but very"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" frequent"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" option"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":". Explain the"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" difference in form"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"ality"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":".\n "},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" * **Offer time-specific"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" greetings:** Group \""},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"Bom"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" dia\", \""},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"Boa tarde\", and \"Boa noite\" together and explain"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" when to use"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" them."},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" This is very"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" useful practical"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" information"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":".\n * **Add informal"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"/s"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"lang options"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" (optional"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" but"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" good for value"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"):**"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" Include a couple of"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" very informal"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" options"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" like \"E aí?\" and specify"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" that"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" they are"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" more common in Brazil and"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" used with friends"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"."},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" This adds a"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" layer of cultural and"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" linguistic nu"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"ance.\n * **Provide"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" a simple"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" closing:**"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" A friendly closing like \"Hope this"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" helps"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"!\" or just a"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" clean layout"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" is good"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":".\n\n6. **Draft"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" the Content (incorporating the structure):**\n\n * *Initial"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" thought:* \"Oi.\" ->"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" *"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"Too brief"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":". The"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" user might want"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" more"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" context.*\n\n"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" "},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" * *Second draft:"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"*\n The most common"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" way to say"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" \"hi\" in Portuguese is:\n "},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" **Oi!"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"**\n "},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" It's informal,"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" like"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" \""},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"hi,\""},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" and"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" used"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" with friends"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" and family.\n You"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" can also"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" say:\n **Olá!**\n This is"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" more like"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" \"hello"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"\" and"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" can be"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" used in more situations.\n\n"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" * *Refined"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" draft"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" (adding the"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" time"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"-of-day"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" greetings):"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"*\n The most common and direct"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" way to say \"hi\" in Portuguese is:\n"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" **Oi!**\n\n For"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" a slightly"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" more formal or general"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" greeting"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" (like"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" \"hello\"), you can use:\n **Olá!"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"**\n\n You can also"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" use time-of"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"-day"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" greetings, which"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" are"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" very common:\n * **Bom dia** -"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" Good"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" morning\n * **Boa tarde** - Good afternoon\n * **Bo"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"a noite** - Good evening / Good"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" night\n\n *"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" *Final Polish (adding slang and"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" pronunciation/pr"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"actical"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" tips"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"):*\n I'll"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" start with the direct answer"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":", bold"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"ed,"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" for"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" maximum"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" clarity"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":".\n\n "},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" **Oi!** (pronounced"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" roughly \""},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"oy\")\n\n"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" "},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" This is"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" the most common and direct equivalent of"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" \"hi.\""},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" It's"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" informal and used with"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" friends,"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" family,"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" and people you know well.\n\n Here are"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" a few"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" other options,"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" depending on the situation:\n\n **Ol"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"á** ("},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"pronounced \"oh-LAH\")\n "},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" * "},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" This is like \""},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"hello.\" It"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"'s a bit more"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" formal than \""},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"Oi\" but still very common and works"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" in"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" almost any situation.\n\n You can"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" also use greetings based"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" on the"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" time of day:\n * **Bom dia** - Good"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" morning\n * **Boa tarde** - Good afternoon"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"\n * **Boa noite** - Good evening / Good night\n\n And for"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" very informal"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" situations with"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" friends"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" (especially in"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" Brazil):\n *"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" **E aí?** - What"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"'s up?\n *"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" **Tudo bem"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"?** - How's it"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" going? / Everything"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" okay"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"?\n\n"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"7."},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" **Review and Final"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"ize:** The final draft"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" is excellent."},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" It's comprehensive but"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" not"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" overwhelming. It gives the"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" direct answer first,"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" then provides context,"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" alternatives,"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" and cultural nuances."},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" The pronunciation guides"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" are"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" a helpful"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" touch."},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" The formatting with"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" bold"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" text and"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" bullet points"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" makes it easy to read. This is"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" the version"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":" I'll output"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"reasoning":"."},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"content":"\nThe most"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"content":" common way to say \"hi"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"content":"\" in Portuguese is:\n\n**Oi!**\n\nIt's"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"content":" informal, just like"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"content":" \"hi,\" and is used with friends, family"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"content":", and people you know well.\n\nHere are a"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"content":" few other options:\n\n* "},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"content":" **Olá** -"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"content":" This is like \"hello"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"content":".\" It's"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"content":" a bit more formal than *Oi"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"content":"* but works in almost"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"content":" any situation.\n\nYou"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"content":" can also use greetings based"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"content":" on the time of day"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"content":":\n\n* **Bom"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"content":" dia** - Good morning\n* **Boa tarde** - Good afternoon\n* **Bo"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{"content":"a noite** - Good evening / Good night"},"index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-6e7970f4-2fbf-43c3-9847-3fc8717703e9","choices":[{"delta":{},"finish_reason":"stop","index":0}],"created":1762855220,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk","usage":{"total_tokens":1337,"completion_tokens":1321,"prompt_tokens":16},"time_info":{"queue_time":0.00012731,"prompt_time":0.004064561,"completion_time":1.739690271,"total_time":1.7457032203674316,"created":1762855220.2438056}} - - headers: - Content-Type: - - text/event-stream; charset=utf-8 - status: 200 OK - code: 200 - duration: 319.948458ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/huggingface-qwen3-coder/tool.yaml b/providertests/testdata/TestOpenAICompatibleCommon/huggingface-qwen3-coder/tool.yaml deleted file mode 100644 index 9975105962046d4229fbf7ecd1ead6edbd77557b..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestOpenAICompatibleCommon/huggingface-qwen3-coder/tool.yaml +++ /dev/null @@ -1,61 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 466 - host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"zai-org/GLM-4.6:cerebras","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.7.1 - url: https://router.huggingface.co/v1/chat/completions - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: '{"id":"chatcmpl-9ed5d57c-2570-4ccd-8a72-6f22c8577e98","choices":[{"finish_reason":"tool_calls","index":0,"message":{"content":"\nI''ll get the weather information for Florence, Italy for you.\n","reasoning":"The user is asking for weather information for Florence, Italy. I need to use the weather function with the location parameter. The user specified \"Florence,Italy\" which I should use exactly as provided, or I could use just \"Florence\" since that''s the city name. Let me check the function parameters - it requires a \"location\" parameter which is described as \"the city\". I think \"Florence\" would be sufficient, but since they specifically included \"Italy\" I should probably use \"Florence,Italy\" to be more precise.","tool_calls":[{"id":"17412c140","type":"function","function":{"name":"weather","arguments":"{\"location\": \"Florence,Italy\"}"}}],"role":"assistant"}}],"created":1762855222,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion","usage":{"total_tokens":331,"completion_tokens":144,"prompt_tokens":187},"time_info":{"queue_time":0.005854158,"prompt_time":0.008443714,"completion_time":0.295474428,"total_time":0.3114504814147949,"created":1762855222.3435056}}' - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: 688.961166ms -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 756 - host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"\nI''ll get the weather information for Florence, Italy for you.\n","tool_calls":[{"id":"17412c140","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"17412c140","role":"tool"}],"model":"zai-org/GLM-4.6:cerebras","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.7.1 - url: https://router.huggingface.co/v1/chat/completions - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: '{"id":"chatcmpl-6e9e46c1-c111-4fc0-8648-8dffcbf32a72","choices":[{"finish_reason":"stop","index":0,"message":{"content":"\nThe weather in Florence, Italy is currently 40°C (which is quite hot - about 104°F). This is very warm weather, so if you''re planning to be outdoors there, you''ll want to stay hydrated and seek shade when possible.","role":"assistant"}}],"created":1762855242,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion","usage":{"total_tokens":282,"completion_tokens":54,"prompt_tokens":228},"time_info":{"queue_time":0.004272864,"prompt_time":0.004543828,"completion_time":0.094835176,"total_time":0.105194091796875,"created":1762855242.5629983}}' - headers: - Content-Type: - - application/json - status: 200 OK - code: 200 - duration: 20.019286708s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/huggingface-qwen3-coder/tool_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/huggingface-qwen3-coder/tool_streaming.yaml deleted file mode 100644 index d1eb7cec3abc9cc5b7f5c1b1667919bbee6660ff..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestOpenAICompatibleCommon/huggingface-qwen3-coder/tool_streaming.yaml +++ /dev/null @@ -1,229 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 520 - host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"zai-org/GLM-4.6:cerebras","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.7.1 - url: https://router.huggingface.co/v1/chat/completions - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: |+ - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"content":"","role":"assistant"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":""},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":"The user is"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" asking"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" for weather information"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" for Florence, Italy. I need to use the weather function with"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" the"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" location parameter."},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" The"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" user specified"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" \""},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":"Florence"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":",Italy\" as"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" the location. I"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" should"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" use"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" this"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" exactly as"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" provided since"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" it"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" includes both"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" the"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" city and country information which"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" will"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" help"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" get"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":" accurate results"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":"."},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"reasoning":""},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"content":"\n"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"content":"I'll get the"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"content":" weather information for Florence, Italy for you.\n"},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{"tool_calls":[{"function":{"name":"weather","arguments":"{\"location\": \"Florence,Italy\"}"},"type":"function","id":"75314f724","index":0}]},"index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-cd1b3de5-3a2b-4246-ba7f-583eb2eddfbd","choices":[{"delta":{},"finish_reason":"tool_calls","index":0}],"created":1762855240,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk","usage":{"total_tokens":279,"completion_tokens":92,"prompt_tokens":187},"time_info":{"queue_time":0.004136448,"prompt_time":0.005123835,"completion_time":0.16235391,"total_time":0.17365789413452148,"created":1762855240.359195}} - - headers: - Content-Type: - - text/event-stream; charset=utf-8 - status: 200 OK - code: 200 - duration: 348.470333ms -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 810 - host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"\nI''ll get the weather information for Florence, Italy for you.\n","tool_calls":[{"id":"75314f724","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"75314f724","role":"tool"}],"model":"zai-org/GLM-4.6:cerebras","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.7.1 - url: https://router.huggingface.co/v1/chat/completions - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - body: |+ - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":"","role":"assistant"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"reasoning":""},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"reasoning":""},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":"\nThe current weather"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" in Florence, Italy"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" is"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" 40°C, which"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" is"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" quite"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" hot"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":"!"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" This"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" is"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" a"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" very"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" warm"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" temperature"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":","},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" so"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" if"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" you"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":"'re"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" planning"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" to"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" visit"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" or"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" have"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" activities"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" planned"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" there"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":","},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" you"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":"'ll"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" want"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" to"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" be"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" prepared"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" for"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" the"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" heat"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":"."},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" Make"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" sure"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" to"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" stay"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" hydrated and seek shade"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" when"},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{"content":" possible."},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{},"index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk"} - - data: {"id":"chatcmpl-7aa67568-b556-4b17-b0a9-5cd878985e99","choices":[{"delta":{},"finish_reason":"stop","index":0}],"created":1762855260,"model":"zai-glm-4.6","system_fingerprint":"fp_b78e4418d824cdcd64e8","object":"chat.completion.chunk","usage":{"total_tokens":290,"completion_tokens":62,"prompt_tokens":228},"time_info":{"queue_time":0.003050024,"prompt_time":0.003663248,"completion_time":0.23331325,"total_time":0.24212312698364258,"created":1762855260.1703784}} - - headers: - Content-Type: - - text/event-stream; charset=utf-8 - status: 200 OK - code: 200 - duration: 19.633745459s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/multi_tool.yaml b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/multi_tool.yaml index 40c7e785d305c46ab00806623d0bd1faa144057e..e5a349fc0ed24afa389768581f5a3570795c2dc7 100644 --- a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/multi_tool.yaml +++ b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/multi_tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,13 +24,13 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"dec7a509-fc2a-5adb-eed9-626affdd1430","object":"chat.completion","created":1762854946,"model":"grok-4-fast-reasoning","choices":[{"index":0,"message":{"role":"assistant","content":"","tool_calls":[{"id":"call_77946408","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"},"type":"function"},{"id":"call_90297600","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":437,"completion_tokens":68,"total_tokens":648,"prompt_tokens_details":{"text_tokens":437,"audio_tokens":0,"image_tokens":0,"cached_tokens":304},"completion_tokens_details":{"reasoning_tokens":143,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_bfbe7bd0a2"}' + body: '{"id":"a75f6023-0e99-3ea6-bdfb-96c9314c2108","object":"chat.completion","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"message":{"role":"assistant","content":"","tool_calls":[{"id":"call_17376387","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"},"type":"function"},{"id":"call_83407729","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":436,"completion_tokens":68,"total_tokens":652,"prompt_tokens_details":{"text_tokens":436,"audio_tokens":0,"image_tokens":0,"cached_tokens":152},"completion_tokens_details":{"reasoning_tokens":148,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":1724000},"system_fingerprint":"fp_3d7ed3b779"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.687079417s + duration: 1.798270916s - id: 1 request: proto: HTTP/1.1 @@ -38,14 +38,14 @@ interactions: proto_minor: 1 content_length: 1177 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"},{"tool_calls":[{"id":"call_77946408","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_90297600","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_77946408","role":"tool"},{"content":"6","tool_call_id":"call_90297600","role":"tool"}],"model":"grok-4-fast","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"}]}' + 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":"call_17376387","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_83407729","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_17376387","role":"tool"},{"content":"6","tool_call_id":"call_83407729","role":"tool"}],"model":"grok-4-fast","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.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"bfde0945-c590-ce6c-b493-8f7f3fced601","object":"chat.completion","created":1762854948,"model":"grok-4-fast-reasoning","choices":[{"index":0,"message":{"role":"assistant","content":"The sum of 2 and 3 is 5. \nThe product of 2 and 3 is 6.","refusal":null},"finish_reason":"stop"}],"usage":{"prompt_tokens":666,"completion_tokens":25,"total_tokens":734,"prompt_tokens_details":{"text_tokens":666,"audio_tokens":0,"image_tokens":0,"cached_tokens":304},"completion_tokens_details":{"reasoning_tokens":43,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_bfbe7bd0a2"}' + body: '{"id":"faabcc4e-e56a-0426-1904-52c0f880742d","object":"chat.completion","created":1773345558,"model":"grok-4-fast-reasoning","choices":[{"index":0,"message":{"role":"assistant","content":"The sum of 2 and 3 is 5. \nThe product of 2 and 3 is 6.","refusal":null},"finish_reason":"stop"}],"usage":{"prompt_tokens":670,"completion_tokens":25,"total_tokens":739,"prompt_tokens_details":{"text_tokens":670,"audio_tokens":0,"image_tokens":0,"cached_tokens":618},"completion_tokens_details":{"reasoning_tokens":44,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":758000},"system_fingerprint":"fp_3d7ed3b779"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.056138584s + duration: 768.233916ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/multi_tool_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/multi_tool_streaming.yaml index 3e834deaec78dff23edc38f87a7cb54e3b5f367e..24722bb129147d180a02e0679f89c55b952c7c8a 100644 --- a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/multi_tool_streaming.yaml +++ b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/multi_tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,301 +24,13 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"role":"assistant"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"028e638f-d1c1-678c-a2c8-81b3f8a84090","object":"chat.completion.chunk","created":1773345560,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"role":"assistant","tool_calls":[{"id":"call_55070233","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"028e638f-d1c1-678c-a2c8-81b3f8a84090","object":"chat.completion.chunk","created":1773345560,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_12016531","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"},"index":1,"type":"function"}]}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"028e638f-d1c1-678c-a2c8-81b3f8a84090","object":"chat.completion.chunk","created":1773345560,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854950,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854951,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854951,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854951,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854951,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854951,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854951,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854951,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854951,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854951,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854951,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854951,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854951,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_87057118","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854951,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_52998358","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"},"index":1,"type":"function"}]}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854951,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"b4b9e8e9-d0a8-fea3-52ae-7c4c33004f65","object":"chat.completion.chunk","created":1762854951,"model":"grok-4-fast-reasoning","choices":[],"usage":{"prompt_tokens":433,"completion_tokens":68,"total_tokens":645,"prompt_tokens_details":{"text_tokens":433,"audio_tokens":0,"image_tokens":0,"cached_tokens":403},"completion_tokens_details":{"reasoning_tokens":144,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"028e638f-d1c1-678c-a2c8-81b3f8a84090","object":"chat.completion.chunk","created":1773345560,"model":"grok-4-fast-reasoning","choices":[],"usage":{"prompt_tokens":432,"completion_tokens":68,"total_tokens":636,"prompt_tokens_details":{"text_tokens":432,"audio_tokens":0,"image_tokens":0,"cached_tokens":153},"completion_tokens_details":{"reasoning_tokens":136,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":1654500},"system_fingerprint":"fp_3d7ed3b779"} data: [DONE] @@ -327,7 +39,7 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 415.14375ms + duration: 687.329417ms - id: 1 request: proto: HTTP/1.1 @@ -335,14 +47,14 @@ interactions: proto_minor: 1 content_length: 1214 host: "" - body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_87057118","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_52998358","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_87057118","role":"tool"},{"content":"6","tool_call_id":"call_52998358","role":"tool"}],"model":"grok-4-fast","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}' + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_55070233","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_12016531","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_55070233","role":"tool"},{"content":"6","tool_call_id":"call_12016531","role":"tool"}],"model":"grok-4-fast","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.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -351,137 +63,59 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"role":"assistant"}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"The"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"The","role":"assistant"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" sum"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" sum"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" of"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" of"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"2"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"2"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" and"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" and"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"3"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"3"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" is"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" is"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"5"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"5"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"."}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"."}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" \n"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" \n"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"The"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"The"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" product"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" product"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" of"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" of"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"2"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"2"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" and"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" and"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"3"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"3"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" is"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" is"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"6"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"6"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"."}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"."}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"0ba115c8-62ec-046d-5111-ef980f20296a","object":"chat.completion.chunk","created":1762854952,"model":"grok-4-fast-reasoning","choices":[],"usage":{"prompt_tokens":663,"completion_tokens":25,"total_tokens":727,"prompt_tokens_details":{"text_tokens":663,"audio_tokens":0,"image_tokens":0,"cached_tokens":611},"completion_tokens_details":{"reasoning_tokens":39,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"fd43b2e6-5868-9d79-e814-e0d66a46a317","object":"chat.completion.chunk","created":1773345561,"model":"grok-4-fast-reasoning","choices":[],"usage":{"prompt_tokens":654,"completion_tokens":25,"total_tokens":731,"prompt_tokens_details":{"text_tokens":654,"audio_tokens":0,"image_tokens":0,"cached_tokens":602},"completion_tokens_details":{"reasoning_tokens":52,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":790000},"system_fingerprint":"fp_3d7ed3b779"} data: [DONE] @@ -490,4 +124,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 455.97875ms + duration: 620.315167ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/simple.yaml b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/simple.yaml index 625e0d2ec98859025b5833be0ab5498375378221..f28b511a90e52a82e5438f4c253141b104b2f3f7 100644 --- a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/simple.yaml +++ b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"ba921086-b431-a891-6539-f253e188df6f","object":"chat.completion","created":1762854936,"model":"grok-4-fast-reasoning","choices":[{"index":0,"message":{"role":"assistant","content":"Olá!","refusal":null},"finish_reason":"stop"}],"usage":{"prompt_tokens":165,"completion_tokens":2,"total_tokens":244,"prompt_tokens_details":{"text_tokens":165,"audio_tokens":0,"image_tokens":0,"cached_tokens":150},"completion_tokens_details":{"reasoning_tokens":77,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_bfbe7bd0a2"}' + body: '{"id":"47a24a3a-ac8a-ca65-760b-6da4c149af44","object":"chat.completion","created":1773345547,"model":"grok-4-fast-reasoning","choices":[{"index":0,"message":{"role":"assistant","content":"Olá!","refusal":null},"finish_reason":"stop"}],"usage":{"prompt_tokens":165,"completion_tokens":2,"total_tokens":292,"prompt_tokens_details":{"text_tokens":165,"audio_tokens":0,"image_tokens":0,"cached_tokens":156},"completion_tokens_details":{"reasoning_tokens":125,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":731000},"system_fingerprint":"fp_3d7ed3b779"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 928.874459ms + duration: 1.593084583s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/simple_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/simple_streaming.yaml index 7f8ecdfc6daf244241f180ce977b34f154dac936..868d8746e3d87c7f74d77a8f5150aec662857487 100644 --- a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/simple_streaming.yaml +++ b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,291 +24,13 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"role":"assistant"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"53ae0d64-4f1a-b4e2-9517-9d20013a1c9c","object":"chat.completion.chunk","created":1773345550,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"Olá","role":"assistant"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"53ae0d64-4f1a-b4e2-9517-9d20013a1c9c","object":"chat.completion.chunk","created":1773345550,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"!"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"53ae0d64-4f1a-b4e2-9517-9d20013a1c9c","object":"chat.completion.chunk","created":1773345550,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854937,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"Olá"}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"!"}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"bd8fcffa-eabb-78dc-6980-d22e46ee7cea","object":"chat.completion.chunk","created":1762854938,"model":"grok-4-fast-reasoning","choices":[],"usage":{"prompt_tokens":165,"completion_tokens":2,"total_tokens":306,"prompt_tokens_details":{"text_tokens":165,"audio_tokens":0,"image_tokens":0,"cached_tokens":150},"completion_tokens_details":{"reasoning_tokens":139,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"53ae0d64-4f1a-b4e2-9517-9d20013a1c9c","object":"chat.completion.chunk","created":1773345550,"model":"grok-4-fast-reasoning","choices":[],"usage":{"prompt_tokens":165,"completion_tokens":2,"total_tokens":296,"prompt_tokens_details":{"text_tokens":165,"audio_tokens":0,"image_tokens":0,"cached_tokens":164},"completion_tokens_details":{"reasoning_tokens":129,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":739000},"system_fingerprint":"fp_3d7ed3b779"} data: [DONE] @@ -317,4 +39,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 198.825167ms + duration: 2.619907708s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/tool.yaml b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/tool.yaml index 1da4dad20c37661c681a072feb2ede91ad145650..f57d19855c3fcbb20ea9685ab8fc5444c2a9795b 100644 --- a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/tool.yaml +++ b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,13 +24,13 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"6645739c-32ed-3f7b-3df7-eae6c86bee88","object":"chat.completion","created":1762854938,"model":"grok-4-fast-reasoning","choices":[{"index":0,"message":{"role":"assistant","content":"","tool_calls":[{"id":"call_38088650","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":361,"completion_tokens":26,"total_tokens":527,"prompt_tokens_details":{"text_tokens":361,"audio_tokens":0,"image_tokens":0,"cached_tokens":304},"completion_tokens_details":{"reasoning_tokens":140,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_bfbe7bd0a2"}' + body: '{"id":"546bcc82-b37d-ca5d-aee1-0f2d503ee0b8","object":"chat.completion","created":1773345550,"model":"grok-4-fast-reasoning","choices":[{"index":0,"message":{"role":"assistant","content":"","tool_calls":[{"id":"call_98286056","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":361,"completion_tokens":26,"total_tokens":480,"prompt_tokens_details":{"text_tokens":361,"audio_tokens":0,"image_tokens":0,"cached_tokens":153},"completion_tokens_details":{"reasoning_tokens":93,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":1087500},"system_fingerprint":"fp_3d7ed3b779"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.622645042s + duration: 1.838762167s - id: 1 request: proto: HTTP/1.1 @@ -38,14 +38,14 @@ interactions: proto_minor: 1 content_length: 673 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_38088650","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_38088650","role":"tool"}],"model":"grok-4-fast","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"}]}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_98286056","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_98286056","role":"tool"}],"model":"grok-4-fast","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.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"8359b4aa-22c3-dfe0-c3b5-9e622b2be670","object":"chat.completion","created":1762854941,"model":"grok-4-fast-reasoning","choices":[{"index":0,"message":{"role":"assistant","content":"The current temperature in Florence, Italy, is 40°C. If you need more details like forecasts or conditions, let me know!","refusal":null},"finish_reason":"stop"}],"usage":{"prompt_tokens":540,"completion_tokens":27,"total_tokens":661,"prompt_tokens_details":{"text_tokens":540,"audio_tokens":0,"image_tokens":0,"cached_tokens":304},"completion_tokens_details":{"reasoning_tokens":94,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_bfbe7bd0a2"}' + body: '{"id":"533294f1-af60-2023-e993-8ab87543ed84","object":"chat.completion","created":1773345552,"model":"grok-4-fast-reasoning","choices":[{"index":0,"message":{"role":"assistant","content":"The current weather in Florence, Italy, is 40°C. It feels quite hot—stay hydrated! If you need more details like forecast or conditions, let me know.","refusal":null},"finish_reason":"stop"}],"usage":{"prompt_tokens":493,"completion_tokens":35,"total_tokens":582,"prompt_tokens_details":{"text_tokens":493,"audio_tokens":0,"image_tokens":0,"cached_tokens":481},"completion_tokens_details":{"reasoning_tokens":54,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":709500},"system_fingerprint":"fp_3d7ed3b779"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.701426875s + duration: 960.107583ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/tool_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/tool_streaming.yaml index 1080ad3ecf985d81393b448a1f22400e213ddc01..d26167dc60d1e27a581e4c6ee4018b502bb50e76 100644 --- a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/tool_streaming.yaml +++ b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-4-fast/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,451 +24,11 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"role":"assistant"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"8f008308-984b-9603-8706-ebf37f518892","object":"chat.completion.chunk","created":1773345555,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"role":"assistant","tool_calls":[{"id":"call_51851897","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"8f008308-984b-9603-8706-ebf37f518892","object":"chat.completion.chunk","created":1773345555,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854943,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_54240681","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"86dec149-d152-1223-0b58-aaea2004fdc1","object":"chat.completion.chunk","created":1762854944,"model":"grok-4-fast-reasoning","choices":[],"usage":{"prompt_tokens":361,"completion_tokens":26,"total_tokens":607,"prompt_tokens_details":{"text_tokens":361,"audio_tokens":0,"image_tokens":0,"cached_tokens":304},"completion_tokens_details":{"reasoning_tokens":220,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"8f008308-984b-9603-8706-ebf37f518892","object":"chat.completion.chunk","created":1773345555,"model":"grok-4-fast-reasoning","choices":[],"usage":{"prompt_tokens":361,"completion_tokens":26,"total_tokens":622,"prompt_tokens_details":{"text_tokens":361,"audio_tokens":0,"image_tokens":0,"cached_tokens":360},"completion_tokens_details":{"reasoning_tokens":235,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":1487000},"system_fingerprint":"fp_3d7ed3b779"} data: [DONE] @@ -477,7 +37,7 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 182.838541ms + duration: 667.752292ms - id: 1 request: proto: HTTP/1.1 @@ -485,14 +45,14 @@ interactions: proto_minor: 1 content_length: 727 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_54240681","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_54240681","role":"tool"}],"model":"grok-4-fast","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}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_51851897","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_51851897","role":"tool"}],"model":"grok-4-fast","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.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -501,165 +61,93 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"role":"assistant"}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"The"}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" current"}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" weather"}}],"system_fingerprint":"fp_bfbe7bd0a2"} - - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" in"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345555,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"The","role":"assistant"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" Florence"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345555,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" current"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":","}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345555,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" weather"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" Italy"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345555,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" in"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":","}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345555,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" Florence"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" is"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345555,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":","}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345555,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" Italy"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"40"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345555,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":","}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"°C"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345555,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" is"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" ("}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345555,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"104"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345555,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"40"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"°F"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345555,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"°C"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":")."}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345555,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" ("}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" It's"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345555,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"104"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" quite"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"°F"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" hot"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":")."}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"—"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" It"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"stay"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" feels"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" hydrated"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" quite"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" and"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" hot"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" seek"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"—"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" shade"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"stay"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" if"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" hydrated"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" you're"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" if"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" out"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" you're"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" and"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" out"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" about"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" and"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"!"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" about"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" If"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"!"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" you"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" If"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" need"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" you"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" more"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" need"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" details"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" a"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" like"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" forecast"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" forecasts"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" or"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" or"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" more"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" humidity"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" details"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":","}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":","}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" let"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" let"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" me"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" me"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" know"}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":" know"}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"."}}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{"content":"."}}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"system_fingerprint":"fp_3d7ed3b779"} - data: {"id":"653a2216-e941-bdf0-0fa3-efe1681b9405","object":"chat.completion.chunk","created":1762854945,"model":"grok-4-fast-reasoning","choices":[],"usage":{"prompt_tokens":620,"completion_tokens":45,"total_tokens":698,"prompt_tokens_details":{"text_tokens":620,"audio_tokens":0,"image_tokens":0,"cached_tokens":365},"completion_tokens_details":{"reasoning_tokens":33,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_bfbe7bd0a2"} + data: {"id":"ed3edf28-66f2-3e19-5699-c301241be2b3","object":"chat.completion.chunk","created":1773345556,"model":"grok-4-fast-reasoning","choices":[],"usage":{"prompt_tokens":635,"completion_tokens":42,"total_tokens":720,"prompt_tokens_details":{"text_tokens":635,"audio_tokens":0,"image_tokens":0,"cached_tokens":623},"completion_tokens_details":{"reasoning_tokens":43,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":760500},"system_fingerprint":"fp_3d7ed3b779"} data: [DONE] @@ -668,4 +156,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 188.3925ms + duration: 432.121666ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/multi_tool.yaml b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/multi_tool.yaml index fc3e5ee74039672fa572180b163b2594a454abdd..ed7dc36f001d7bfe1b84a8afa636a2021329e8bf 100644 --- a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/multi_tool.yaml +++ b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/multi_tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,28 +24,28 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"9874b007-2b46-d81c-99af-a1e5f79ad5f8","object":"chat.completion","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"message":{"role":"assistant","content":"","tool_calls":[{"id":"call_20392219","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"},"type":"function"},{"id":"call_35218664","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":471,"completion_tokens":68,"total_tokens":773,"prompt_tokens_details":{"text_tokens":471,"audio_tokens":0,"image_tokens":0,"cached_tokens":320},"completion_tokens_details":{"reasoning_tokens":234,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"}' + body: '{"id":"9e68c68b-dc81-b4cc-2477-b238968f91ae","object":"chat.completion","created":1773345591,"model":"grok-code-fast-1","choices":[{"index":0,"message":{"role":"assistant","content":"","reasoning_content":"## Interpreting user request \n- The user wants to add and multiply the numbers 2 and 3 together. \n- The system prompt requires both addition and multiplication to be used simultaneously. \n\n## Planning function calls \n- Need to make separate calls for both add and multiply functions, using a=2 and b=3. \n- Each function call should follow the format using tags. \n\n## Preparing response \n- The response will include two function calls: one for adding and one for multiplying. \n- Results will be presented after executing both functions.","tool_calls":[{"id":"call_80180798","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"},"type":"function"},{"id":"call_25894979","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":470,"completion_tokens":68,"total_tokens":723,"prompt_tokens_details":{"text_tokens":470,"audio_tokens":0,"image_tokens":0,"cached_tokens":192},"completion_tokens_details":{"reasoning_tokens":185,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":4389400},"system_fingerprint":"fp_99052e9f23"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.281730792s + duration: 8.395704167s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1182 + content_length: 1788 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"},{"tool_calls":[{"id":"call_20392219","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_35218664","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_20392219","role":"tool"},{"content":"6","tool_call_id":"call_35218664","role":"tool"}],"model":"grok-code-fast-1","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}]}' + 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":"call_80180798","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_25894979","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant","reasoning_content":"## Interpreting user request \n- The user wants to add and multiply the numbers 2 and 3 together. \n- The system prompt requires both addition and multiplication to be used simultaneously. \n\n## Planning function calls \n- Need to make separate calls for both add and multiply functions, using a=2 and b=3. \n- Each function call should follow the format using \u003cxai:function_call\u003e tags. \n\n## Preparing response \n- The response will include two function calls: one for adding and one for multiplying. \n- Results will be presented after executing both functions."},{"content":"5","tool_call_id":"call_80180798","role":"tool"},{"content":"6","tool_call_id":"call_25894979","role":"tool"}],"model":"grok-code-fast-1","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"7ecd4565-51f1-24db-578f-628fc2c2dc35","object":"chat.completion","created":1762854968,"model":"grok-code-fast-1","choices":[{"index":0,"message":{"role":"assistant","content":"2 + 3 = 5 \n2 * 3 = 6","refusal":null},"finish_reason":"stop"}],"usage":{"prompt_tokens":791,"completion_tokens":15,"total_tokens":849,"prompt_tokens_details":{"text_tokens":791,"audio_tokens":0,"image_tokens":0,"cached_tokens":320},"completion_tokens_details":{"reasoning_tokens":43,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"}' + body: '{"id":"1645853d-f873-d90a-956d-e04428f2fc8e","object":"chat.completion","created":1773345599,"model":"grok-code-fast-1","choices":[{"index":0,"message":{"role":"assistant","content":"2 + 3 = 5 \n2 * 3 = 6","reasoning_content":"## Calculating Results \n- Adding 2 and 3 gives a result of 5. \n- Multiplying 2 and 3 gives a result of 6. \n\n## Presenting Answer \n- The final answer combines both operations: 2 + 3 = 5, and 2 * 3 = 6. \n- This fulfills the task of providing both addition and multiplication results.","refusal":null},"finish_reason":"stop"}],"usage":{"prompt_tokens":741,"completion_tokens":15,"total_tokens":866,"prompt_tokens_details":{"text_tokens":741,"audio_tokens":0,"image_tokens":0,"cached_tokens":640},"completion_tokens_details":{"reasoning_tokens":110,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":2205000},"system_fingerprint":"fp_99052e9f23"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.158569583s + duration: 7.994554542s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/multi_tool_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/multi_tool_streaming.yaml index 1e2065e3340ed3fe6c268034e2f464b6281baff8..da11e0df4af257cb28544bc104aad1b963d450e5 100644 --- a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/multi_tool_streaming.yaml +++ b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/multi_tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,381 +24,79 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"The","role":"assistant"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"The","role":"assistant"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" asked"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" asked"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" add"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"Add"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" multiply"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" multiply"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"2"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" number"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"3"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"2"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" need"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"3"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"\"."}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" use"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" The"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" both"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" system"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" tools"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" prompt"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" says"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" add"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" multiply"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"Always"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".\n"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" use"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" both"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" add"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" multiply"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" at"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" same"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" time"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345608,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".\"\n"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345610,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_47876210","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345610,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_97132951","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"},"index":1,"type":"function"}]}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345610,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854969,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_28204233","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_72666071","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"},"index":1,"type":"function"}]}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"f4589f03-c781-01f2-4824-8406d4201043","object":"chat.completion.chunk","created":1762854970,"model":"grok-code-fast-1","choices":[],"usage":{"prompt_tokens":467,"completion_tokens":68,"total_tokens":719,"prompt_tokens_details":{"text_tokens":467,"audio_tokens":0,"image_tokens":0,"cached_tokens":384},"completion_tokens_details":{"reasoning_tokens":184,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"} + data: {"id":"34fd1eff-a2d7-3ed8-5cf5-1ff1333419bd","object":"chat.completion.chunk","created":1773345610,"model":"grok-code-fast-1","choices":[],"usage":{"prompt_tokens":466,"completion_tokens":68,"total_tokens":800,"prompt_tokens_details":{"text_tokens":466,"audio_tokens":0,"image_tokens":0,"cached_tokens":192},"completion_tokens_details":{"reasoning_tokens":266,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":5596400},"system_fingerprint":"fp_99052e9f23"} data: [DONE] @@ -407,22 +105,22 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 195.743ms + duration: 829.110292ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1331 + content_length: 1381 host: "" - body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_28204233","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_72666071","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant","reasoning_content":"The user asked to add and multiply 2 and 3. I need to use both tools: add and multiply.\n"},{"content":"5","tool_call_id":"call_28204233","role":"tool"},{"content":"6","tool_call_id":"call_72666071","role":"tool"}],"model":"grok-code-fast-1","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_47876210","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_97132951","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant","reasoning_content":"The user asked to \"Add and multiply the number 2 and 3\". The system prompt says: \"Always use both add and multiply at the same time.\"\n"},{"content":"5","tool_call_id":"call_47876210","role":"tool"},{"content":"6","tool_call_id":"call_97132951","role":"tool"}],"model":"grok-code-fast-1","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -431,165 +129,89 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"I","role":"assistant"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" have"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" results"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" add"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" gave"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"5"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" multiply"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" gave"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"6"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".\n"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854971,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"The","role":"assistant"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" calls"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" returned"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" add"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" gave"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"5"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" multiply"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" gave"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"6"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".\n"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"The"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"The"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" sum"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" sum"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" of"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" of"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"2"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"2"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" and"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" and"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"3"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"3"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" is"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" is"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"5"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"5"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"."}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":","}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" \n"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" and"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"The"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" the"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" product"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" product"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" of"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" of"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"2"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"2"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" and"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" and"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"3"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"3"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" is"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" is"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"6"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"6"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"."}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"."}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"636c757c-c4b5-337d-9b69-dddd3b8e84b5","object":"chat.completion.chunk","created":1762854973,"model":"grok-code-fast-1","choices":[],"usage":{"prompt_tokens":737,"completion_tokens":25,"total_tokens":815,"prompt_tokens_details":{"text_tokens":737,"audio_tokens":0,"image_tokens":0,"cached_tokens":640},"completion_tokens_details":{"reasoning_tokens":53,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"} + data: {"id":"c1876743-fb01-4c19-ef97-ee163f0e5255","object":"chat.completion.chunk","created":1773345611,"model":"grok-code-fast-1","choices":[],"usage":{"prompt_tokens":818,"completion_tokens":25,"total_tokens":897,"prompt_tokens_details":{"text_tokens":818,"audio_tokens":0,"image_tokens":0,"cached_tokens":704},"completion_tokens_details":{"reasoning_tokens":54,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":1553800},"system_fingerprint":"fp_99052e9f23"} data: [DONE] @@ -598,4 +220,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 166.444625ms + duration: 828.33375ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/simple.yaml b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/simple.yaml index 92f93a78d12e5a36c16f6762de739e8c6c02f145..f2ef2331bef7acf6c42d989f14ba7c6e57b3ff80 100644 --- a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/simple.yaml +++ b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"3d4e99a3-243f-88eb-3ebf-9bba327ac44b","object":"chat.completion","created":1762854952,"model":"grok-code-fast-1","choices":[{"index":0,"message":{"role":"assistant","content":"Olá! (That''s \"hi\" in Portuguese. For a more informal vibe, you can use \"Oi!\".)","refusal":null},"finish_reason":"stop"}],"usage":{"prompt_tokens":213,"completion_tokens":23,"total_tokens":414,"prompt_tokens_details":{"text_tokens":213,"audio_tokens":0,"image_tokens":0,"cached_tokens":192},"completion_tokens_details":{"reasoning_tokens":178,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"}' + body: '{"id":"94304843-211b-1151-e4af-a41f7a69a9bc","object":"chat.completion","created":1773345561,"model":"grok-code-fast-1","choices":[{"index":0,"message":{"role":"assistant","content":"Olá!","reasoning_content":"## Considering the Request \n- The user asked to \"Say hi in Portuguese,\" a straightforward request for a greeting. \n- As Grok, the response should be helpful, truthful, and natural, aligning with guidelines for economy. \n\n## Exploring Greeting Options \n- Common Portuguese greetings include \"Oi\" (informal hi) and \"Olá\" (more formal hello). \n- \"Oi tudo bem?\" is another option, meaning \"Hi, how are you?\" but may be too conversational here. \n\n## Deciding the Response \n- Given the simple request, \"Olá!\" or \"Oi!\" would suffice, with \"Olá\" feeling appropriately polite. \n- No additional translation or explanation is needed, as the user likely expects just the greeting.","refusal":null},"finish_reason":"stop"}],"usage":{"prompt_tokens":213,"completion_tokens":2,"total_tokens":471,"prompt_tokens_details":{"text_tokens":213,"audio_tokens":0,"image_tokens":0,"cached_tokens":192},"completion_tokens_details":{"reasoning_tokens":256,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":3950400},"system_fingerprint":"fp_99052e9f23"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 4.059811333s + duration: 13.519429958s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/simple_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/simple_streaming.yaml index a723dbbdd688df357daf1dc5b91d25be73fa380f..7f358b08a2b3bce1f62a3508334cf3d1e3ca73e2 100644 --- a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/simple_streaming.yaml +++ b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,429 +24,37 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"First","role":"assistant"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"f73f71ba-1f63-f286-1421-efccfb0e0abe","object":"chat.completion.chunk","created":1773345575,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"First","role":"assistant"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"f73f71ba-1f63-f286-1421-efccfb0e0abe","object":"chat.completion.chunk","created":1773345575,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"f73f71ba-1f63-f286-1421-efccfb0e0abe","object":"chat.completion.chunk","created":1773345575,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"f73f71ba-1f63-f286-1421-efccfb0e0abe","object":"chat.completion.chunk","created":1773345575,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" said"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"f73f71ba-1f63-f286-1421-efccfb0e0abe","object":"chat.completion.chunk","created":1773345575,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" said"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"f73f71ba-1f63-f286-1421-efccfb0e0abe","object":"chat.completion.chunk","created":1773345575,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"f73f71ba-1f63-f286-1421-efccfb0e0abe","object":"chat.completion.chunk","created":1773345575,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"Say"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"f73f71ba-1f63-f286-1421-efccfb0e0abe","object":"chat.completion.chunk","created":1773345575,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"Say"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" hi"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"f73f71ba-1f63-f286-1421-efccfb0e0abe","object":"chat.completion.chunk","created":1773345575,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" hi"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"f73f71ba-1f63-f286-1421-efccfb0e0abe","object":"chat.completion.chunk","created":1773345575,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Portuguese"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"f73f71ba-1f63-f286-1421-efccfb0e0abe","object":"chat.completion.chunk","created":1773345575,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Portuguese"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".\""}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"f73f71ba-1f63-f286-1421-efccfb0e0abe","object":"chat.completion.chunk","created":1773345575,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".\"\n"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" This"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"f73f71ba-1f63-f286-1421-efccfb0e0abe","object":"chat.completion.chunk","created":1773345576,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"Olá"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"f73f71ba-1f63-f286-1421-efccfb0e0abe","object":"chat.completion.chunk","created":1773345577,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"!"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"f73f71ba-1f63-f286-1421-efccfb0e0abe","object":"chat.completion.chunk","created":1773345577,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" simple"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" request"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" translate"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" or"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" say"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"hi"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Portuguese"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".\n"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854957,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"\n\n## Understanding user request \n- The user asked to say \"hi\" in Portuguese, a straightforward translation request."}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"Oi"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"!"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" ("}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"That's"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" \""}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"hi"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"\""}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" in"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" Portuguese"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":".)"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"e34db796-8dc4-24e9-2b49-613698c2c1d6","object":"chat.completion.chunk","created":1762854958,"model":"grok-code-fast-1","choices":[],"usage":{"prompt_tokens":213,"completion_tokens":10,"total_tokens":423,"prompt_tokens_details":{"text_tokens":213,"audio_tokens":0,"image_tokens":0,"cached_tokens":192},"completion_tokens_details":{"reasoning_tokens":200,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"} + data: {"id":"f73f71ba-1f63-f286-1421-efccfb0e0abe","object":"chat.completion.chunk","created":1773345577,"model":"grok-code-fast-1","choices":[],"usage":{"prompt_tokens":213,"completion_tokens":2,"total_tokens":413,"prompt_tokens_details":{"text_tokens":213,"audio_tokens":0,"image_tokens":0,"cached_tokens":192},"completion_tokens_details":{"reasoning_tokens":198,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":3080400},"system_fingerprint":"fp_99052e9f23"} data: [DONE] @@ -455,4 +63,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 195.607084ms + duration: 547.220583ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/tool.yaml b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/tool.yaml index bdf3632f0ea8a84dd3e4c2783322f6f5380c9ce1..42f2528753ad16aba9c984b96bc5422d01f02fda 100644 --- a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/tool.yaml +++ b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,28 +24,28 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"55c3d80a-b267-c2cb-8a03-387402a2fe4f","object":"chat.completion","created":1762854959,"model":"grok-code-fast-1","choices":[{"index":0,"message":{"role":"assistant","content":"","tool_calls":[{"id":"call_27103959","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":390,"completion_tokens":26,"total_tokens":537,"prompt_tokens_details":{"text_tokens":390,"audio_tokens":0,"image_tokens":0,"cached_tokens":320},"completion_tokens_details":{"reasoning_tokens":121,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"}' + body: '{"id":"588c646e-3ff8-b5ef-e436-5927c085f6f1","object":"chat.completion","created":1773345577,"model":"grok-code-fast-1","choices":[{"index":0,"message":{"role":"assistant","content":"","reasoning_content":"## Processing user request \n- The user asked about the weather in Florence, Italy. \n- Need to retrieve weather information for this specific location. \n\n## Preparing weather query \n- Identified Florence, Italy as the location for the weather request. \n- Formatting the query to get weather details for Florence, Italy.","tool_calls":[{"id":"call_12966055","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":390,"completion_tokens":26,"total_tokens":513,"prompt_tokens_details":{"text_tokens":390,"audio_tokens":0,"image_tokens":0,"cached_tokens":192},"completion_tokens_details":{"reasoning_tokens":97,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":2279400},"system_fingerprint":"fp_99052e9f23"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.562176375s + duration: 6.705419333s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 677 + content_length: 1029 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_27103959","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_27103959","role":"tool"}],"model":"grok-code-fast-1","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_12966055","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_content":"## Processing user request \n- The user asked about the weather in Florence, Italy. \n- Need to retrieve weather information for this specific location. \n\n## Preparing weather query \n- Identified Florence, Italy as the location for the weather request. \n- Formatting the query to get weather details for Florence, Italy."},{"content":"40 C","tool_call_id":"call_12966055","role":"tool"}],"model":"grok-code-fast-1","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"87f13718-fb6b-512d-cf9d-969f79138225","object":"chat.completion","created":1762854961,"model":"grok-code-fast-1","choices":[{"index":0,"message":{"role":"assistant","content":"The current temperature in Florence, Italy is 40°C.","refusal":null},"finish_reason":"stop"}],"usage":{"prompt_tokens":550,"completion_tokens":12,"total_tokens":702,"prompt_tokens_details":{"text_tokens":550,"audio_tokens":0,"image_tokens":0,"cached_tokens":512},"completion_tokens_details":{"reasoning_tokens":140,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"}' + body: '{"id":"4a155ca7-6685-0356-cc05-e02816ae2806","object":"chat.completion","created":1773345584,"model":"grok-code-fast-1","choices":[{"index":0,"message":{"role":"assistant","content":"The current temperature in Florence, Italy, is 40°C. If you need more details like humidity or forecast, let me know!","reasoning_content":"## Delivering weather information \n- Found the current temperature in Florence, Italy, is 40°C. \n- This matches the user''s request for weather, so it''s the key information to share. \n- Noted the tool only provided the temperature, so that''s the complete answer. \n- Ensuring the response is helpful by sticking to the given data.","refusal":null},"finish_reason":"stop"}],"usage":{"prompt_tokens":526,"completion_tokens":27,"total_tokens":625,"prompt_tokens_details":{"text_tokens":526,"audio_tokens":0,"image_tokens":0,"cached_tokens":512},"completion_tokens_details":{"reasoning_tokens":72,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":1615400},"system_fingerprint":"fp_99052e9f23"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.857338583s + duration: 5.724737541s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/tool_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/tool_streaming.yaml index fbb9aabfe9ba73c783c8d2be2988dd29ab07e3b2..9d997b67ccc4714d5ef600f07f4314359dade0ab 100644 --- a/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/tool_streaming.yaml +++ b/providertests/testdata/TestOpenAICompatibleCommon/xai-grok-code-fast/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,169 +24,65 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"The","role":"assistant"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345589,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"The","role":"assistant"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345589,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" asked"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345589,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" asked"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"What's"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Florence"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Florence"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"Italy"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"?\"\n"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" have"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" tool"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" that"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854963,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" which"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" takes"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" location"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".\n"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_53816330","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_64629939","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"ba8d6fcb-acbd-9d88-c17c-8ddef4027734","object":"chat.completion.chunk","created":1762854964,"model":"grok-code-fast-1","choices":[],"usage":{"prompt_tokens":390,"completion_tokens":26,"total_tokens":495,"prompt_tokens_details":{"text_tokens":390,"audio_tokens":0,"image_tokens":0,"cached_tokens":384},"completion_tokens_details":{"reasoning_tokens":79,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"} + data: {"id":"3adac95d-3cc4-9199-307c-5e78ba0909e5","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[],"usage":{"prompt_tokens":390,"completion_tokens":26,"total_tokens":493,"prompt_tokens_details":{"text_tokens":390,"audio_tokens":0,"image_tokens":0,"cached_tokens":384},"completion_tokens_details":{"reasoning_tokens":77,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":1633800},"system_fingerprint":"fp_99052e9f23"} data: [DONE] @@ -195,22 +91,22 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 226.151666ms + duration: 530.425625ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 813 + content_length: 876 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_64629939","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_content":"The user asked: \"What''s the weather in Florence,Italy?\"\n"},{"content":"40 C","tool_call_id":"call_64629939","role":"tool"}],"model":"grok-code-fast-1","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_53816330","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_content":"The user asked for the weather in Florence, Italy. I have a tool for that: the weather function, which takes a location.\n"},{"content":"40 C","tool_call_id":"call_53816330","role":"tool"}],"model":"grok-code-fast-1","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -219,169 +115,65 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"The","role":"assistant"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" tool"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" returned"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"40"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" C"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" which"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" means"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"40"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" degrees"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Celsius"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".\n"}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} - - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"The","role":"assistant"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" tool"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" returned"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"40"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" C"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" which"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" assume"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" means"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"40"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" degrees"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Celsius"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345590,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".\n"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"The"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345591,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"The"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" current"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345591,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" current"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" weather"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345591,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" weather"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" in"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345591,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" in"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" Florence"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345591,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" Florence"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":","}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345591,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":","}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" Italy"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345591,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" Italy"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" is"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345591,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" is"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345591,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"40"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345591,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"40"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"°C"}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345591,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"°C"}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"."}}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345591,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"."}}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345591,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"system_fingerprint":"fp_99052e9f23"} - data: {"id":"438e92b5-a71d-8052-6667-f9db15f43cbe","object":"chat.completion.chunk","created":1762854965,"model":"grok-code-fast-1","choices":[],"usage":{"prompt_tokens":508,"completion_tokens":12,"total_tokens":588,"prompt_tokens_details":{"text_tokens":508,"audio_tokens":0,"image_tokens":0,"cached_tokens":448},"completion_tokens_details":{"reasoning_tokens":68,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"} + data: {"id":"e3825e75-0f1f-f256-f561-d94920fc9f6d","object":"chat.completion.chunk","created":1773345591,"model":"grok-code-fast-1","choices":[],"usage":{"prompt_tokens":506,"completion_tokens":12,"total_tokens":556,"prompt_tokens_details":{"text_tokens":506,"audio_tokens":0,"image_tokens":0,"cached_tokens":448},"completion_tokens_details":{"reasoning_tokens":38,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":955600},"system_fingerprint":"fp_99052e9f23"} data: [DONE] @@ -390,4 +182,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 431.66775ms + duration: 540.322917ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4-7-flash/multi_tool.yaml b/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4-7-flash/multi_tool.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a4091ac5e0cd258a6e7a75c3fa48e737fcd0be85 --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4-7-flash/multi_tool.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 818 + 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.7-flash","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}]}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + 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":"I''ll add and multiply 2 and 3 at the same time as requested.","reasoning_content":"The user is asking me to add and multiply the numbers 2 and 3. They specifically said \"ALWAYS use both add and multiply at the same time\", so I should call both functions at the same time.\n\nI need to:\n1. Call add with a=2 and b=3\n2. Call multiply with a=2 and b=3\n3. Both calls should be made simultaneously","role":"assistant","tool_calls":[{"function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"id":"call_-7807255211226955507","index":0,"type":"function"},{"function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"id":"call_-7807255211226955506","index":1,"type":"function"}]}}],"created":1773349477,"id":"20260313050319b142e8fbd458451b","model":"glm-4.7-flash","object":"chat.completion","request_id":"20260313050319b142e8fbd458451b","usage":{"completion_tokens":131,"completion_tokens_details":{"reasoning_tokens":82},"prompt_tokens":279,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":410}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 1m18.00699275s +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1637 + 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 add and multiply 2 and 3 at the same time as requested.","tool_calls":[{"id":"call_-7807255211226955507","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_-7807255211226955506","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant","reasoning_content":"The user is asking me to add and multiply the numbers 2 and 3. They specifically said \"ALWAYS use both add and multiply at the same time\", so I should call both functions at the same time.\n\nI need to:\n1. Call add with a=2 and b=3\n2. Call multiply with a=2 and b=3\n3. Both calls should be made simultaneously"},{"content":"5","tool_call_id":"call_-7807255211226955507","role":"tool"},{"content":"6","tool_call_id":"call_-7807255211226955506","role":"tool"}],"model":"glm-4.7-flash","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}]}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + 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":"I''ve added and multiplied the numbers 2 and 3:\n\n**Addition:** 2 + 3 = 5 \n**Multiplication:** 2 × 3 = 6","reasoning_content":"Perfect! I got the results:\n- Addition: 2 + 3 = 5\n- Multiplication: 2 × 3 = 6\n\nBoth functions were called simultaneously as requested.","role":"assistant"}}],"created":1773349487,"id":"20260313050437098d451573e045e7","model":"glm-4.7-flash","object":"chat.completion","request_id":"20260313050437098d451573e045e7","usage":{"completion_tokens":80,"completion_tokens_details":{"reasoning_tokens":40},"prompt_tokens":418,"prompt_tokens_details":{"cached_tokens":279},"total_tokens":498}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 10.919362667s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4-7-flash/multi_tool_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4-7-flash/multi_tool_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..28745bf35c12828b76d7270133f403776524966b --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4-7-flash/multi_tool_streaming.yaml @@ -0,0 +1,387 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 855 + 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.7-flash","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + 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":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" wants"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" me"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" add"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiply"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" numbers"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" need"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" add"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiply"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" functions"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" on"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" same"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" time"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" instructed"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n\n"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"For"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" add"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"="}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" b"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"="}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\n"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"For"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiply"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"="}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" b"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"="}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\n\n"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"I"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'ll"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" call"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" functions"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" together"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"I"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"'ll"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" both"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" add"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" multiply"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" the"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" numbers"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"2"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"3"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" for"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" you"}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"."}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_4f8cb52342424eb9bbc1b20e","index":0,"type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}}]}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_0d06add371834452b339ffdb","index":1,"type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}]}}]} + + data: {"id":"20260313050448e162ecc8207a4c47","created":1773349488,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":275,"completion_tokens":112,"total_tokens":387,"prompt_tokens_details":{"cached_tokens":43},"completion_tokens_details":{"reasoning_tokens":64}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 695.910625ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1600 + 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 both add and multiply the numbers 2 and 3 for you.","tool_calls":[{"id":"call_4f8cb52342424eb9bbc1b20e","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_0d06add371834452b339ffdb","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant","reasoning_content":"The user wants me to both add and multiply the numbers 2 and 3. I need to use both the add and multiply functions on the same time, as instructed.\n\nFor add: a=2, b=3\nFor multiply: a=2, b=3\n\nI''ll call both functions together."},{"content":"5","tool_call_id":"call_4f8cb52342424eb9bbc1b20e","role":"tool"},{"content":"6","tool_call_id":"call_0d06add371834452b339ffdb","role":"tool"}],"model":"glm-4.7-flash","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + 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":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"I"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" got"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" results"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":\n"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Addition"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" +"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ="}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"5"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\n"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Multip"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"lication"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ×"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ="}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"6"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\n\n"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Now"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" can"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provide"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" complete"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" answer"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"I"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"'ve"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" calculated"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" both"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" operations"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" for"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" you"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":":\n\n"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"-"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" **"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"Add"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"ition"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":":**"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"2"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" +"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"3"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" ="}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" **"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"5"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"**\n"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"-"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" **"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"Multip"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"lication"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":":**"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"2"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" ×"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"3"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" ="}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" **"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"6"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"**"}}]} + + data: {"id":"20260313050451de4dfedf43994285","created":1773349491,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"finish_reason":"stop","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":395,"completion_tokens":79,"total_tokens":474,"prompt_tokens_details":{"cached_tokens":251},"completion_tokens_details":{"reasoning_tokens":41}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 8.434976291s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4-7-flash/simple.yaml b/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4-7-flash/simple.yaml new file mode 100644 index 0000000000000000000000000000000000000000..821c371678687f411f3bf613b8eb7f7fa09e23d8 --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4-7-flash/simple.yaml @@ -0,0 +1,33 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 163 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"glm-4.7-flash","max_tokens":4000}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + 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á! (Oh-lah)","reasoning_content":"1. **Analyze the Request:** The user wants me to say \"hi\" in Portuguese.\n\n2. **Identify the Language:** Portuguese.\n\n3. **Identify the Translation for \"Hi\":**\n * Standard/Common greeting: \"Olá\"\n * Informal/Casual greeting: \"Oi\"\n * Pronunciation guides (optional but helpful): \"oh-lah\", \"oy\"\n\n4. **Formulate the Response:**\n * Option 1: Just \"Olá\" (too brief).\n * Option 2: \"Olá!\" (better).\n * Option 3: \"Olá! Oi!\" (covers formal and informal).\n * Option 4: Include pronunciation for better UX. \"Olá! (oh-lah)\"\n\n5. **Select the Best Response:** \"Olá!\" is the standard, universally understood greeting. I will also provide the phonetic pronunciation to be helpful.\n\n * *Draft:* \"Olá! (oh-lah)\"\n\n6. **Final Polish:** Keep it simple and friendly.\n\n * Output: Olá!","role":"assistant"}}],"created":1773349367,"id":"20260313050242595b2cb031a74737","model":"glm-4.7-flash","object":"chat.completion","request_id":"20260313050242595b2cb031a74737","usage":{"completion_tokens":249,"completion_tokens_details":{"reasoning_tokens":239},"prompt_tokens":15,"prompt_tokens_details":{"cached_tokens":3},"total_tokens":264}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 6.156021875s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4-7-flash/simple_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4-7-flash/simple_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f17bef6bf6c1544400f076649eff139a4ca35e67 --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4-7-flash/simple_streaming.yaml @@ -0,0 +1,1500 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 217 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"glm-4.7-flash","max_tokens":4000,"stream_options":{"include_usage":true},"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + 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":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"1"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"An"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"alyze"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Request"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":**"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" wants"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" me"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" say"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"hi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ident"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ify"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Target"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Language"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":**"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Port"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ugu"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ês"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":").\n\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"D"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"etermine"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Translation"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Standard"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greeting"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oh"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-l"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ah"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":").\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Casual"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greeting"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oh"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ee"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":").\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Formal"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greeting"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"B"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"om"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" dia"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Good"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" day"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"/m"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"orning"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"),"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Bo"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"a"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" tarde"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Good"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" afternoon"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"),"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Bo"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"a"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" noite"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Good"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" evening"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":").\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Specific"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" regional"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" variations"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" exist"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"e"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".g"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".,"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"T"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ch"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"au"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Brazil"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ad"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"i"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ós"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portugal"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" though"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" are"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" universal"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":").\n\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"4"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Form"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ulate"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Response"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Direct"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Answer"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":*"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Provide"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" most"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" translation"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" (\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\").\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Vari"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ations"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":*"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Provide"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" informal"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" one"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" (\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\")"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" maybe"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" regional"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" variation"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" or"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" specific"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" time"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-based"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greeting"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" helpful"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"P"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ron"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"unciation"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":*"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Optional"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" but"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" helpful"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Try"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" give"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" rough"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" guide"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" or"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" just"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" keep"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" it"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" simple"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Context"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":*"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Mention"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" that"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" used"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" by"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" friends"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" more"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" formal"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"5"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Draft"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ing"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Response"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Internal"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Mon"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ologue"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"/D"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"raft"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ing"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"):"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Option"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"1"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":*"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Ol"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Too"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" short"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Option"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":*"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" most"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" way"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"."}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" But"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" also"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Better"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Option"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Pol"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ished"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"):"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"*"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" most"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greeting"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" If"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" you"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" want"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" casual"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" you"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" can"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" say"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!\"."}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" There"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" are"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" also"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greetings"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" based"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" on"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" time"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" of"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" day"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" like"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"B"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"om"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" dia"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\".\n\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"6"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Final"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Polish"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Port"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ug"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"uese"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"):"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Standard"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Cas"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ual"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")\n\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"7"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Construct"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ing"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Final"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Output"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Start"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" direct"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" translation"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\".\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Offer"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" casual"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" version"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\".\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Maybe"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" add"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"T"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ch"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"au"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"By"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"e"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" just"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" case"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" or"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" keep"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" it"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" strictly"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"hi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"."}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Let"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" stick"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" prompt"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Say"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" hi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\".\n\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Result"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"*\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" standard"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greeting"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" casual"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greeting"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")\n\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Adding"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" bit"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" of"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" context"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"*\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" formal"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"/"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"standard"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" informal"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Final"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Response"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Selection"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"*\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"This"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" most"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" direct"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" safe"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" answer"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":").\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Let"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provide"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" few"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" options"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" most"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" helpful"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Re"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"vised"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Plan"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"*\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"1"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Standard"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"/Form"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"al"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Cas"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ual"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")\n\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Output"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"*\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" or"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!\"\n\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Let"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" go"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" friendly"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" response"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Draft"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"*\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oh"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-l"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ah"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" standard"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" way"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" say"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" hi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" If"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" you"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" want"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" casual"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" you"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" can"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" say"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oh"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ee"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":").\n\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Decision"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":*"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Just"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" say"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" it"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" or"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" give"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" translation"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" prompt"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" asks"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Say"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" hi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\".\n\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Simple"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" &"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Acc"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"urate"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"*\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!\"\n\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Better"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"*\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"form"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"al"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!\""}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"cas"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ual"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")\n\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Let"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provide"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" main"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ones"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"**"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"Ol"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"á"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"!"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"**\n\n"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"(It"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" can"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" also"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" be"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" written"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" as"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" **"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"Oi"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"!"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"**"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" if"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" you"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" are"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" speaking"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" casually"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" to"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" a"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" friend"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":".)"}}]} + + data: {"id":"202603130502478edacc33fd1444be","created":1773349367,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"finish_reason":"stop","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":15,"completion_tokens":734,"total_tokens":749,"prompt_tokens_details":{"cached_tokens":14},"completion_tokens_details":{"reasoning_tokens":708}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 920.459667ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4-7-flash/tool.yaml b/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4-7-flash/tool.yaml new file mode 100644 index 0000000000000000000000000000000000000000..2d0116c500dd059ddced873558e7cf197939ac52 --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4-7-flash/tool.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 455 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"glm-4.7-flash","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + 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":"I''ll check the weather in Florence, Italy for you.","reasoning_content":"The user is asking for the weather in Florence, Italy. I have a weather function available that can get weather information for a location. The function requires a \"location\" parameter, and the user has provided \"Florence,Italy\" as the location. I should use this function to get the weather information.","role":"assistant","tool_calls":[{"function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"id":"call_-7807249954186984837","index":0,"type":"function"}]}}],"created":1773349384,"id":"202603130503035652f6eb725d4b48","model":"glm-4.7-flash","object":"chat.completion","request_id":"202603130503035652f6eb725d4b48","usage":{"completion_tokens":88,"completion_tokens_details":{"reasoning_tokens":62},"prompt_tokens":173,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":261}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 2.001652542s +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1092 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"I''ll check the weather in Florence, Italy for you.","tool_calls":[{"id":"call_-7807249954186984837","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_content":"The user is asking for the weather in Florence, Italy. I have a weather function available that can get weather information for a location. The function requires a \"location\" parameter, and the user has provided \"Florence,Italy\" as the location. I should use this function to get the weather information."},{"content":"40 C","tool_call_id":"call_-7807249954186984837","role":"tool"}],"model":"glm-4.7-flash","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + 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":"The weather in Florence, Italy is currently 40°C (104°F). That''s quite hot! Make sure to stay hydrated and seek shade if you''re out and about.","reasoning_content":"The weather function returned \"40 C\" which indicates the temperature in Florence, Italy is 40 degrees Celsius. This seems quite hot, which would be consistent with Florence being in Italy and possibly experiencing hot weather. I should provide this information to the user in a clear and helpful way.","role":"assistant"}}],"created":1773349386,"id":"20260313050305e26cddfc278c448a","model":"glm-4.7-flash","object":"chat.completion","request_id":"20260313050305e26cddfc278c448a","usage":{"completion_tokens":94,"completion_tokens_details":{"reasoning_tokens":57},"prompt_tokens":267,"prompt_tokens_details":{"cached_tokens":173},"total_tokens":361}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 2.1321585s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4-7-flash/tool_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4-7-flash/tool_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a44f17ff25a9440eb5282d53089cf849bc71817f --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4-7-flash/tool_streaming.yaml @@ -0,0 +1,537 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 509 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"glm-4.7-flash","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + 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":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" asking"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Florence"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Italy"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" have"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" access"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" that"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" can"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" get"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" location"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" requires"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"location"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameter"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" which"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" city"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" has"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" specified"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Flo"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"rence"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Italy"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" location"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" so"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" that"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" exact"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" value"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"I"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"'ll"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" get"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" the"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" current"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" weather"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" information"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" for"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" for"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" you"}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"."}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_3532c842716b4c72a7dd7498","index":0,"type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"}}]}}]} + + data: {"id":"20260313050307df155ecf3e9f4961","created":1773349387,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":173,"completion_tokens":93,"total_tokens":266,"prompt_tokens_details":{"cached_tokens":172},"completion_tokens_details":{"reasoning_tokens":65}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 727.17425ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1169 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"I''ll get the current weather information for Florence, Italy for you.","tool_calls":[{"id":"call_3532c842716b4c72a7dd7498","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_content":"The user is asking for the weather in Florence, Italy. I have access to a weather function that can get weather information for a location. The function requires a \"location\" parameter, which should be a city. The user has specified \"Florence,Italy\" as the location, so I should use that exact value."},{"content":"40 C","tool_call_id":"call_3532c842716b4c72a7dd7498","role":"tool"}],"model":"glm-4.7-flash","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + 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":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" returned"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"40"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" C"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" which"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" seems"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" like"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" it"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" could"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" temperature"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Celsius"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" However"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" seems"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" quite"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" high"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" what"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" would"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" typically"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" considered"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" normal"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Florence"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Italy"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" response"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" quite"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" brief"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" doesn"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'t"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provide"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" additional"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" details"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" like"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" conditions"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" humidity"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" wind"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" etc"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \n\n"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"I"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" report"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" what"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" returned"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" but"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" also"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" note"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" that"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" seems"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" like"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" potentially"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" unusually"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" high"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" temperature"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" or"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" perhaps"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" there"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" an"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" issue"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" data"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"The"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" current"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" temperature"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" in"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" is"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"40"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"°C"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" ("}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"104"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"°F"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":")."}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" That"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"'s"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" quite"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" warm"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"!"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" Please"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" note"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" that"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" this"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" seems"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" unusually"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" high"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" for"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" a"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" typical"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" day"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" in"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" -"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" it"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" might"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" be"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" peak"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" summer"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" heat"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" or"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" there"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" could"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" be"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" some"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" data"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" variation"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"."}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" Make"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" sure"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" to"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" stay"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" stay"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" cool"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" if"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" you"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"'re"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" planning"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" to"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" be"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" outdoors"}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"."}}]} + + data: {"id":"202603130503092f107b6666004386","created":1773349389,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"finish_reason":"stop","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":272,"completion_tokens":156,"total_tokens":428,"prompt_tokens_details":{"cached_tokens":43},"completion_tokens_details":{"reasoning_tokens":90}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 6.069745s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4.5/multi_tool.yaml b/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4.5/multi_tool.yaml deleted file mode 100644 index 34c00b2b4e7bbc6eeb2e2f80bde9875f5673134d..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4.5/multi_tool.yaml +++ /dev/null @@ -1,63 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 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.7.1 - 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":"\nI''ll add and multiply the numbers 2 and 3 for you.\n","reasoning_content":"\nThe user is asking me to add and multiply the numbers 2 and 3. I need to use both the add and multiply functions as instructed. Let me make both function calls:\n\n1. Add 2 and 3\n2. Multiply 2 and 3\n\nBoth functions require two integer parameters, and I have the values 2 and 3 to use.","role":"assistant","tool_calls":[{"function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"id":"call_-8167732570302206983","index":0,"type":"function"},{"function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"id":"call_-8167732570302206982","index":1,"type":"function"}]}}],"created":1762855007,"id":"20251111175641bcb6bdd6085647a6","model":"glm-4.5","request_id":"20251111175641bcb6bdd6085647a6","usage":{"completion_tokens":136,"prompt_tokens":286,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":422}}' - headers: - Content-Type: - - application/json; charset=UTF-8 - status: 200 OK - code: 200 - duration: 6.3064855s -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 1600 - 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":"\nI''ll add and multiply the numbers 2 and 3 for you.\n","tool_calls":[{"id":"call_-8167732570302206983","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_-8167732570302206982","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant","reasoning_content":"\nThe user is asking me to add and multiply the numbers 2 and 3. I need to use both the add and multiply functions as instructed. Let me make both function calls:\n\n1. Add 2 and 3\n2. Multiply 2 and 3\n\nBoth functions require two integer parameters, and I have the values 2 and 3 to use."},{"content":"5","tool_call_id":"call_-8167732570302206983","role":"tool"},{"content":"6","tool_call_id":"call_-8167732570302206982","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.7.1 - 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":"\nThe results are:\n- Addition: 2 + 3 = 5\n- Multiplication: 2 × 3 = 6","reasoning_content":"\nGreat! I got the results from both function calls:\n- Adding 2 and 3 gives 5\n- Multiplying 2 and 3 gives 6\n\nI should present both results to the user clearly.","role":"assistant"}}],"created":1762855010,"id":"2025111117564736d87595a2214e40","model":"glm-4.5","request_id":"2025111117564736d87595a2214e40","usage":{"completion_tokens":77,"prompt_tokens":435,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":512}}' - headers: - Content-Type: - - application/json; charset=UTF-8 - status: 200 OK - code: 200 - duration: 2.935906041s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4.5/multi_tool_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4.5/multi_tool_streaming.yaml deleted file mode 100644 index f22a80219ff436b6fb8df64fde664d73cea8245d..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4.5/multi_tool_streaming.yaml +++ /dev/null @@ -1,415 +0,0 @@ ---- -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.7.1 - 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":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" wants"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" me"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" add"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiply"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" numbers"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" need"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" add"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiply"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" functions"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" these"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameters"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n\n"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"For"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" add"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":\n"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" b"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n\n"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"For"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiply"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":\n"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" \n"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" b"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n\n"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"I"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" have"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" all"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" required"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameters"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" functions"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" so"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" can"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" proceed"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" calls"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"I"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"'ll"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" add"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" multiply"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" the"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" numbers"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"2"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"3"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" for"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" you"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":".\n"}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_4be9c6251abb4f3fbc1956bd","index":0,"type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}}]}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_29207bee5b434b86830450d2","index":1,"type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}]}}]} - - data: {"id":"20251111175650c48a4928f3614935","created":1762855010,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":282,"completion_tokens":145,"total_tokens":427,"prompt_tokens_details":{"cached_tokens":258}}} - - data: [DONE] - - headers: - Content-Type: - - text/event-stream;charset=UTF-8 - status: 200 OK - code: 200 - duration: 692.625208ms -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 1691 - host: "" - body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"content":"\nI''ll add and multiply the numbers 2 and 3 for you.\n","tool_calls":[{"id":"call_4be9c6251abb4f3fbc1956bd","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_29207bee5b434b86830450d2","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant","reasoning_content":"\nThe user wants me to both add and multiply the numbers 2 and 3. I need to use both the add and multiply functions with these parameters.\n\nFor the add function:\n- a: 2\n- b: 3\n\nFor the multiply function:\n- a: 2 \n- b: 3\n\nI have all the required parameters for both functions, so I can proceed with the function calls."},{"content":"5","tool_call_id":"call_4be9c6251abb4f3fbc1956bd","role":"tool"},{"content":"6","tool_call_id":"call_29207bee5b434b86830450d2","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.7.1 - 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":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" results"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" are"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":\n"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Adding"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" gives"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"5"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Multip"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"lying"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" gives"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"6"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n\n"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"I"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" present"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" results"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" clearly"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"The"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" results"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" are"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":":\n"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"-"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" **"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"Add"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"ition"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"**:"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"2"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" +"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"3"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" ="}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"5"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"-"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" **"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"Multip"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"lication"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"**:"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"2"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" ×"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"3"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" ="}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"6"}}]} - - data: {"id":"2025111117565556744eb818464fc9","created":1762855015,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"stop","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":440,"completion_tokens":73,"total_tokens":513,"prompt_tokens_details":{"cached_tokens":258}}} - - data: [DONE] - - headers: - Content-Type: - - text/event-stream;charset=UTF-8 - status: 200 OK - code: 200 - duration: 728.965833ms diff --git a/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4.5/simple.yaml b/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4.5/simple.yaml deleted file mode 100644 index 1539c15e45c07c823bfe7e07aec91b6a4a42a624..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4.5/simple.yaml +++ /dev/null @@ -1,33 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 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.7.1 - 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":"\nThe user is asking me to say \"hi\" in Portuguese. I''ll provide the Portuguese greeting for \"hi\" or \"hello\".\n\nIn Portuguese, \"hi\" or \"hello\" is typically translated as \"Olá\". This is the common greeting used in both Brazilian and European Portuguese.\n\nI''ll respond with this greeting.","role":"assistant"}}],"created":1762854981,"id":"2025111117561942405e9f6eb547c7","model":"glm-4.5","request_id":"2025111117561942405e9f6eb547c7","usage":{"completion_tokens":72,"prompt_tokens":16,"prompt_tokens_details":{"cached_tokens":7},"total_tokens":88}}' - headers: - Content-Type: - - application/json; charset=UTF-8 - status: 200 OK - code: 200 - duration: 4.974643125s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4.5/simple_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4.5/simple_streaming.yaml deleted file mode 100644 index 5f8b18602279ce789b1bfa8ed86363d568babf2c..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4.5/simple_streaming.yaml +++ /dev/null @@ -1,320 +0,0 @@ ---- -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.7.1 - 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":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" person"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" asking"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" me"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" say"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"hi"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" In"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"hi"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" or"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"hello"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" typically"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" translated"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" or"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"."}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Both"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" are"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greetings"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-speaking"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" countries"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n\n"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" bit"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" more"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" formal"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" while"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" more"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" informal"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" casual"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Since"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" request"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" just"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" say"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"hi"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\","}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" either"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" would"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" appropriate"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'ll"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provide"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" options"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" brief"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" explanation"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" of"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" their"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" usage"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"Hi"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" in"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" Portuguese"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" is"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" \""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"Ol"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"á"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" or"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" \""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"Oi"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\"."}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" \n\n"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"Ol"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"á"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" is"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" a"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" standard"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" greeting"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" that"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" can"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" be"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" used"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" in"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" both"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" formal"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" informal"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" situations"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" while"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" \""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"Oi"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\""}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" is"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" more"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" casual"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" commonly"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" used"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" among"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" friends"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" in"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" informal"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" settings"}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"."}}]} - - data: {"id":"20251111175621ea00b15bd30046c2","created":1762854981,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"stop","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":16,"completion_tokens":145,"total_tokens":161,"prompt_tokens_details":{"cached_tokens":6}}} - - data: [DONE] - - headers: - Content-Type: - - text/event-stream;charset=UTF-8 - status: 200 OK - code: 200 - duration: 3.570999666s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4.5/tool.yaml b/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4.5/tool.yaml deleted file mode 100644 index b1869d5d59ec70bb45050037d58145e3da779b97..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4.5/tool.yaml +++ /dev/null @@ -1,63 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 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.7.1 - 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","reasoning_content":"\nThe 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. I should use this exact value for the location parameter.","role":"assistant","tool_calls":[{"function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"id":"call_-8170221349237369383","index":0,"type":"function"}]}}],"created":1762854991,"id":"20251111175629f43492c8ddc74b40","model":"glm-4.5","request_id":"20251111175629f43492c8ddc74b40","usage":{"completion_tokens":70,"prompt_tokens":179,"prompt_tokens_details":{"cached_tokens":44},"total_tokens":249}}' - headers: - Content-Type: - - application/json; charset=UTF-8 - status: 200 OK - code: 200 - duration: 2.204044625s -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 973 - host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"\n","tool_calls":[{"id":"call_-8170221349237369383","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_content":"\nThe 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. I should use this exact value for the location parameter."},{"content":"40 C","tool_call_id":"call_-8170221349237369383","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.7.1 - 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":"\nThe weather in Florence, Italy is currently 40°C (104°F). That''s quite hot! Make sure to stay hydrated and seek shade if you''re visiting or in the area.","reasoning_content":"\nThe weather function returned that the temperature in Florence, Italy is 40°C. This is quite hot! I should provide this information to the user in a helpful way.","role":"assistant"}}],"created":1762854995,"id":"20251111175631a3e10345eaf44b75","model":"glm-4.5","request_id":"20251111175631a3e10345eaf44b75","usage":{"completion_tokens":76,"prompt_tokens":257,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":333}}' - headers: - Content-Type: - - application/json; charset=UTF-8 - status: 200 OK - code: 200 - duration: 4.128735209s diff --git a/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4.5/tool_streaming.yaml b/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4.5/tool_streaming.yaml deleted file mode 100644 index dd652f3c6200fbf53d12a1414d1418dc9c017f51..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestOpenAICompatibleCommon/zai-glm-4.5/tool_streaming.yaml +++ /dev/null @@ -1,359 +0,0 @@ ---- -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.7.1 - 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":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" asking"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Florence"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Italy"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" need"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" location"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameter"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" specified"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Flo"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"rence"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Italy"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" so"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" that"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" exact"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" string"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" location"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameter"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"I"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"'ll"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" check"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" the"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" weather"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" in"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" for"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" you"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":".\n"}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_6bc2e48a34f34e80995b40d2","index":0,"type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"}}]}}]} - - data: {"id":"202511111756356bb63041b022431d","created":1762854995,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":179,"completion_tokens":77,"total_tokens":256,"prompt_tokens_details":{"cached_tokens":178}}} - - data: [DONE] - - headers: - Content-Type: - - text/event-stream;charset=UTF-8 - status: 200 OK - code: 200 - duration: 1.132874458s -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 1064 - host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"\nI''ll check the weather in Florence, Italy for you.\n","tool_calls":[{"id":"call_6bc2e48a34f34e80995b40d2","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_content":"\nThe user is asking for the weather in Florence, Italy. I need to use the weather function with the location parameter. The user specified \"Florence,Italy\" so I should use that exact string for the location parameter."},{"content":"40 C","tool_call_id":"call_6bc2e48a34f34e80995b40d2","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.7.1 - 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":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" returned"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" temperature"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" of"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"40"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"°C"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Florence"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Italy"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" quite"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" hot"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provide"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" clear"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" helpful"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" way"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"The"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" current"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" weather"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" in"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" is"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"40"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"°C"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" ("}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"104"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"°F"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":")."}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" That"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"'s"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" quite"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" hot"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"!"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" It"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"'s"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" a"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" very"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" warm"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" day"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" there"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" so"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" if"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" you"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"'re"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" planning"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" to"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" visit"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" make"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" sure"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" to"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" stay"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" protect"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" yourself"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" from"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" the"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" sun"}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"."}}]} - - data: {"id":"2025111117563873287e56fd174f98","created":1762854998,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"stop","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":264,"completion_tokens":88,"total_tokens":352,"prompt_tokens_details":{"cached_tokens":194}}} - - data: [DONE] - - headers: - Content-Type: - - text/event-stream;charset=UTF-8 - status: 200 OK - code: 200 - duration: 630.944542ms diff --git a/providertests/testdata/TestOpenAICompatibleThinking/xai-grok-3-mini/thinking-streaming.yaml b/providertests/testdata/TestOpenAICompatibleThinking/xai-grok-3-mini/thinking-streaming.yaml index c0275256bbdfd1b7a0c0676a936117086ae22f17..b56c5db5be35354d5846ba082430d2358c7a9244 100644 --- a/providertests/testdata/TestOpenAICompatibleThinking/xai-grok-3-mini/thinking-streaming.yaml +++ b/providertests/testdata/TestOpenAICompatibleThinking/xai-grok-3-mini/thinking-streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,557 +24,637 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"First","role":"assistant"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"First","role":"assistant"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" asking"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" asking"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Florence"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" have"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" have"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" an"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" an"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" available"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" available"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" called"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" called"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"weather"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" that"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" that"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" can"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" can"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" get"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" get"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" information"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" information"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" location"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" location"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"The"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"The"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" description"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" description"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Get"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Get"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" information"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" information"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" location"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" location"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\"."}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\"."}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" The"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" The"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" parameters"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" parameters"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" require"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" require"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"location"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"location"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" which"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" which"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" string"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" string"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" describing"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" describing"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" city"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345705,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" city"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"In"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"In"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" this"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" this"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" query"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" query"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" has"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" has"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" provided"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" provided"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Florence"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\"."}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" This"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" which"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" clearly"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" clearly"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" specifies"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" specifies"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" city"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" city"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" country"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" country"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" so"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" This"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" location"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" be"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" sufficient"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" infer"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"able"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" as"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"location"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" parameter"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\"."}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"I"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" need"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" don't"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" need"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" ask"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" if"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" more"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" all"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" clarification"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" required"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" parameters"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"The"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" are"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" provided"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855027,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" or"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" obviously"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" be"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" infer"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"able"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" JSON"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" format"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Here"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" within"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" <"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" location"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_call"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":">"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Florence"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" tags"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" The"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" format"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" so"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" can"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" <"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" use"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" that"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_call"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" directly"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":">{\""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"action"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"The"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\":"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_name"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" be"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" JSON"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"action"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" format"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_input"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" within"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\":"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" <"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" {\""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"parameter"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_call"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\":"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":">"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"}}\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" format"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"For"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" this"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" <"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" action"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_call"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":">{\""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"action"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\":"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_name"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" action"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_input"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"action"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" have"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_input"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\":"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" parameter"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" {\""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"parameter"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"location"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\":"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" with"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"argument"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" value"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"}}\n\n"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"So"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"I"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" this"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" not"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" provide"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" any"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" action"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" additional"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" outside"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"weather"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" of"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" action"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" if"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_input"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I'm"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" deciding"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" have"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"location"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" with"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" as"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" value"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" per"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Florence"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" instructions"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" The"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\".\n\n"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" instructions"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"I"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" say"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" not"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" make"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Keep"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" my"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" your"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" verbose"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Keep"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" clear"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" it"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":";"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" clear"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" please"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" do"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" concise"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" not"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" make"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Since"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" your"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I'm"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" calling"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" verbose"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"!\""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" So"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" don't"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" need"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" just"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" make"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" add"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" extra"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" text"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" unless"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" necessary"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"This"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" seems"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" The"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" like"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" instruction"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" says"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" direct"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" match"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" use"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" <"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" available"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_call"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":">"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" tag"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855028,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" all"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" only"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" required"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345706,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" when"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" parameters"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" deciding"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" are"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" provided"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" So"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" this"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" case"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" that's"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Final"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" decision"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" next"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" step"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Trigger"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"After"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" calling"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" with"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" location"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" multi"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"-turn"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" conversation"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\"."}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_91894226","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" might"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" need"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"b0c242a8-b68d-f435-3f59-b35f8a09195a","object":"chat.completion.chunk","created":1762855029,"model":"grok-3-mini-high","choices":[],"usage":{"prompt_tokens":288,"completion_tokens":27,"total_tokens":588,"prompt_tokens_details":{"text_tokens":288,"audio_tokens":0,"image_tokens":0,"cached_tokens":287},"completion_tokens_details":{"reasoning_tokens":273,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" handle"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" but"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" now"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" immediate"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" action"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Finally"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" confirm"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" No"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" missing"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" parameters"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" matches"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" query"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" so"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" it"}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_45048949","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_25ea88a038"} + + data: {"id":"db92f377-ef95-e82a-7ef6-460d52430623","object":"chat.completion.chunk","created":1773345707,"model":"grok-3-mini-high","choices":[],"usage":{"prompt_tokens":288,"completion_tokens":27,"total_tokens":628,"prompt_tokens_details":{"text_tokens":288,"audio_tokens":0,"image_tokens":0,"cached_tokens":287},"completion_tokens_details":{"reasoning_tokens":313,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":1918250},"system_fingerprint":"fp_25ea88a038"} data: [DONE] @@ -583,22 +663,22 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 196.291541ms + duration: 806.962792ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2177 + content_length: 2341 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_91894226","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","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.\n\nThe function description is: \"Get weather information for a location\". The parameters require a \"location\" which is a string describing the city.\n\nIn this query, the user has provided \"Florence, Italy\". This clearly specifies the city and country, so the location is inferable as \"Florence, Italy\". I don''t need to ask for more clarification.\n\nThe function call should be in JSON format within \u003cfunction_call\u003e\u003c/function_call\u003e tags. The format is: \u003cfunction_call\u003e{\"action\": \"function_name\", \"action_input\": {\"parameter\": \"argument\"}}\u003c/function_call\u003e\n\nFor this, the action is \"weather\", and the action_input should have the parameter \"location\" with the value \"Florence, Italy\".\n\nI should not provide any additional response outside of the function call if I''m deciding to call a function, as per the instructions. The instructions say: \"Keep your response to user clear; please do not make your response verbose!\" So, I should just make the function call.\n\nThis seems like a direct match for the available function, and all required parameters are provided. So, I should call the function.\n\nFinal decision: Trigger the function call for weather with location \"Florence, Italy\"."},{"content":"40 C","tool_call_id":"call_91894226","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}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"call_45048949","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","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.\n\nThe function description is: \"Get weather information for a location\". The parameters require a \"location\" which is a string describing the city.\n\nIn this query, the user has provided \"Florence, Italy\", which clearly specifies the city and country. This should be sufficient for the \"location\" parameter.\n\nI need to call the function if all required parameters are provided or obviously inferable. Here, the location is given as \"Florence, Italy\", so I can use that directly.\n\nThe function call should be in JSON format within \u003cfunction_call\u003e\u003c/function_call\u003e tags. The format is: \u003cfunction_call\u003e{\"action\": \"function_name\", \"action_input\": {\"parameter\": \"argument\"}}\u003c/function_call\u003e\n\nSo, for this, the action is \"weather\", and the action_input should have \"location\" with the value \"Florence, Italy\".\n\nI should not make my response verbose. Keep it clear and concise. Since I''m calling a function, I don''t need to add extra text unless necessary. The instruction says to use the \u003cfunction_call\u003e tag only when deciding to call a function, and in this case, that''s the next step.\n\nAfter calling the function, in a multi-turn conversation, I might need to handle the response, but for now, the immediate action is to call the weather function.\n\nFinally, confirm: No missing parameters, function matches the query, so I should call it."},{"content":"40 C","tool_call_id":"call_45048949","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.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -607,617 +687,573 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"First","role":"assistant"}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" asked"}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"What's"}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"?\""}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" This"}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" directly"}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" matches"}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" available"}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} - - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"First","role":"assistant"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" which"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" requires"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" asked"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"location"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"What's"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" parameter"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"I"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" already"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Florence"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" called"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"?\""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" This"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" my"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" directly"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" previous"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" matches"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" available"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" <"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_call"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"weather"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":">{\""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"action"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" which"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\":"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" retrieves"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" information"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"action"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" location"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_input"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\":"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"The"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" {\""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"location"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" requires"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\":"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"location"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" parameter"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"}}\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" string"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Now"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" The"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" provided"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" has"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" been"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Florence"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" called"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I'm"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" which"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" given"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" clear"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" complete"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" No"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" missing"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" parameters"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"40"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" C"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"I"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\"."}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" This"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" seems"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" be"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" using"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" output"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" specified"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" from"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" JSON"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" format"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" within"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" <"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"My"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_call"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" role"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":">"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" tags"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" be"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" The"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" format"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" helpful"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" assistant"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" <"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" After"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_call"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":">{\""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"action"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\":"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" need"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_name"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" handle"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"action"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_input"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" provide"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\":"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" it"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" {\""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"parameter"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\":"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855030,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"argument"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" clear"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"}}\n\n"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"verbose"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"In"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" way"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" this"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" case"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"The"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" action"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"weather"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"40"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" C"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" action"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_input"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" which"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" has"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" assume"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"location"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" means"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" with"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"40"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" value"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" degrees"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345708,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Celsius"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Florence"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\".\n\n"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" present"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"After"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" this"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" calling"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" information"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" clearly"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Since"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user's"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" from"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" query"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" fully"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" addressed"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" given"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" by"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" as"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" this"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"40"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" don't"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" C"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" need"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\"."}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" This"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" seems"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" any"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" more"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" be"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" functions"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" result"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" of"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" just"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" respond"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" with"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Now"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" information"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" as"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Response"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" assistant"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" guidelines"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"-"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" need"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Keep"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" it"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" respond"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" clear"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" not"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" verbose"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" The"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"-"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" initial"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" If"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" instruction"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I'm"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" says"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" not"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" calling"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Keep"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" your"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" don't"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" use"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" clear"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":";"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" <"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" please"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" do"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"_call"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" not"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":">"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" make"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" tags"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" your"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"-"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" verbose"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" In"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"!\""}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" this"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" So"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" case"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I'm"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" responding"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" be"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" concise"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Since"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" with"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" result"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" has"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"So"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" been"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" made"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" say"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" have"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" something"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" like"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" result"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"The"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" present"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" this"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" information"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" clearly"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"40"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" degrees"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" The"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Celsius"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user's"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\"\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" request"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"The"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" now"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" fulfilled"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" with"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" just"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" this"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"40"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" information"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855031,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" C"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"\","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"My"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" which"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" informal"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" not"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" include"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" another"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" make"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" call"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" it"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" unless"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" more"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"-friendly"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" is"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" needed"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Finally"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" but"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" structure"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" here"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" my"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" it's"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" complete"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":".\n\n"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Since"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"Final"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" I'm"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" not"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" calling"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" Inform"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" another"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" of"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" my"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" response"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" should"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" be"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" a"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" plain"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" straightforward"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" text"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":" way"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":"The"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":"The"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":" weather"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":" weather"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":" in"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":" in"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":" Florence"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":" Florence"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":","}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":","}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":" Italy"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":" Italy"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":" is"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":" is"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":"40"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":"40"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":"°C"}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":"°C"}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":"."}}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{"content":"."}}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"system_fingerprint":"fp_25ea88a038"} - data: {"id":"4ca6b812-27df-6be3-8428-01d957f2a01c","object":"chat.completion.chunk","created":1762855032,"model":"grok-3-mini-high","choices":[],"usage":{"prompt_tokens":331,"completion_tokens":11,"total_tokens":635,"prompt_tokens_details":{"text_tokens":331,"audio_tokens":0,"image_tokens":0,"cached_tokens":330},"completion_tokens_details":{"reasoning_tokens":293,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_a6fbae1a97"} + data: {"id":"6e2fc65c-7dd3-9ac7-37ff-acb9b2116086","object":"chat.completion.chunk","created":1773345709,"model":"grok-3-mini-high","choices":[],"usage":{"prompt_tokens":331,"completion_tokens":11,"total_tokens":613,"prompt_tokens_details":{"text_tokens":331,"audio_tokens":0,"image_tokens":0,"cached_tokens":330},"completion_tokens_details":{"reasoning_tokens":271,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":1660500},"system_fingerprint":"fp_25ea88a038"} data: [DONE] @@ -1226,4 +1262,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 170.574ms + duration: 1.036979667s diff --git a/providertests/testdata/TestOpenAICompatibleThinking/xai-grok-3-mini/thinking.yaml b/providertests/testdata/TestOpenAICompatibleThinking/xai-grok-3-mini/thinking.yaml index de62efd6e6b1b7155cce9d7b2c1b0f76ce9674af..970e68992b2b716380c8db383762a4eb05dd70a2 100644 --- a/providertests/testdata/TestOpenAICompatibleThinking/xai-grok-3-mini/thinking.yaml +++ b/providertests/testdata/TestOpenAICompatibleThinking/xai-grok-3-mini/thinking.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -24,28 +24,28 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"4d46c468-07c9-43d6-ec35-526a4c35aaa2","object":"chat.completion","created":1762855019,"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 a string describing the city.\n\nThe location provided in the query is \"Florence, Italy\". This seems clear and matches the required parameter. I can infer that \"Florence, Italy\" is the city name, so I don''t need more information.\n\nThe function description says the location is \"the city\", so passing \"Florence, Italy\" should work as it specifies the city and country, which might help in accuracy.\n\nI should call the function if it can address the query. Here, it directly can, so I need to use the tag in JSON format.\n\nThe format should be: {\"action\": \"weather\", \"action_input\": {\"location\": \"Florence, Italy\"}}\n\nAfter calling the function, I might need to handle the response in subsequent turns, but for now, this is the logical next step.\n\nMy response should not be verbose; keep it clear. Since I''m calling a function, I shouldn''t add extra text unless necessary. The instruction says to use the tag only when deciding to call a function, and not to add other text if not needed. But in this case, since the response is just the function call, I can output that directly.\n\nFinally, confirm: no missing parameters, location is provided. Function matches the query.","tool_calls":[{"id":"call_67567016","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":288,"completion_tokens":27,"total_tokens":621,"prompt_tokens_details":{"text_tokens":288,"audio_tokens":0,"image_tokens":0,"cached_tokens":5},"completion_tokens_details":{"reasoning_tokens":306,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_a6fbae1a97"}' + body: '{"id":"b9a2c6b4-3fc5-d632-efd0-7e422c4946f7","object":"chat.completion","created":1773345699,"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.\n\nThe function description is: \"Get weather information for a location\". The parameters require a \"location\" which is a string describing the city.\n\nIn this query, the user has provided \"Florence, Italy\", which clearly specifies the city and country. This should be sufficient as the location parameter.\n\nAll required parameters are provided: the location is \"Florence, Italy\". I don''t need to infer anything else; it''s straightforward.\n\nAccording to the instructions, if the user''s query can be addressed using an available function and all required parameters are provided, I should trigger a function call in the specified JSON format within tags.\n\nThe format should be: {\"action\": \"function_name\", \"action_input\": {\"parameter\": \"argument\"}}\n\nFor this case, the action is \"weather\", and the action_input should have the parameter \"location\" with the argument \"Florence, Italy\".\n\nI should not make my response verbose; keep it clear. Since I''m calling a function, I don''t need to add extra text unless necessary. The instructions say to use the tag only when deciding to call a function, and in this case, that''s the logical next step.\n\nAfter calling the function, in a multi-turn conversation, I might need to handle the response, but for now, the immediate action is to call the function.\n\nFinally, confirm: no missing parameters, function matches, so I should call it.\n\nResponse should be: {\"action\": \"weather\", \"action_input\": {\"location\": \"Florence, Italy\"}}","tool_calls":[{"id":"call_27480597","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":288,"completion_tokens":27,"total_tokens":665,"prompt_tokens_details":{"text_tokens":288,"audio_tokens":0,"image_tokens":0,"cached_tokens":7},"completion_tokens_details":{"reasoning_tokens":350,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":2733250},"system_fingerprint":"fp_25ea88a038"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 3.652396875s + duration: 2.843427125s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2222 + content_length: 2536 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_67567016","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","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 a string describing the city.\n\nThe location provided in the query is \"Florence, Italy\". This seems clear and matches the required parameter. I can infer that \"Florence, Italy\" is the city name, so I don''t need more information.\n\nThe function description says the location is \"the city\", so passing \"Florence, Italy\" should work as it specifies the city and country, which might help in accuracy.\n\nI should call the function if it can address the query. Here, it directly can, so I need to use the \u003cfunction_call\u003e tag in JSON format.\n\nThe format should be: \u003cfunction_call\u003e{\"action\": \"weather\", \"action_input\": {\"location\": \"Florence, Italy\"}}\u003c/function_call\u003e\n\nAfter calling the function, I might need to handle the response in subsequent turns, but for now, this is the logical next step.\n\nMy response should not be verbose; keep it clear. Since I''m calling a function, I shouldn''t add extra text unless necessary. The instruction says to use the \u003cfunction_call\u003e tag only when deciding to call a function, and not to add other text if not needed. But in this case, since the response is just the function call, I can output that directly.\n\nFinally, confirm: no missing parameters, location is provided. Function matches the query."},{"content":"40 C","tool_call_id":"call_67567016","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"}]}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"call_27480597","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","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.\n\nThe function description is: \"Get weather information for a location\". The parameters require a \"location\" which is a string describing the city.\n\nIn this query, the user has provided \"Florence, Italy\", which clearly specifies the city and country. This should be sufficient as the location parameter.\n\nAll required parameters are provided: the location is \"Florence, Italy\". I don''t need to infer anything else; it''s straightforward.\n\nAccording to the instructions, if the user''s query can be addressed using an available function and all required parameters are provided, I should trigger a function call in the specified JSON format within \u003cfunction_call\u003e tags.\n\nThe format should be: \u003cfunction_call\u003e{\"action\": \"function_name\", \"action_input\": {\"parameter\": \"argument\"}}\u003c/function_call\u003e\n\nFor this case, the action is \"weather\", and the action_input should have the parameter \"location\" with the argument \"Florence, Italy\".\n\nI should not make my response verbose; keep it clear. Since I''m calling a function, I don''t need to add extra text unless necessary. The instructions say to use the \u003cfunction_call\u003e tag only when deciding to call a function, and in this case, that''s the logical next step.\n\nAfter calling the function, in a multi-turn conversation, I might need to handle the response, but for now, the immediate action is to call the function.\n\nFinally, confirm: no missing parameters, function matches, so I should call it.\n\nResponse should be: \u003cfunction_call\u003e{\"action\": \"weather\", \"action_input\": {\"location\": \"Florence, Italy\"}}\u003c/function_call\u003e"},{"content":"40 C","tool_call_id":"call_27480597","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.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.x.ai/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"8f7e3075-4206-df84-6f7a-689e2b8deb0f","object":"chat.completion","created":1762855023,"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?\" This directly matches the available function \"weather\", which retrieves weather information for a location.\n\nThe function call I made was: {\"action\": \"weather\", \"action_input\": {\"location\": \"Florence, Italy\"}}. That was correct because the location is provided and inferable.\n\nNow, the response from the function is: \"40 C\". This seems to be the weather information, likely meaning 40 degrees Celsius.\n\nMy role is to be a helpful assistant. After calling a function, I need to provide a clear response to the user based on the function''s output. The instructions say: \"Keep your response to user clear; please do not make your response verbose!\" So, I should be concise.\n\nThe conversation is multi-turn, but in this case, the function call has been executed, and I have the result. I should now present this information to the user.\n\nThe function output is just \"40 C\", which is minimal. I can infer this means the temperature is 40 degrees Celsius, but I should confirm if there''s more to it. However, the function description is \"Get weather information\", and it returned \"40 C\", so I''ll assume that''s the key information provided.\n\nI need to decide if I should call another function or respond. The user''s request is fulfilled with this weather information, so no need for further function calls.\n\nResponse structure: I should not use tags unless I''m calling a function. Now, I''m responding with the result.\n\nClear and concise response: \"The weather in Florence, Italy is 40 degrees Celsius.\"\n\nTo make it even better, I could say: \"The current weather in Florence, Italy is 40°C.\"\n\nBut the function output is \"40 C\", so I''ll stick close to that.\n\nFinally, ensure I''m not verbose.","refusal":null},"finish_reason":"stop"}],"usage":{"prompt_tokens":331,"completion_tokens":11,"total_tokens":722,"prompt_tokens_details":{"text_tokens":331,"audio_tokens":0,"image_tokens":0,"cached_tokens":283},"completion_tokens_details":{"reasoning_tokens":380,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_a6fbae1a97"}' + body: '{"id":"57d26e7b-64e4-50a6-4399-3f076d348451","object":"chat.completion","created":1773345702,"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?\" This directly matches the available function \"weather\" which gets weather information for a location.\n\nThe function requires a \"location\" parameter, which is provided in the query as \"Florence, Italy\". It''s clear and inferable, so I can call this function.\n\nIn my previous response, I already made a function call: {\"action\": \"weather\", \"action_input\": {\"location\": \"Florence, Italy\"}}. Now, I''m receiving a response from that function call, which is \"40 C\".\n\nThe system prompt says: \"In multi-turn conversations, continue calling relevant functions to advance the user''s request until either the user''s request is fully fulfilled or you need more information to call a function.\"\n\nThe user''s request was to get the weather, and I''ve now received the weather information from the function call. So, the request is fulfilled. I don''t need to call another function.\n\nI should respond to the user with the information I have. The prompt also says: \"Keep your response to user clear; please do not make your response verbose!\" So, I need to be concise.\n\nMy response should include the weather information: \"40 C\". But I should make it user-friendly. Perhaps say something like: \"The weather in Florence, Italy is 40 degrees Celsius.\"\n\nThe function response is \"40 C\", which I assume means 40 degrees Celsius. I should confirm that, but since it''s given, I''ll use it.\n\nFinally, I should not include any tags in this response because no further function calls are needed. The request is complete.","refusal":null},"finish_reason":"stop"}],"usage":{"prompt_tokens":331,"completion_tokens":11,"total_tokens":674,"prompt_tokens_details":{"text_tokens":331,"audio_tokens":0,"image_tokens":0,"cached_tokens":283},"completion_tokens_details":{"reasoning_tokens":332,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0,"cost_in_usd_ticks":2071250},"system_fingerprint":"fp_25ea88a038"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 3.91244875s + duration: 2.89131475s diff --git a/providertests/testdata/TestOpenAICompatibleThinking/zai-glm-4-7-flash/thinking-streaming.yaml b/providertests/testdata/TestOpenAICompatibleThinking/zai-glm-4-7-flash/thinking-streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..aa96a2e2d31e9e22863aa8b5c4f8c6582afcb477 --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleThinking/zai-glm-4-7-flash/thinking-streaming.yaml @@ -0,0 +1,359 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 518 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"glm-4.7-flash","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: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + 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":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" asking"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" about"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Florence"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Italy"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" have"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" available"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" that"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" can"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" get"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" location"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" required"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameter"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"location"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" which"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" city"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" name"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" specified"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Flo"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"rence"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Italy"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" so"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Flo"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"rence"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" location"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameter"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"I"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"'ll"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" check"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" the"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" weather"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" in"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" for"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" you"}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"."}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_330c741a86144cb7a385bc6d","index":0,"type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence\"}"}}]}}]} + + data: {"id":"202603130505331e1698c2b13a4e98","created":1773349533,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":173,"completion_tokens":87,"total_tokens":260,"prompt_tokens_details":{"cached_tokens":172},"completion_tokens_details":{"reasoning_tokens":63}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 714.950667ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1153 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"content":"I''ll check the weather in Florence, Italy for you.","tool_calls":[{"id":"call_330c741a86144cb7a385bc6d","function":{"arguments":"{\"location\":\"Florence\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_content":"The user is asking about the weather in Florence, Italy. I have a weather function available that can get weather information for a location. The required parameter is \"location\" which should be a city name. The user specified \"Florence, Italy\" so I should use \"Florence\" as the location parameter."},{"content":"40 C","tool_call_id":"call_330c741a86144cb7a385bc6d","role":"tool"}],"model":"glm-4.7-flash","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: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + 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":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" returned"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"40"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" C"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" which"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" appears"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" current"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" temperature"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Florence"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" seems"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" quite"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" hot"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" at"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" "}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"40"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" degrees"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Celsius"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provide"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" though"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" note"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" that"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" might"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" current"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" temperature"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"The"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" current"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" weather"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" in"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" is"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"40"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"°C"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" ("}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"104"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"°F"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":")."}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" That"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"'s"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" quite"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":" hot"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"delta":{"role":"assistant","content":"!"}}]} + + data: {"id":"2026031305053599aa59710f974b49","created":1773349535,"object":"chat.completion.chunk","model":"glm-4.7-flash","choices":[{"index":0,"finish_reason":"stop","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":266,"completion_tokens":71,"total_tokens":337,"prompt_tokens_details":{"cached_tokens":177},"completion_tokens_details":{"reasoning_tokens":49}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 871.668791ms diff --git a/providertests/testdata/TestOpenAICompatibleThinking/zai-glm-4-7-flash/thinking.yaml b/providertests/testdata/TestOpenAICompatibleThinking/zai-glm-4-7-flash/thinking.yaml new file mode 100644 index 0000000000000000000000000000000000000000..55a0061491e87549238565867cfc064fee3d76fa --- /dev/null +++ b/providertests/testdata/TestOpenAICompatibleThinking/zai-glm-4-7-flash/thinking.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 464 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"glm-4.7-flash","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: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + 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":"I''ll get the current weather information for Florence, Italy for you.","reasoning_content":"The user is asking for the weather in Florence, Italy. I have access to a weather function that can get weather information for a location. The function requires a \"location\" parameter, and the user has specified \"Florence, Italy\". I should use this exact location string to get the weather information.","role":"assistant","tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"id":"call_-7807252050131023498","index":0,"type":"function"}]}}],"created":1773349530,"id":"20260313050528067228b617b540a4","model":"glm-4.7-flash","object":"chat.completion","request_id":"20260313050528067228b617b540a4","usage":{"completion_tokens":89,"completion_tokens_details":{"reasoning_tokens":61},"prompt_tokens":173,"prompt_tokens_details":{"cached_tokens":169},"total_tokens":262}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 1.818105208s +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1120 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"content":"I''ll get the current weather information for Florence, Italy for you.","tool_calls":[{"id":"call_-7807252050131023498","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_content":"The user is asking for the weather in Florence, Italy. I have access to a weather function that can get weather information for a location. The function requires a \"location\" parameter, and the user has specified \"Florence, Italy\". I should use this exact location string to get the weather information."},{"content":"40 C","tool_call_id":"call_-7807252050131023498","role":"tool"}],"model":"glm-4.7-flash","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: + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) + 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":"The current temperature in Florence, Italy is 40°C (about 104°F). That''s quite hot! Make sure to stay hydrated and seek shade if you''re out and about.","reasoning_content":"The weather function returned a temperature of 40°C for Florence, Italy. This seems quite high - 40°C would be very hot (around 104°F). I should present this information to the user, but it might be helpful to note that this appears to be just the temperature value without additional details like humidity, conditions, etc.","role":"assistant"}}],"created":1773349533,"id":"20260313050530749b24d800d742e4","model":"glm-4.7-flash","object":"chat.completion","request_id":"20260313050530749b24d800d742e4","usage":{"completion_tokens":107,"completion_tokens_details":{"reasoning_tokens":68},"prompt_tokens":268,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":375}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 3.070280334s diff --git a/providertests/testdata/TestOpenAICompatibleThinking/zai-glm-4.5/thinking-streaming.yaml b/providertests/testdata/TestOpenAICompatibleThinking/zai-glm-4.5/thinking-streaming.yaml deleted file mode 100644 index 44254cedf11ce57bcea59b61b6d18e0d4467a18c..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestOpenAICompatibleThinking/zai-glm-4.5/thinking-streaming.yaml +++ /dev/null @@ -1,389 +0,0 @@ ---- -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.7.1 - 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":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" asking"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Florence"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Italy"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" have"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" access"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" that"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" takes"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" location"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameter"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" has"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" specified"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Flo"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"rence"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Italy"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" location"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" so"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" have"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" all"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" required"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameters"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" make"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" call"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"I"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"'ll"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" check"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" the"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" weather"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" in"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" for"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" you"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":".\n"}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_c31d9089eb114d168d3264ff","index":0,"type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"}}]}}]} - - data: {"id":"202511111757251676844c980648b3","created":1762855045,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":179,"completion_tokens":84,"total_tokens":263,"prompt_tokens_details":{"cached_tokens":178}}} - - data: [DONE] - - headers: - Content-Type: - - text/event-stream;charset=UTF-8 - status: 200 OK - code: 200 - duration: 1.438553125s -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 1113 - host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"content":"\nI''ll check the weather in Florence, Italy for you.\n","tool_calls":[{"id":"call_c31d9089eb114d168d3264ff","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_content":"\nThe user is asking for weather information for 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."},{"content":"40 C","tool_call_id":"call_c31d9089eb114d168d3264ff","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.7.1 - 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":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" returned"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"40"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" C"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Florence"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Italy"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" indicates"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" current"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" temperature"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"40"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" degrees"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Celsius"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" which"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" quite"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" hot"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provide"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" clear"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" helpful"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" way"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"The"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" current"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" weather"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" in"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" is"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"40"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"°C"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" ("}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"104"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"°F"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":")."}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" That"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"'s"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" quite"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" hot"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"!"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" It"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"'s"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" a"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" very"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" warm"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" day"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" so"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" if"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" you"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"'re"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" planning"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" to"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" be"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" outdoors"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" make"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" sure"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" to"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" stay"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" seek"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" shade"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" when"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":" possible"}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"delta":{"role":"assistant","content":"."}}]} - - data: {"id":"202511111757299016f9976fc249dd","created":1762855049,"model":"glm-4.5","choices":[{"index":0,"finish_reason":"stop","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":271,"completion_tokens":96,"total_tokens":367,"prompt_tokens_details":{"cached_tokens":262}}} - - data: [DONE] - - headers: - Content-Type: - - text/event-stream;charset=UTF-8 - status: 200 OK - code: 200 - duration: 701.355917ms diff --git a/providertests/testdata/TestOpenAICompatibleThinking/zai-glm-4.5/thinking.yaml b/providertests/testdata/TestOpenAICompatibleThinking/zai-glm-4.5/thinking.yaml deleted file mode 100644 index a0a68f96595688884a5ef351b460deb88ae1a382..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestOpenAICompatibleThinking/zai-glm-4.5/thinking.yaml +++ /dev/null @@ -1,63 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 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.7.1 - 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":"\nI''ll check the weather in Florence, Italy for you.\n","reasoning_content":"\nThe user is asking for the weather in Florence, Italy. I need to use the weather function to get this information. The function requires a \"location\" parameter, and the user has specified \"Florence, Italy\" as the location. I should use this exact value for the location parameter.","role":"assistant","tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"id":"call_-8167683298435521960","index":0,"type":"function"}]}}],"created":1762855036,"id":"20251111175712e9c3abb6e9ff40e7","model":"glm-4.5","request_id":"20251111175712e9c3abb6e9ff40e7","usage":{"completion_tokens":91,"prompt_tokens":179,"prompt_tokens_details":{"cached_tokens":44},"total_tokens":270}}' - headers: - Content-Type: - - application/json; charset=UTF-8 - status: 200 OK - code: 200 - duration: 4.539574875s -- id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 1078 - host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"content":"\nI''ll check the weather in Florence, Italy for you.\n","tool_calls":[{"id":"call_-8167683298435521960","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_content":"\nThe user is asking for the weather in Florence, Italy. I need to use the weather function to get this information. The function requires a \"location\" parameter, and the user has specified \"Florence, Italy\" as the location. I should use this exact value for the location parameter."},{"content":"40 C","tool_call_id":"call_-8167683298435521960","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.7.1 - 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":"\nThe current weather in Florence, Italy is 40°C (104°F). That''s quite hot! Make sure to stay hydrated and seek shade if you''re out and about.","reasoning_content":"\nThe weather function returned \"40 C\" for Florence, Italy. This indicates it''s quite hot - 40 degrees Celsius. I should provide this information to the user in a clear and helpful way.","role":"assistant"}}],"created":1762855045,"id":"20251111175717dfeae12b868f40ed","model":"glm-4.5","request_id":"20251111175717dfeae12b868f40ed","usage":{"completion_tokens":80,"prompt_tokens":278,"prompt_tokens_details":{"cached_tokens":176},"total_tokens":358}}' - headers: - Content-Type: - - application/json; charset=UTF-8 - status: 200 OK - code: 200 - duration: 8.759282417s diff --git a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o-mini/complex_object.yaml b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o-mini/complex_object.yaml index 9470db3d95790c0665b6401394f658fdb5e20f22..99ff996aa440ca9e0aef138e3b4d3120823f28c2 100644 --- a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o-mini/complex_object.yaml +++ b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o-mini/complex_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,9 +26,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CZkh7y0v50HiK3bHkckDQM27mAxaF", + "id": "chatcmpl-DIgPtNkNJsL6nlEhpzHiRUnhSq9rD", "object": "chat.completion", - "created": 1762637009, + "created": 1773345325, "model": "gpt-4o-mini-2024-07-18", "choices": [ { @@ -59,11 +59,11 @@ interactions: } }, "service_tier": "default", - "system_fingerprint": "fp_560af6e559" + "system_fingerprint": "fp_a1ddba3226" } headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.814804666s + duration: 1.565104292s diff --git a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o-mini/complex_object_streaming.yaml b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o-mini/complex_object_streaming.yaml index b3f826684e20d513006970ef2210d384a8164a56..a11f026b10d400c580656411ba23dbfc689bda93 100644 --- a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o-mini/complex_object_streaming.yaml +++ b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o-mini/complex_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,97 +24,97 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"EoocpAT2f"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"cqjQnYhW1"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"{\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"4WcRrCy6"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"{\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"rLhtyxgT"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"author"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"c9snD"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"author"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"6rCnZ"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"\":{\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"cfO71"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"\":{\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"uLCFr"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"name"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"R0natd4"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"name"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Z4kRJrn"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"TfZHov"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"i7ITFd"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"J"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"o1EOEur9HR"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"J"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"QOKPTpFD3k"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":".R"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"HoTfqDfrp"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":".R"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"nrzPm6DD5"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":".R"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"6Zgemp56q"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":".R"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"t04cMsYJm"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Lu4Li3pC49"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"92cWFXxDuy"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" Tolkien"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"ubO"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":" Tolkien"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"kBC"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"KEepu5"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"oC1Hp7"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"national"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"A2p"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"national"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"zQZ"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"ity"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"xPvO5yWm"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"ity"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"N6K1O3ab"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"EbLjkP"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"UoLVyy"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"British"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"BxsD"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"British"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"TV5S"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"\"}"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"DLGVoo4R"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"\"}"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"2jPfhfxO"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"hnXwwj8X"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"FlctPVgz"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"genres"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"gEVWT"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"genres"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"u1j1u"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"\":[\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"XJ409"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"\":[\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"zZQy6"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"Fantasy"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"eeqV"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"Fantasy"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"gQaG"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"PI6dT4"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"k3G1WI"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"Adventure"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"VE"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"Adventure"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Kg"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"CHOoeY"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"ytigXK"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"Epic"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"GNkrW3W"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"Epic"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"pzDLPTT"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"96yoKZ"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"VCGe7i"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"High"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"3DHitkZ"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"High"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"wOYStNc"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" Fantasy"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"12y"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":" Fantasy"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"UJ3"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"\"],"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"75v0KEB"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"\"],"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"fGKupEG"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"48pugM49v"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"eNlqNsJTd"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"published"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"oe"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"published"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"BR"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"_year"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"mT79gF"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"_year"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"8t2XNc"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"\":"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"4Uj7yFLo"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"\":"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"fcHFAVN9"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"195"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Ir9ny27F"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"195"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"8nKamqa9"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"4"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"HgJ2OAk2Wf"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"4"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"EA9ob6e1g0"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"lspW3jd3"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"4VT9hlBG"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"title"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"C5hYZ3"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"title"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"mYtTTV"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Wa8NAb"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"PAUtf8"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"o4Fx7yhJ"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"MZEWeooF"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" Lord"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"cwn0KV"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":" Lord"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"7oKmxC"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" of"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"eiCgaQSI"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":" of"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"x5IM0scE"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"IdQLy0E"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"9yzvCyd"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":" Rings"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"TOcTG"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":" Rings"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"sSufv"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"\"}"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"bKNNB3Vt"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{"content":"\"}"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"3AI53rdp"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"TVJnC"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"D6wxm"} - data: {"id":"chatcmpl-CZkh9fNoyVymRxJhgvRr0eAMdJPdM","object":"chat.completion.chunk","created":1762637011,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[],"usage":{"prompt_tokens":160,"completion_tokens":43,"total_tokens":203,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"tUHwei0G"} + data: {"id":"chatcmpl-DIgPup7Lq8l6HngR7SwBRgYJ3CCDY","object":"chat.completion.chunk","created":1773345326,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_a1ddba3226","choices":[],"usage":{"prompt_tokens":160,"completion_tokens":43,"total_tokens":203,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"AQumAMat"} data: [DONE] @@ -123,4 +123,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 691.543167ms + duration: 574.774833ms diff --git a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o-mini/simple_object.yaml b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o-mini/simple_object.yaml index 61c649e8078abe4c27bccb6a67b676169cf95966..d97b297d076515a129085e1d40852cc038f8550e 100644 --- a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o-mini/simple_object.yaml +++ b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o-mini/simple_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,9 +26,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CZkh6UpzjVoPIwiP6798RaJh45GaE", + "id": "chatcmpl-DIgPsA589BSqZ5prDX7q3j0pCP35c", "object": "chat.completion", - "created": 1762637008, + "created": 1773345324, "model": "gpt-4o-mini-2024-07-18", "choices": [ { @@ -59,11 +59,11 @@ interactions: } }, "service_tier": "default", - "system_fingerprint": "fp_560af6e559" + "system_fingerprint": "fp_4d98e63255" } headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 926.519208ms + duration: 722.682167ms diff --git a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o-mini/simple_object_streaming.yaml b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o-mini/simple_object_streaming.yaml index 29959253eec1e83554f73d367f62701b780d6316..db0dd55384651c2f2ab8ba0d876e394b8de7aa4a 100644 --- a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o-mini/simple_object_streaming.yaml +++ b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o-mini/simple_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,37 +24,37 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CZkh6JIHchpBryosw9Q1zBULiOgQP","object":"chat.completion.chunk","created":1762637008,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"FopRVPvq1"} + data: {"id":"chatcmpl-DIgPsIh1EYwVIKNibCKSNTpyZWnnp","object":"chat.completion.chunk","created":1773345324,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_0ec505b064","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"oX2o0noG6"} - data: {"id":"chatcmpl-CZkh6JIHchpBryosw9Q1zBULiOgQP","object":"chat.completion.chunk","created":1762637008,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"{\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"vcH0mk1c"} + data: {"id":"chatcmpl-DIgPsIh1EYwVIKNibCKSNTpyZWnnp","object":"chat.completion.chunk","created":1773345324,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_0ec505b064","choices":[{"index":0,"delta":{"content":"{\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"5DIujmWl"} - data: {"id":"chatcmpl-CZkh6JIHchpBryosw9Q1zBULiOgQP","object":"chat.completion.chunk","created":1762637008,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"age"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Yp08y6zs"} + data: {"id":"chatcmpl-DIgPsIh1EYwVIKNibCKSNTpyZWnnp","object":"chat.completion.chunk","created":1773345324,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_0ec505b064","choices":[{"index":0,"delta":{"content":"age"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"zsLqOb9V"} - data: {"id":"chatcmpl-CZkh6JIHchpBryosw9Q1zBULiOgQP","object":"chat.completion.chunk","created":1762637008,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"\":"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"yEwAOmw5"} + data: {"id":"chatcmpl-DIgPsIh1EYwVIKNibCKSNTpyZWnnp","object":"chat.completion.chunk","created":1773345324,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_0ec505b064","choices":[{"index":0,"delta":{"content":"\":"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"li4olOBn"} - data: {"id":"chatcmpl-CZkh6JIHchpBryosw9Q1zBULiOgQP","object":"chat.completion.chunk","created":1762637008,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"30"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"PedSD3PYu"} + data: {"id":"chatcmpl-DIgPsIh1EYwVIKNibCKSNTpyZWnnp","object":"chat.completion.chunk","created":1773345324,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_0ec505b064","choices":[{"index":0,"delta":{"content":"30"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"82Zu3XszK"} - data: {"id":"chatcmpl-CZkh6JIHchpBryosw9Q1zBULiOgQP","object":"chat.completion.chunk","created":1762637008,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"I5M18YOR"} + data: {"id":"chatcmpl-DIgPsIh1EYwVIKNibCKSNTpyZWnnp","object":"chat.completion.chunk","created":1773345324,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_0ec505b064","choices":[{"index":0,"delta":{"content":",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"DVSYBApi"} - data: {"id":"chatcmpl-CZkh6JIHchpBryosw9Q1zBULiOgQP","object":"chat.completion.chunk","created":1762637008,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"city"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"9ReOCb0"} + data: {"id":"chatcmpl-DIgPsIh1EYwVIKNibCKSNTpyZWnnp","object":"chat.completion.chunk","created":1773345324,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_0ec505b064","choices":[{"index":0,"delta":{"content":"city"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"KcCh5Cg"} - data: {"id":"chatcmpl-CZkh6JIHchpBryosw9Q1zBULiOgQP","object":"chat.completion.chunk","created":1762637008,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"dRYkzy"} + data: {"id":"chatcmpl-DIgPsIh1EYwVIKNibCKSNTpyZWnnp","object":"chat.completion.chunk","created":1773345324,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_0ec505b064","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"f6KaqP"} - data: {"id":"chatcmpl-CZkh6JIHchpBryosw9Q1zBULiOgQP","object":"chat.completion.chunk","created":1762637008,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"Paris"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"clnEfR"} + data: {"id":"chatcmpl-DIgPsIh1EYwVIKNibCKSNTpyZWnnp","object":"chat.completion.chunk","created":1773345324,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_0ec505b064","choices":[{"index":0,"delta":{"content":"Paris"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"SvGL8b"} - data: {"id":"chatcmpl-CZkh6JIHchpBryosw9Q1zBULiOgQP","object":"chat.completion.chunk","created":1762637008,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"y8uwQU"} + data: {"id":"chatcmpl-DIgPsIh1EYwVIKNibCKSNTpyZWnnp","object":"chat.completion.chunk","created":1773345324,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_0ec505b064","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"n0m0ig"} - data: {"id":"chatcmpl-CZkh6JIHchpBryosw9Q1zBULiOgQP","object":"chat.completion.chunk","created":1762637008,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"name"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"hoFrRnB"} + data: {"id":"chatcmpl-DIgPsIh1EYwVIKNibCKSNTpyZWnnp","object":"chat.completion.chunk","created":1773345324,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_0ec505b064","choices":[{"index":0,"delta":{"content":"name"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"M6egPcj"} - data: {"id":"chatcmpl-CZkh6JIHchpBryosw9Q1zBULiOgQP","object":"chat.completion.chunk","created":1762637008,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"f2tFLb"} + data: {"id":"chatcmpl-DIgPsIh1EYwVIKNibCKSNTpyZWnnp","object":"chat.completion.chunk","created":1773345324,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_0ec505b064","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"vi9Oz3"} - data: {"id":"chatcmpl-CZkh6JIHchpBryosw9Q1zBULiOgQP","object":"chat.completion.chunk","created":1762637008,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"Alice"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"MdtNOk"} + data: {"id":"chatcmpl-DIgPsIh1EYwVIKNibCKSNTpyZWnnp","object":"chat.completion.chunk","created":1773345324,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_0ec505b064","choices":[{"index":0,"delta":{"content":"Alice"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"CzyahL"} - data: {"id":"chatcmpl-CZkh6JIHchpBryosw9Q1zBULiOgQP","object":"chat.completion.chunk","created":1762637008,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{"content":"\"}"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"4NFrFBQr"} + data: {"id":"chatcmpl-DIgPsIh1EYwVIKNibCKSNTpyZWnnp","object":"chat.completion.chunk","created":1773345324,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_0ec505b064","choices":[{"index":0,"delta":{"content":"\"}"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"fR1sAi7h"} - data: {"id":"chatcmpl-CZkh6JIHchpBryosw9Q1zBULiOgQP","object":"chat.completion.chunk","created":1762637008,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"RyhJI"} + data: {"id":"chatcmpl-DIgPsIh1EYwVIKNibCKSNTpyZWnnp","object":"chat.completion.chunk","created":1773345324,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_0ec505b064","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"XKGdM"} - data: {"id":"chatcmpl-CZkh6JIHchpBryosw9Q1zBULiOgQP","object":"chat.completion.chunk","created":1762637008,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_560af6e559","choices":[],"usage":{"prompt_tokens":99,"completion_tokens":13,"total_tokens":112,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"a9TEmM6E7"} + data: {"id":"chatcmpl-DIgPsIh1EYwVIKNibCKSNTpyZWnnp","object":"chat.completion.chunk","created":1773345324,"model":"gpt-4o-mini-2024-07-18","service_tier":"default","system_fingerprint":"fp_0ec505b064","choices":[],"usage":{"prompt_tokens":99,"completion_tokens":13,"total_tokens":112,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"a3tf4UGIZ"} data: [DONE] @@ -63,4 +63,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 611.309416ms + duration: 612.415125ms diff --git a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o/complex_object.yaml b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o/complex_object.yaml index 000d1ba9a74e3145744145c2d55dc5dca4ea79c8..53be9915ad4d196a64b425d82e6692bcb14b3d7a 100644 --- a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o/complex_object.yaml +++ b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o/complex_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,16 +26,16 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CZkh4icu3jixl4IcoAjWVF1mV1oYu", + "id": "chatcmpl-DIgPpnnBOUcrX4LrD5A74X9krJj97", "object": "chat.completion", - "created": 1762637006, + "created": 1773345321, "model": "gpt-4o-2024-08-06", "choices": [ { "index": 0, "message": { "role": "assistant", - "content": "{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}", + "content": "{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\",\"High Fantasy\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}", "refusal": null, "annotations": [] }, @@ -45,8 +45,8 @@ interactions: ], "usage": { "prompt_tokens": 160, - "completion_tokens": 40, - "total_tokens": 200, + "completion_tokens": 43, + "total_tokens": 203, "prompt_tokens_details": { "cached_tokens": 0, "audio_tokens": 0 @@ -59,11 +59,11 @@ interactions: } }, "service_tier": "default", - "system_fingerprint": "fp_b1442291a8" + "system_fingerprint": "fp_4d96cd32fd" } headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.01740425s + duration: 1.435517917s diff --git a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o/complex_object_streaming.yaml b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o/complex_object_streaming.yaml index 242bd55c451617f292d06b192bb90bb4605e7b9f..64e33258b3f2ee82c77a8846cf7ee45615c0a301 100644 --- a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o/complex_object_streaming.yaml +++ b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o/complex_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,97 +24,101 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"oRfA4z9DWq7qj8"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"PG3jBEX2X5j81y"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"{\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"6zBd5qX7Btxxs"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"{\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"1RTSAn2JIzfNw"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"author"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"TM0t4Pm61A"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"author"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"dztYW0N60M"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"\":{\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"vGe6G1eVLX"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"\":{\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"wytpgUv2R7"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"name"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"IzcNGOmzos0t"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"name"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"XyStT8gDwWYA"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"l7hTuQxFaSd"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"iW8z9XOkhWS"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"J"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"KUdeHzDFBeGZqrS"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"J"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Sfj1YYRO7M8ZPib"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":".R"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"53WRtPIBKf8ppj"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":".R"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"189VKXGOROJRhu"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":".R"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"k1Sj1EOhcZYCrc"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":".R"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"EiT24GCklyQ0hO"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"qg5EAndN8z366Rb"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"nPbEw0G6gF9vfJM"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":" Tolkien"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"5FtxI3Pp"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":" Tolkien"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"1kaOTE2n"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"M5dFMIxnYln"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"lXa7fjwNlrJ"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"national"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"KWRPefSc"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"national"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"MnFA6Cnn"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"ity"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Am6NFkfoBupq4"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"ity"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"vFFph2QIf3OuJ"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"mE6llEgaiEl"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"nhyL3ou5p1K"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"British"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"NOxOkP0FW"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"British"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"VHPdtiEBv"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"\"}"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"dTuuDbNhmHIam"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"\"}"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"reGxSfpTAWxoO"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"1YF0LTdj65xaU"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"NHCC7DdHuf32q"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"genres"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"sgSIFdyI3Y"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"genres"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"TBpBVtAEMe"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"\":[\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"J7yKvYHrAE"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"\":[\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"b3Rus8mUUt"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"Fantasy"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"1bi4UyMpr"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"Fantasy"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"nW6QgjrkH"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"YKmjdjs48hJ"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"v2ebuOkoIAC"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"Adventure"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"TPD2t4l"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"Adventure"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"svNRIUK"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"vlNVJvvgk1c"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"KrP1t1VR8Zh"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"Epic"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"w7jUArhKEasV"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"High"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"sMjECI7RQRSu"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"5Y8gslzJdue"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":" Fantasy"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"XQohmDtQ"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"High"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"cOxUUXJCFsCN"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"DIyyKCn0K65"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":" Fantasy"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"pvt7toWU"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"Epic"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"IobkIGeFGlR3"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"\"],"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"X4iUq3xGjfQZ"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Z4sU7CxJYRn"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"9DWpvWngJkc3QW"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"Classic"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"CBxrjQSdD"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"published"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"x83XGTN"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"\"],"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Z3Fb9qeOA7AN"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"_year"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"b0pZYS1Ugrk"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"214DchXVJL5Wdg"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"\":"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"TnUypAqlvMK0t"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"published"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"jbLZKNo"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"195"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"5q3RZV2IBGwQq"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"_year"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"nWryTHsgsHp"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"4"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"seaiFS3GIkUeF8R"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"\":"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"8jLn80Yjzt1by"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"5z7ebiG1wSVfE"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"195"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"DBNVkvyZVUni1"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"title"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"t3kq28e6YDC"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"4"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Sp3na1T0kWuscuB"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"27pSWGte8Fs"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"1rp6MKgtJcbYY"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"hbcPvP0yuw3gs"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"title"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"dbODrXqye7S"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":" Lord"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"w5Nf8vyr8dS"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"OXCRGKkc2lV"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":" of"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"oEMgc3xOjSI7i"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"TBZNxFpXNx2SP"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"QUboXKjGhMgZ"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":" Lord"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"YxlBBhlNhYo"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":" Rings"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"VzpWMn93wL"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":" of"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"27aO6IMkHokE2"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{"content":"\"}"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"6SnH1kmGO0pUa"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"NSHUSlcc7s96"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"KDN8LMYAVx"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":" Rings"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"jnyPmWlt4U"} - data: {"id":"chatcmpl-CZkh4dwQrDDuhFHnkTYw9GVO9PVzy","object":"chat.completion.chunk","created":1762637006,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_b1442291a8","choices":[],"usage":{"prompt_tokens":160,"completion_tokens":43,"total_tokens":203,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"GVU4FsyFvtGsL"} + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{"content":"\"}"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"PdxvMGfJeKZH3"} + + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"ikdij9mijg"} + + data: {"id":"chatcmpl-DIgPqZDSLdYbzqyXn54iajmnPPss9","object":"chat.completion.chunk","created":1773345322,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_97cd4ae281","choices":[],"usage":{"prompt_tokens":160,"completion_tokens":45,"total_tokens":205,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"xmhWpx3gjprdj"} data: [DONE] @@ -123,4 +127,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 608.567167ms + duration: 468.8415ms diff --git a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o/simple_object.yaml b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o/simple_object.yaml index 8f8ca148ec16eac46ab02889edf38321fd184289..6b6f37a5c20e2cda16393c09a4b0845dbae67fcd 100644 --- a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o/simple_object.yaml +++ b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o/simple_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,9 +26,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CZkh2yUHIKUTvXaI7RuJhKssQ3u8J", + "id": "chatcmpl-DIgPnqB0gj71H6AVhLEHu4TX5IYn2", "object": "chat.completion", - "created": 1762637004, + "created": 1773345319, "model": "gpt-4o-2024-08-06", "choices": [ { @@ -59,11 +59,11 @@ interactions: } }, "service_tier": "default", - "system_fingerprint": "fp_cbf1785567" + "system_fingerprint": "fp_c7a156cce7" } headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 866.25175ms + duration: 675.509875ms diff --git a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o/simple_object_streaming.yaml b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o/simple_object_streaming.yaml index 44ace558ebad032c874e775c6a8b7cd8d655df77..7c14ef5253ff238df7943e461ecf620a3850d88c 100644 --- a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o/simple_object_streaming.yaml +++ b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-4o/simple_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,37 +24,37 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CZkh26YobsyDr3tfAEylpsGb7mCKf","object":"chat.completion.chunk","created":1762637004,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Q7EWId38WGszkS"} + data: {"id":"chatcmpl-DIgPoiOp8apP6QCFndXcGTivO3TuR","object":"chat.completion.chunk","created":1773345320,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"uw8SdCzr1e0U5c"} - data: {"id":"chatcmpl-CZkh26YobsyDr3tfAEylpsGb7mCKf","object":"chat.completion.chunk","created":1762637004,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"{\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"WDGuponLquJpz"} + data: {"id":"chatcmpl-DIgPoiOp8apP6QCFndXcGTivO3TuR","object":"chat.completion.chunk","created":1773345320,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"content":"{\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Kr22ud7CJT2Ds"} - data: {"id":"chatcmpl-CZkh26YobsyDr3tfAEylpsGb7mCKf","object":"chat.completion.chunk","created":1762637004,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"age"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"rCGUFNPg6GmYo"} + data: {"id":"chatcmpl-DIgPoiOp8apP6QCFndXcGTivO3TuR","object":"chat.completion.chunk","created":1773345320,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"content":"age"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"gnwHbdkHHF2Z8"} - data: {"id":"chatcmpl-CZkh26YobsyDr3tfAEylpsGb7mCKf","object":"chat.completion.chunk","created":1762637004,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"\":"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"wEfLaS45CzBz3"} + data: {"id":"chatcmpl-DIgPoiOp8apP6QCFndXcGTivO3TuR","object":"chat.completion.chunk","created":1773345320,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"content":"\":"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"fXYGQKenCiJx9"} - data: {"id":"chatcmpl-CZkh26YobsyDr3tfAEylpsGb7mCKf","object":"chat.completion.chunk","created":1762637004,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"30"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"FXGR1dTIvN4Qp6"} + data: {"id":"chatcmpl-DIgPoiOp8apP6QCFndXcGTivO3TuR","object":"chat.completion.chunk","created":1773345320,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"content":"30"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"gzSdU5v0BFx5Ga"} - data: {"id":"chatcmpl-CZkh26YobsyDr3tfAEylpsGb7mCKf","object":"chat.completion.chunk","created":1762637004,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"KmEPUsJzFtpi5"} + data: {"id":"chatcmpl-DIgPoiOp8apP6QCFndXcGTivO3TuR","object":"chat.completion.chunk","created":1773345320,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"content":",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"chLBu6cI8SmDS"} - data: {"id":"chatcmpl-CZkh26YobsyDr3tfAEylpsGb7mCKf","object":"chat.completion.chunk","created":1762637004,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"city"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"TxOjAiMNR8i2"} + data: {"id":"chatcmpl-DIgPoiOp8apP6QCFndXcGTivO3TuR","object":"chat.completion.chunk","created":1773345320,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"content":"city"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"kuLLT38DfdYK"} - data: {"id":"chatcmpl-CZkh26YobsyDr3tfAEylpsGb7mCKf","object":"chat.completion.chunk","created":1762637004,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"ZdagyqxzdDT"} + data: {"id":"chatcmpl-DIgPoiOp8apP6QCFndXcGTivO3TuR","object":"chat.completion.chunk","created":1773345320,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"QHicKsM1eXc"} - data: {"id":"chatcmpl-CZkh26YobsyDr3tfAEylpsGb7mCKf","object":"chat.completion.chunk","created":1762637004,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"Paris"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"7AV1wjObQw9"} + data: {"id":"chatcmpl-DIgPoiOp8apP6QCFndXcGTivO3TuR","object":"chat.completion.chunk","created":1773345320,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"content":"Paris"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"Ws5WbUylntH"} - data: {"id":"chatcmpl-CZkh26YobsyDr3tfAEylpsGb7mCKf","object":"chat.completion.chunk","created":1762637004,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"ecbr6MtR7cR"} + data: {"id":"chatcmpl-DIgPoiOp8apP6QCFndXcGTivO3TuR","object":"chat.completion.chunk","created":1773345320,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"content":"\",\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"bbyKPggLkvo"} - data: {"id":"chatcmpl-CZkh26YobsyDr3tfAEylpsGb7mCKf","object":"chat.completion.chunk","created":1762637004,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"name"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"swinVIK7vWIt"} + data: {"id":"chatcmpl-DIgPoiOp8apP6QCFndXcGTivO3TuR","object":"chat.completion.chunk","created":1773345320,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"content":"name"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"rfWr7QvBhJsG"} - data: {"id":"chatcmpl-CZkh26YobsyDr3tfAEylpsGb7mCKf","object":"chat.completion.chunk","created":1762637004,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"V94lL7Iu9CQ"} + data: {"id":"chatcmpl-DIgPoiOp8apP6QCFndXcGTivO3TuR","object":"chat.completion.chunk","created":1773345320,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"content":"\":\""},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"kx6EQxuwvVa"} - data: {"id":"chatcmpl-CZkh26YobsyDr3tfAEylpsGb7mCKf","object":"chat.completion.chunk","created":1762637004,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"Alice"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"tegZ0PohAUA"} + data: {"id":"chatcmpl-DIgPoiOp8apP6QCFndXcGTivO3TuR","object":"chat.completion.chunk","created":1773345320,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"content":"Alice"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"ySDPJRmEU8M"} - data: {"id":"chatcmpl-CZkh26YobsyDr3tfAEylpsGb7mCKf","object":"chat.completion.chunk","created":1762637004,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{"content":"\"}"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"npvxJxBLlAEZV"} + data: {"id":"chatcmpl-DIgPoiOp8apP6QCFndXcGTivO3TuR","object":"chat.completion.chunk","created":1773345320,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{"content":"\"}"},"logprobs":null,"finish_reason":null}],"usage":null,"obfuscation":"neXpkh1AidhdB"} - data: {"id":"chatcmpl-CZkh26YobsyDr3tfAEylpsGb7mCKf","object":"chat.completion.chunk","created":1762637004,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"gxtfhzu7ZT"} + data: {"id":"chatcmpl-DIgPoiOp8apP6QCFndXcGTivO3TuR","object":"chat.completion.chunk","created":1773345320,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"usage":null,"obfuscation":"SWaP6IeWW4"} - data: {"id":"chatcmpl-CZkh26YobsyDr3tfAEylpsGb7mCKf","object":"chat.completion.chunk","created":1762637004,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_cbf1785567","choices":[],"usage":{"prompt_tokens":99,"completion_tokens":13,"total_tokens":112,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"mo9vda7oGi3jDi"} + data: {"id":"chatcmpl-DIgPoiOp8apP6QCFndXcGTivO3TuR","object":"chat.completion.chunk","created":1773345320,"model":"gpt-4o-2024-08-06","service_tier":"default","system_fingerprint":"fp_c7a156cce7","choices":[],"usage":{"prompt_tokens":99,"completion_tokens":13,"total_tokens":112,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":0,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"lbV1saWiCN6Zr6"} data: [DONE] @@ -63,4 +63,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 878.195625ms + duration: 508.178166ms diff --git a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-5/complex_object.yaml b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-5/complex_object.yaml index b23171032b982e5eff33b80c0ced56d8cb933b2c..af0d6963e8c58663d4c802f5679a1b1a6d23d108 100644 --- a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-5/complex_object.yaml +++ b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-5/complex_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,9 +26,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CZkhdPgupBvka4xhGSEPQHw0QQKRf", + "id": "chatcmpl-DIgxVlpqKjSlQWZ4R08KShzRLwFce", "object": "chat.completion", - "created": 1762637041, + "created": 1773347409, "model": "gpt-5-2025-08-07", "choices": [ { @@ -44,14 +44,14 @@ interactions: ], "usage": { "prompt_tokens": 156, - "completion_tokens": 370, - "total_tokens": 526, + "completion_tokens": 1586, + "total_tokens": 1742, "prompt_tokens_details": { "cached_tokens": 0, "audio_tokens": 0 }, "completion_tokens_details": { - "reasoning_tokens": 320, + "reasoning_tokens": 1536, "audio_tokens": 0, "accepted_prediction_tokens": 0, "rejected_prediction_tokens": 0 @@ -65,4 +65,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 6.754405583s + duration: 52.671300875s diff --git a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-5/complex_object_streaming.yaml b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-5/complex_object_streaming.yaml index 4841a1f0a3646647f0a52b165347c9e96ba21d0b..95b8a4b65ccc5c3fff67c405c710666b0f30fc90 100644 --- a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-5/complex_object_streaming.yaml +++ b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-5/complex_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,97 +24,91 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"krULCx6FpP"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"jtZzStUrJQ"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"{\""},"finish_reason":null}],"usage":null,"obfuscation":"KhkT4ETwl"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"{\""},"finish_reason":null}],"usage":null,"obfuscation":"pkv3TISjd"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"author"},"finish_reason":null}],"usage":null,"obfuscation":"JiqkV9"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"author"},"finish_reason":null}],"usage":null,"obfuscation":"yI7Zgt"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":{\""},"finish_reason":null}],"usage":null,"obfuscation":"pLfh4Y"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":{\""},"finish_reason":null}],"usage":null,"obfuscation":"h7jkrY"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"name"},"finish_reason":null}],"usage":null,"obfuscation":"O8warfq1"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"name"},"finish_reason":null}],"usage":null,"obfuscation":"YM3hV81L"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"fAH5NNx"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"cIUl3vm"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"J"},"finish_reason":null}],"usage":null,"obfuscation":"iRAAQPuX204"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"J"},"finish_reason":null}],"usage":null,"obfuscation":"B7zAieqCa0H"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".R"},"finish_reason":null}],"usage":null,"obfuscation":"W1AR5b5TWP"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"finish_reason":null}],"usage":null,"obfuscation":"t7ArwJZzVhF"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".R"},"finish_reason":null}],"usage":null,"obfuscation":"VTNoKDtQ17"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" R"},"finish_reason":null}],"usage":null,"obfuscation":"QosJSoBWig"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"finish_reason":null}],"usage":null,"obfuscation":"HKmoGb3IINO"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"finish_reason":null}],"usage":null,"obfuscation":"CnGeuKKIu0a"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Tolkien"},"finish_reason":null}],"usage":null,"obfuscation":"p3JU"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" R"},"finish_reason":null}],"usage":null,"obfuscation":"blQnlX0tKm"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\",\""},"finish_reason":null}],"usage":null,"obfuscation":"vcVbCL4"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"finish_reason":null}],"usage":null,"obfuscation":"CktihyaAa5t"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"national"},"finish_reason":null}],"usage":null,"obfuscation":"R5MO"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Tolkien"},"finish_reason":null}],"usage":null,"obfuscation":"iV6K"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ity"},"finish_reason":null}],"usage":null,"obfuscation":"hnSvtExqQ"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\",\""},"finish_reason":null}],"usage":null,"obfuscation":"2JLNFjz"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"HyL59KZ"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"national"},"finish_reason":null}],"usage":null,"obfuscation":"ktML"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"British"},"finish_reason":null}],"usage":null,"obfuscation":"ataN0"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ity"},"finish_reason":null}],"usage":null,"obfuscation":"QafW1HUxI"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"}"},"finish_reason":null}],"usage":null,"obfuscation":"OPSMNTPak"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"7g32GME"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":",\""},"finish_reason":null}],"usage":null,"obfuscation":"puUIHCDXD"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"British"},"finish_reason":null}],"usage":null,"obfuscation":"YN1t8"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"genres"},"finish_reason":null}],"usage":null,"obfuscation":"66V8sV"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"}"},"finish_reason":null}],"usage":null,"obfuscation":"H7Y9zkTsY"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":[\""},"finish_reason":null}],"usage":null,"obfuscation":"zz6Bdi"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":",\""},"finish_reason":null}],"usage":null,"obfuscation":"bR54nPU59"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Fantasy"},"finish_reason":null}],"usage":null,"obfuscation":"TfPQ2"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"genres"},"finish_reason":null}],"usage":null,"obfuscation":"5DOyxp"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\",\""},"finish_reason":null}],"usage":null,"obfuscation":"LNWEFWZ"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":[\""},"finish_reason":null}],"usage":null,"obfuscation":"44oyQx"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Adventure"},"finish_reason":null}],"usage":null,"obfuscation":"1vG"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Fantasy"},"finish_reason":null}],"usage":null,"obfuscation":"uW58w"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\",\""},"finish_reason":null}],"usage":null,"obfuscation":"gWtPmFa"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\",\""},"finish_reason":null}],"usage":null,"obfuscation":"3yaXqNY"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"High"},"finish_reason":null}],"usage":null,"obfuscation":"rmqnBBtT"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Adventure"},"finish_reason":null}],"usage":null,"obfuscation":"YvO"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" fantasy"},"finish_reason":null}],"usage":null,"obfuscation":"UPen"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"],"},"finish_reason":null}],"usage":null,"obfuscation":"czgi4JCE"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\",\""},"finish_reason":null}],"usage":null,"obfuscation":"RDuP2zJ"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"finish_reason":null}],"usage":null,"obfuscation":"ft3wPBCT5F"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Epic"},"finish_reason":null}],"usage":null,"obfuscation":"IsesfQsQ"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"published"},"finish_reason":null}],"usage":null,"obfuscation":"u73"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"],"},"finish_reason":null}],"usage":null,"obfuscation":"w4JTRvLk"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_year"},"finish_reason":null}],"usage":null,"obfuscation":"P4mw8m4"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"finish_reason":null}],"usage":null,"obfuscation":"3w9JKeR72Q"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":"},"finish_reason":null}],"usage":null,"obfuscation":"aXKcGHdGb"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"published"},"finish_reason":null}],"usage":null,"obfuscation":"CLT"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"195"},"finish_reason":null}],"usage":null,"obfuscation":"ab16Bv1wO"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_year"},"finish_reason":null}],"usage":null,"obfuscation":"MkfRSfT"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"4"},"finish_reason":null}],"usage":null,"obfuscation":"34LDzpsW1d2"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":"},"finish_reason":null}],"usage":null,"obfuscation":"bBQJScoy8"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":",\""},"finish_reason":null}],"usage":null,"obfuscation":"X4VUJSp2h"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"195"},"finish_reason":null}],"usage":null,"obfuscation":"YuX5V3Knn"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"title"},"finish_reason":null}],"usage":null,"obfuscation":"vjzEjDX"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"4"},"finish_reason":null}],"usage":null,"obfuscation":"d6BGtnexZOj"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"eWBgr9m"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":",\""},"finish_reason":null}],"usage":null,"obfuscation":"tN8ZtZwyn"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"The"},"finish_reason":null}],"usage":null,"obfuscation":"OpQ1PFbcM"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"title"},"finish_reason":null}],"usage":null,"obfuscation":"60QEmXN"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Lord"},"finish_reason":null}],"usage":null,"obfuscation":"jWGq4QI"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"hHsvsxZ"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" of"},"finish_reason":null}],"usage":null,"obfuscation":"MyAVo1FJp"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"The"},"finish_reason":null}],"usage":null,"obfuscation":"64Glw8yPR"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" the"},"finish_reason":null}],"usage":null,"obfuscation":"rgqfF81t"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Lord"},"finish_reason":null}],"usage":null,"obfuscation":"UryOL9U"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Rings"},"finish_reason":null}],"usage":null,"obfuscation":"124SQ6"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" of"},"finish_reason":null}],"usage":null,"obfuscation":"J9RVBlCzM"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"}"},"finish_reason":null}],"usage":null,"obfuscation":"ArLindDOg"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" the"},"finish_reason":null}],"usage":null,"obfuscation":"He1UQSPn"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"3fBo5e"} - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Rings"},"finish_reason":null}],"usage":null,"obfuscation":"ldqk2U"} - - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"}"},"finish_reason":null}],"usage":null,"obfuscation":"eC9lA0XOT"} - - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"BEksRy"} - - data: {"id":"chatcmpl-CZkhj5CiURkaRRWO5hSOaz31x2Gfh","object":"chat.completion.chunk","created":1762637047,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":156,"completion_tokens":695,"total_tokens":851,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":640,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"CpyYGx"} + data: {"id":"chatcmpl-DIgT8uutnE74Hkbz58UQlsTBXbznJ","object":"chat.completion.chunk","created":1773345526,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":156,"completion_tokens":820,"total_tokens":976,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":768,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"QnyalC"} data: [DONE] @@ -123,4 +117,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 14.427336208s + duration: 10.814331583s diff --git a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-5/simple_object.yaml b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-5/simple_object.yaml index 02e8100fbd5c865cb02c5d6450e7b2b0320dbcbf..2c84ecae15538b64fe1c1e2918f7723d0ad1f70d 100644 --- a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-5/simple_object.yaml +++ b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-5/simple_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,9 +26,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CZkhB1eWodsLQ6Gs98f4VUjNlzKV6", + "id": "chatcmpl-DIgPwEHgLNNLmatoFxwnzQK5ERY1B", "object": "chat.completion", - "created": 1762637013, + "created": 1773345328, "model": "gpt-5-2025-08-07", "choices": [ { @@ -44,14 +44,14 @@ interactions: ], "usage": { "prompt_tokens": 95, - "completion_tokens": 793, - "total_tokens": 888, + "completion_tokens": 1881, + "total_tokens": 1976, "prompt_tokens_details": { "cached_tokens": 0, "audio_tokens": 0 }, "completion_tokens_details": { - "reasoning_tokens": 768, + "reasoning_tokens": 1856, "audio_tokens": 0, "accepted_prediction_tokens": 0, "rejected_prediction_tokens": 0 @@ -65,4 +65,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 20.674063542s + duration: 37.504635833s diff --git a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-5/simple_object_streaming.yaml b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-5/simple_object_streaming.yaml index 9f3cd6ee2453f41761dcc16d305fa4a3e8d0768a..8196a2453e50b5a19f25ef51828aff5799000667 100644 --- a/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-5/simple_object_streaming.yaml +++ b/providertests/testdata/TestOpenAIObjectGeneration/openai-gpt-5/simple_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,37 +24,37 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CZkhWAnMkiLSCMK7u8Hid2v2V0JKT","object":"chat.completion.chunk","created":1762637034,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"XOkQ64PZpE"} + data: {"id":"chatcmpl-DIgQXTrfHNvrR7nDubnJ5oLUWTcEg","object":"chat.completion.chunk","created":1773345365,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"KxTRrYdKQg"} - data: {"id":"chatcmpl-CZkhWAnMkiLSCMK7u8Hid2v2V0JKT","object":"chat.completion.chunk","created":1762637034,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"{\""},"finish_reason":null}],"usage":null,"obfuscation":"Ni84MpFSw"} + data: {"id":"chatcmpl-DIgQXTrfHNvrR7nDubnJ5oLUWTcEg","object":"chat.completion.chunk","created":1773345365,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"{\""},"finish_reason":null}],"usage":null,"obfuscation":"PZHJ6YVRf"} - data: {"id":"chatcmpl-CZkhWAnMkiLSCMK7u8Hid2v2V0JKT","object":"chat.completion.chunk","created":1762637034,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"age"},"finish_reason":null}],"usage":null,"obfuscation":"HWAfWDi80"} + data: {"id":"chatcmpl-DIgQXTrfHNvrR7nDubnJ5oLUWTcEg","object":"chat.completion.chunk","created":1773345365,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"age"},"finish_reason":null}],"usage":null,"obfuscation":"2SJEzor2h"} - data: {"id":"chatcmpl-CZkhWAnMkiLSCMK7u8Hid2v2V0JKT","object":"chat.completion.chunk","created":1762637034,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":"},"finish_reason":null}],"usage":null,"obfuscation":"MgEKDfqen"} + data: {"id":"chatcmpl-DIgQXTrfHNvrR7nDubnJ5oLUWTcEg","object":"chat.completion.chunk","created":1773345365,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":"},"finish_reason":null}],"usage":null,"obfuscation":"6qaT30vBb"} - data: {"id":"chatcmpl-CZkhWAnMkiLSCMK7u8Hid2v2V0JKT","object":"chat.completion.chunk","created":1762637034,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"30"},"finish_reason":null}],"usage":null,"obfuscation":"xSUuDmVnPA"} + data: {"id":"chatcmpl-DIgQXTrfHNvrR7nDubnJ5oLUWTcEg","object":"chat.completion.chunk","created":1773345365,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"30"},"finish_reason":null}],"usage":null,"obfuscation":"ZOBF0n8xMO"} - data: {"id":"chatcmpl-CZkhWAnMkiLSCMK7u8Hid2v2V0JKT","object":"chat.completion.chunk","created":1762637034,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":",\""},"finish_reason":null}],"usage":null,"obfuscation":"rg02xRX4E"} + data: {"id":"chatcmpl-DIgQXTrfHNvrR7nDubnJ5oLUWTcEg","object":"chat.completion.chunk","created":1773345365,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":",\""},"finish_reason":null}],"usage":null,"obfuscation":"tEisbvw2g"} - data: {"id":"chatcmpl-CZkhWAnMkiLSCMK7u8Hid2v2V0JKT","object":"chat.completion.chunk","created":1762637034,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"city"},"finish_reason":null}],"usage":null,"obfuscation":"Otwkppxs"} + data: {"id":"chatcmpl-DIgQXTrfHNvrR7nDubnJ5oLUWTcEg","object":"chat.completion.chunk","created":1773345365,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"city"},"finish_reason":null}],"usage":null,"obfuscation":"MkC2Bp6W"} - data: {"id":"chatcmpl-CZkhWAnMkiLSCMK7u8Hid2v2V0JKT","object":"chat.completion.chunk","created":1762637034,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"WryBuCt"} + data: {"id":"chatcmpl-DIgQXTrfHNvrR7nDubnJ5oLUWTcEg","object":"chat.completion.chunk","created":1773345365,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"QUH6pNW"} - data: {"id":"chatcmpl-CZkhWAnMkiLSCMK7u8Hid2v2V0JKT","object":"chat.completion.chunk","created":1762637034,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Paris"},"finish_reason":null}],"usage":null,"obfuscation":"xHwu9qY"} + data: {"id":"chatcmpl-DIgQXTrfHNvrR7nDubnJ5oLUWTcEg","object":"chat.completion.chunk","created":1773345365,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Paris"},"finish_reason":null}],"usage":null,"obfuscation":"k4gEXLn"} - data: {"id":"chatcmpl-CZkhWAnMkiLSCMK7u8Hid2v2V0JKT","object":"chat.completion.chunk","created":1762637034,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\",\""},"finish_reason":null}],"usage":null,"obfuscation":"5fVw4lG"} + data: {"id":"chatcmpl-DIgQXTrfHNvrR7nDubnJ5oLUWTcEg","object":"chat.completion.chunk","created":1773345365,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\",\""},"finish_reason":null}],"usage":null,"obfuscation":"pGqLxOV"} - data: {"id":"chatcmpl-CZkhWAnMkiLSCMK7u8Hid2v2V0JKT","object":"chat.completion.chunk","created":1762637034,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"name"},"finish_reason":null}],"usage":null,"obfuscation":"9Ionk7pl"} + data: {"id":"chatcmpl-DIgQXTrfHNvrR7nDubnJ5oLUWTcEg","object":"chat.completion.chunk","created":1773345365,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"name"},"finish_reason":null}],"usage":null,"obfuscation":"uKiRQ3wh"} - data: {"id":"chatcmpl-CZkhWAnMkiLSCMK7u8Hid2v2V0JKT","object":"chat.completion.chunk","created":1762637034,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"5vKRCJC"} + data: {"id":"chatcmpl-DIgQXTrfHNvrR7nDubnJ5oLUWTcEg","object":"chat.completion.chunk","created":1773345365,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"AM3mdWP"} - data: {"id":"chatcmpl-CZkhWAnMkiLSCMK7u8Hid2v2V0JKT","object":"chat.completion.chunk","created":1762637034,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Alice"},"finish_reason":null}],"usage":null,"obfuscation":"99RRfh5"} + data: {"id":"chatcmpl-DIgQXTrfHNvrR7nDubnJ5oLUWTcEg","object":"chat.completion.chunk","created":1773345365,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Alice"},"finish_reason":null}],"usage":null,"obfuscation":"vFjiu7T"} - data: {"id":"chatcmpl-CZkhWAnMkiLSCMK7u8Hid2v2V0JKT","object":"chat.completion.chunk","created":1762637034,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"}"},"finish_reason":null}],"usage":null,"obfuscation":"mpjzsT6aj"} + data: {"id":"chatcmpl-DIgQXTrfHNvrR7nDubnJ5oLUWTcEg","object":"chat.completion.chunk","created":1773345365,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"}"},"finish_reason":null}],"usage":null,"obfuscation":"6NYV4o58V"} - data: {"id":"chatcmpl-CZkhWAnMkiLSCMK7u8Hid2v2V0JKT","object":"chat.completion.chunk","created":1762637034,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"Y02J6J"} + data: {"id":"chatcmpl-DIgQXTrfHNvrR7nDubnJ5oLUWTcEg","object":"chat.completion.chunk","created":1773345365,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"HqIOjc"} - data: {"id":"chatcmpl-CZkhWAnMkiLSCMK7u8Hid2v2V0JKT","object":"chat.completion.chunk","created":1762637034,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":95,"completion_tokens":345,"total_tokens":440,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":320,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"oT4O7bI"} + data: {"id":"chatcmpl-DIgQXTrfHNvrR7nDubnJ5oLUWTcEg","object":"chat.completion.chunk","created":1773345365,"model":"gpt-5-2025-08-07","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":95,"completion_tokens":281,"total_tokens":376,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":256,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"tLfkYI6"} data: [DONE] @@ -63,4 +63,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 6.848382125s + duration: 8.160777958s diff --git a/providertests/testdata/TestOpenAIObjectGeneration/openai-o4-mini/complex_object.yaml b/providertests/testdata/TestOpenAIObjectGeneration/openai-o4-mini/complex_object.yaml index 931a5c902bcf8d8c5baf0ec13254912d0175d9da..455f16db3bcd6f665577d9110304b32ef8ae3c84 100644 --- a/providertests/testdata/TestOpenAIObjectGeneration/openai-o4-mini/complex_object.yaml +++ b/providertests/testdata/TestOpenAIObjectGeneration/openai-o4-mini/complex_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,9 +26,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CZki5CYlesaMKCtCSbinnMUnYGvLR", + "id": "chatcmpl-DIgTN0lmxt4KJHCqut0ZPbGRY9pSq", "object": "chat.completion", - "created": 1762637069, + "created": 1773345541, "model": "o4-mini-2025-04-16", "choices": [ { @@ -44,14 +44,14 @@ interactions: ], "usage": { "prompt_tokens": 156, - "completion_tokens": 187, - "total_tokens": 343, + "completion_tokens": 251, + "total_tokens": 407, "prompt_tokens_details": { "cached_tokens": 0, "audio_tokens": 0 }, "completion_tokens_details": { - "reasoning_tokens": 128, + "reasoning_tokens": 192, "audio_tokens": 0, "accepted_prediction_tokens": 0, "rejected_prediction_tokens": 0 @@ -65,4 +65,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 3.853936875s + duration: 3.13162125s diff --git a/providertests/testdata/TestOpenAIObjectGeneration/openai-o4-mini/complex_object_streaming.yaml b/providertests/testdata/TestOpenAIObjectGeneration/openai-o4-mini/complex_object_streaming.yaml index cc3d4fa1fe993a728f990147d716d68f1ffddc13..c4e76ec9fcc0bcb0b180546b7b37e72b5104746a 100644 --- a/providertests/testdata/TestOpenAIObjectGeneration/openai-o4-mini/complex_object_streaming.yaml +++ b/providertests/testdata/TestOpenAIObjectGeneration/openai-o4-mini/complex_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,87 +24,91 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"jSbBDCYa"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"BIfIBbQc"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"{\""},"finish_reason":null}],"usage":null,"obfuscation":"cHy1o6X"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"{\""},"finish_reason":null}],"usage":null,"obfuscation":"pW10hzH"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"author"},"finish_reason":null}],"usage":null,"obfuscation":"un7v"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"author"},"finish_reason":null}],"usage":null,"obfuscation":"fzSs"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":{\""},"finish_reason":null}],"usage":null,"obfuscation":"adWo"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":{\""},"finish_reason":null}],"usage":null,"obfuscation":"uww4"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"name"},"finish_reason":null}],"usage":null,"obfuscation":"So4L3b"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"name"},"finish_reason":null}],"usage":null,"obfuscation":"QAq0Uw"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"6JKwj"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"auLk9"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"J"},"finish_reason":null}],"usage":null,"obfuscation":"e5dRHQDF4"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"J"},"finish_reason":null}],"usage":null,"obfuscation":"kKKmSc7nO"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".R"},"finish_reason":null}],"usage":null,"obfuscation":"HQo6f6PP"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".R"},"finish_reason":null}],"usage":null,"obfuscation":"gCwOdAxF"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".R"},"finish_reason":null}],"usage":null,"obfuscation":"IkNadvEi"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":".R"},"finish_reason":null}],"usage":null,"obfuscation":"FnwAK9O7"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"finish_reason":null}],"usage":null,"obfuscation":"0nUhb2S8E"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"."},"finish_reason":null}],"usage":null,"obfuscation":"Jssuct2DL"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Tolkien"},"finish_reason":null}],"usage":null,"obfuscation":"an"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Tolkien"},"finish_reason":null}],"usage":null,"obfuscation":"A3"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\",\""},"finish_reason":null}],"usage":null,"obfuscation":"8UmMX"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\",\""},"finish_reason":null}],"usage":null,"obfuscation":"U4FK1"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"national"},"finish_reason":null}],"usage":null,"obfuscation":"SU"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"national"},"finish_reason":null}],"usage":null,"obfuscation":"W3"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ity"},"finish_reason":null}],"usage":null,"obfuscation":"63TqWO3"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ity"},"finish_reason":null}],"usage":null,"obfuscation":"GPc5Q7S"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"OhRZz"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"tY82Q"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"English"},"finish_reason":null}],"usage":null,"obfuscation":"ZkD"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"British"},"finish_reason":null}],"usage":null,"obfuscation":"LKb"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"}"},"finish_reason":null}],"usage":null,"obfuscation":"oBSiY0t"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"}"},"finish_reason":null}],"usage":null,"obfuscation":"BFfMtd1"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":",\""},"finish_reason":null}],"usage":null,"obfuscation":"n3bibfa"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":",\""},"finish_reason":null}],"usage":null,"obfuscation":"IjtD6Xs"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"genres"},"finish_reason":null}],"usage":null,"obfuscation":"ky2m"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"genres"},"finish_reason":null}],"usage":null,"obfuscation":"Mm1i"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":[\""},"finish_reason":null}],"usage":null,"obfuscation":"NAkH"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":[\""},"finish_reason":null}],"usage":null,"obfuscation":"Kuhv"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Fantasy"},"finish_reason":null}],"usage":null,"obfuscation":"94h"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"fant"},"finish_reason":null}],"usage":null,"obfuscation":"4npznZ"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\",\""},"finish_reason":null}],"usage":null,"obfuscation":"rDWyL"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"asy"},"finish_reason":null}],"usage":null,"obfuscation":"2iNAJL1"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Adventure"},"finish_reason":null}],"usage":null,"obfuscation":"8"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\",\""},"finish_reason":null}],"usage":null,"obfuscation":"j88um"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"],"},"finish_reason":null}],"usage":null,"obfuscation":"97y0Sh"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"ad"},"finish_reason":null}],"usage":null,"obfuscation":"Ig5G8jV1"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"finish_reason":null}],"usage":null,"obfuscation":"QiMOEGWe"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"venture"},"finish_reason":null}],"usage":null,"obfuscation":"ZON"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"published"},"finish_reason":null}],"usage":null,"obfuscation":"R"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"],"},"finish_reason":null}],"usage":null,"obfuscation":"5KE76g"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_year"},"finish_reason":null}],"usage":null,"obfuscation":"nxtvG"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\""},"finish_reason":null}],"usage":null,"obfuscation":"PFt3swUZ"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":"},"finish_reason":null}],"usage":null,"obfuscation":"lgQawg6"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"published"},"finish_reason":null}],"usage":null,"obfuscation":"F"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"195"},"finish_reason":null}],"usage":null,"obfuscation":"ud4baIJ"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"_year"},"finish_reason":null}],"usage":null,"obfuscation":"BRnhd"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"4"},"finish_reason":null}],"usage":null,"obfuscation":"3HNJ4dBuZ"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":"},"finish_reason":null}],"usage":null,"obfuscation":"x51QZRn"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":",\""},"finish_reason":null}],"usage":null,"obfuscation":"LrhAiTL"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"195"},"finish_reason":null}],"usage":null,"obfuscation":"e6CeZtY"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"title"},"finish_reason":null}],"usage":null,"obfuscation":"gbT7W"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"4"},"finish_reason":null}],"usage":null,"obfuscation":"BQRrPbcuY"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"eWNMD"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":",\""},"finish_reason":null}],"usage":null,"obfuscation":"3QgRP4X"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"The"},"finish_reason":null}],"usage":null,"obfuscation":"nhGuB0j"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"title"},"finish_reason":null}],"usage":null,"obfuscation":"WG3RK"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Lord"},"finish_reason":null}],"usage":null,"obfuscation":"0TmEt"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"O8oJ4"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" of"},"finish_reason":null}],"usage":null,"obfuscation":"YrulT4e"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"The"},"finish_reason":null}],"usage":null,"obfuscation":"oXVF3W0"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" the"},"finish_reason":null}],"usage":null,"obfuscation":"UOZ211"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Lord"},"finish_reason":null}],"usage":null,"obfuscation":"VGIHr"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Rings"},"finish_reason":null}],"usage":null,"obfuscation":"i73I"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" of"},"finish_reason":null}],"usage":null,"obfuscation":"r3XB1SO"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"}"},"finish_reason":null}],"usage":null,"obfuscation":"vQmYZeA"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" the"},"finish_reason":null}],"usage":null,"obfuscation":"6V0IM6"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"3et1"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":" Rings"},"finish_reason":null}],"usage":null,"obfuscation":"n8yS"} - data: {"id":"chatcmpl-CZki9S4aKtqtM8RUd4qbiX5kpdYck","object":"chat.completion.chunk","created":1762637073,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":156,"completion_tokens":443,"total_tokens":599,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":384,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"xHYN"} + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"}"},"finish_reason":null}],"usage":null,"obfuscation":"wcyfm9U"} + + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"qmk5"} + + data: {"id":"chatcmpl-DIgTQPz2aGqDZNpclm4MN66JS2WPX","object":"chat.completion.chunk","created":1773345544,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":156,"completion_tokens":189,"total_tokens":345,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":128,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"pR3K"} data: [DONE] @@ -113,4 +117,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 6.243754208s + duration: 1.941595667s diff --git a/providertests/testdata/TestOpenAIObjectGeneration/openai-o4-mini/simple_object.yaml b/providertests/testdata/TestOpenAIObjectGeneration/openai-o4-mini/simple_object.yaml index dcc63f15abff287dbb178af75252cd87d64d9eb2..9c26e978d51c717950aaffa2cdfd6847b9fcad01 100644 --- a/providertests/testdata/TestOpenAIObjectGeneration/openai-o4-mini/simple_object.yaml +++ b/providertests/testdata/TestOpenAIObjectGeneration/openai-o4-mini/simple_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -26,9 +26,9 @@ interactions: uncompressed: true body: | { - "id": "chatcmpl-CZkhy2Semw4FSy9i59cUlONdYx0mh", + "id": "chatcmpl-DIgTJ1ouCm4Yvi5ScFjr91QgkVY20", "object": "chat.completion", - "created": 1762637062, + "created": 1773345537, "model": "o4-mini-2025-04-16", "choices": [ { @@ -65,4 +65,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 3.135977959s + duration: 2.077153083s diff --git a/providertests/testdata/TestOpenAIObjectGeneration/openai-o4-mini/simple_object_streaming.yaml b/providertests/testdata/TestOpenAIObjectGeneration/openai-o4-mini/simple_object_streaming.yaml index c74c84e39b54714ad22081d7e11aaedb20e9a218..c488ec65625dac07435179aee562594363829324 100644 --- a/providertests/testdata/TestOpenAIObjectGeneration/openai-o4-mini/simple_object_streaming.yaml +++ b/providertests/testdata/TestOpenAIObjectGeneration/openai-o4-mini/simple_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/chat/completions method: POST response: @@ -24,37 +24,37 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"chatcmpl-CZki1J9qrKifHLYfd83Fec01s4z8D","object":"chat.completion.chunk","created":1762637065,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"1u4UMeKG"} + data: {"id":"chatcmpl-DIgTLIbtHM3JaHCZ40MrIAbLqJpMh","object":"chat.completion.chunk","created":1773345539,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"role":"assistant","content":"","refusal":null},"finish_reason":null}],"usage":null,"obfuscation":"qOI7gOHE"} - data: {"id":"chatcmpl-CZki1J9qrKifHLYfd83Fec01s4z8D","object":"chat.completion.chunk","created":1762637065,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"{\""},"finish_reason":null}],"usage":null,"obfuscation":"Q5UxGax"} + data: {"id":"chatcmpl-DIgTLIbtHM3JaHCZ40MrIAbLqJpMh","object":"chat.completion.chunk","created":1773345539,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"{\""},"finish_reason":null}],"usage":null,"obfuscation":"MSYDNUM"} - data: {"id":"chatcmpl-CZki1J9qrKifHLYfd83Fec01s4z8D","object":"chat.completion.chunk","created":1762637065,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"age"},"finish_reason":null}],"usage":null,"obfuscation":"PC0HaNl"} + data: {"id":"chatcmpl-DIgTLIbtHM3JaHCZ40MrIAbLqJpMh","object":"chat.completion.chunk","created":1773345539,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"age"},"finish_reason":null}],"usage":null,"obfuscation":"qiq5xiI"} - data: {"id":"chatcmpl-CZki1J9qrKifHLYfd83Fec01s4z8D","object":"chat.completion.chunk","created":1762637065,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":"},"finish_reason":null}],"usage":null,"obfuscation":"lsI4acg"} + data: {"id":"chatcmpl-DIgTLIbtHM3JaHCZ40MrIAbLqJpMh","object":"chat.completion.chunk","created":1773345539,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":"},"finish_reason":null}],"usage":null,"obfuscation":"A42WUXR"} - data: {"id":"chatcmpl-CZki1J9qrKifHLYfd83Fec01s4z8D","object":"chat.completion.chunk","created":1762637065,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"30"},"finish_reason":null}],"usage":null,"obfuscation":"tcdcmfbK"} + data: {"id":"chatcmpl-DIgTLIbtHM3JaHCZ40MrIAbLqJpMh","object":"chat.completion.chunk","created":1773345539,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"30"},"finish_reason":null}],"usage":null,"obfuscation":"FORWFv5V"} - data: {"id":"chatcmpl-CZki1J9qrKifHLYfd83Fec01s4z8D","object":"chat.completion.chunk","created":1762637065,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":",\""},"finish_reason":null}],"usage":null,"obfuscation":"TD1rpZS"} + data: {"id":"chatcmpl-DIgTLIbtHM3JaHCZ40MrIAbLqJpMh","object":"chat.completion.chunk","created":1773345539,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":",\""},"finish_reason":null}],"usage":null,"obfuscation":"C6hBH7A"} - data: {"id":"chatcmpl-CZki1J9qrKifHLYfd83Fec01s4z8D","object":"chat.completion.chunk","created":1762637065,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"city"},"finish_reason":null}],"usage":null,"obfuscation":"IaOcwg"} + data: {"id":"chatcmpl-DIgTLIbtHM3JaHCZ40MrIAbLqJpMh","object":"chat.completion.chunk","created":1773345539,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"city"},"finish_reason":null}],"usage":null,"obfuscation":"Rg4nht"} - data: {"id":"chatcmpl-CZki1J9qrKifHLYfd83Fec01s4z8D","object":"chat.completion.chunk","created":1762637065,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"6cUFm"} + data: {"id":"chatcmpl-DIgTLIbtHM3JaHCZ40MrIAbLqJpMh","object":"chat.completion.chunk","created":1773345539,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"zhpGF"} - data: {"id":"chatcmpl-CZki1J9qrKifHLYfd83Fec01s4z8D","object":"chat.completion.chunk","created":1762637065,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Paris"},"finish_reason":null}],"usage":null,"obfuscation":"2yZjs"} + data: {"id":"chatcmpl-DIgTLIbtHM3JaHCZ40MrIAbLqJpMh","object":"chat.completion.chunk","created":1773345539,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Paris"},"finish_reason":null}],"usage":null,"obfuscation":"FEMF1"} - data: {"id":"chatcmpl-CZki1J9qrKifHLYfd83Fec01s4z8D","object":"chat.completion.chunk","created":1762637065,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\",\""},"finish_reason":null}],"usage":null,"obfuscation":"Q37jl"} + data: {"id":"chatcmpl-DIgTLIbtHM3JaHCZ40MrIAbLqJpMh","object":"chat.completion.chunk","created":1773345539,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\",\""},"finish_reason":null}],"usage":null,"obfuscation":"p0Oqs"} - data: {"id":"chatcmpl-CZki1J9qrKifHLYfd83Fec01s4z8D","object":"chat.completion.chunk","created":1762637065,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"name"},"finish_reason":null}],"usage":null,"obfuscation":"kT7Jci"} + data: {"id":"chatcmpl-DIgTLIbtHM3JaHCZ40MrIAbLqJpMh","object":"chat.completion.chunk","created":1773345539,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"name"},"finish_reason":null}],"usage":null,"obfuscation":"PMLyPm"} - data: {"id":"chatcmpl-CZki1J9qrKifHLYfd83Fec01s4z8D","object":"chat.completion.chunk","created":1762637065,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"ou5VZ"} + data: {"id":"chatcmpl-DIgTLIbtHM3JaHCZ40MrIAbLqJpMh","object":"chat.completion.chunk","created":1773345539,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\":\""},"finish_reason":null}],"usage":null,"obfuscation":"lEUS9"} - data: {"id":"chatcmpl-CZki1J9qrKifHLYfd83Fec01s4z8D","object":"chat.completion.chunk","created":1762637065,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Alice"},"finish_reason":null}],"usage":null,"obfuscation":"AMhVx"} + data: {"id":"chatcmpl-DIgTLIbtHM3JaHCZ40MrIAbLqJpMh","object":"chat.completion.chunk","created":1773345539,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"Alice"},"finish_reason":null}],"usage":null,"obfuscation":"XoQ96"} - data: {"id":"chatcmpl-CZki1J9qrKifHLYfd83Fec01s4z8D","object":"chat.completion.chunk","created":1762637065,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"}"},"finish_reason":null}],"usage":null,"obfuscation":"ZDFb7mY"} + data: {"id":"chatcmpl-DIgTLIbtHM3JaHCZ40MrIAbLqJpMh","object":"chat.completion.chunk","created":1773345539,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{"content":"\"}"},"finish_reason":null}],"usage":null,"obfuscation":"jJ5pkmF"} - data: {"id":"chatcmpl-CZki1J9qrKifHLYfd83Fec01s4z8D","object":"chat.completion.chunk","created":1762637065,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"AQhR"} + data: {"id":"chatcmpl-DIgTLIbtHM3JaHCZ40MrIAbLqJpMh","object":"chat.completion.chunk","created":1773345539,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"usage":null,"obfuscation":"Jw4x"} - data: {"id":"chatcmpl-CZki1J9qrKifHLYfd83Fec01s4z8D","object":"chat.completion.chunk","created":1762637065,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":95,"completion_tokens":290,"total_tokens":385,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":256,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"xEKhD"} + data: {"id":"chatcmpl-DIgTLIbtHM3JaHCZ40MrIAbLqJpMh","object":"chat.completion.chunk","created":1773345539,"model":"o4-mini-2025-04-16","service_tier":"default","system_fingerprint":null,"choices":[],"usage":{"prompt_tokens":95,"completion_tokens":98,"total_tokens":193,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0},"completion_tokens_details":{"reasoning_tokens":64,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0}},"obfuscation":"EIs3WR8"} data: [DONE] @@ -63,4 +63,4 @@ interactions: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 3.874454375s + duration: 1.178218542s diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/multi_tool.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/multi_tool.yaml index 6200528a823029ef8c0f3cf0c58e54124385c8fd..1f857fa035bd0c0cc78d35da8284856731ac48af 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/multi_tool.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/multi_tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_0e6e91029b6ada300168f237eec6608195ad0152f869ad01dc", + "id": "resp_06c9369658d47a830169b319286e2481978ee58c27688418a4", "object": "response", - "created_at": 1760704494, + "created_at": 1773345064, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345066, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -42,25 +44,27 @@ interactions: "model": "gpt-4o-mini-2024-07-18", "output": [ { - "id": "fc_0e6e91029b6ada300168f237efd70c8195aa55d25207351903", + "id": "fc_06c9369658d47a830169b3192a8aa88197a0e98a9b82410435", "type": "function_call", "status": "completed", "arguments": "{\"a\":2,\"b\":3}", - "call_id": "call_OHopAt0ZeLfG0Th5YYgklQUA", + "call_id": "call_Ho1Mm8gWDYTudQDnyEQcs2af", "name": "add" }, { - "id": "fc_0e6e91029b6ada300168f237f056848195b392f4da0c8c085c", + "id": "fc_06c9369658d47a830169b3192a8ab48197849a5cbfde111bab", "type": "function_call", "status": "completed", "arguments": "{\"a\":2,\"b\":3}", - "call_id": "call_CuDiIyPSC4zAkb7l4cjiEBot", + "call_id": "call_LyJki45I73XIhz3QOSFsOsd7", "name": "multiply" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": null, "summary": null @@ -128,15 +132,15 @@ interactions: "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 54, + "input_tokens": 108, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 50, + "output_tokens": 51, "output_tokens_details": { "reasoning_tokens": 0 }, - "total_tokens": 104 + "total_tokens": 159 }, "user": null, "metadata": {} @@ -146,7 +150,7 @@ interactions: - application/json status: 200 OK code: 200 - duration: 1.986247916s + duration: 3.200548834s - id: 1 request: proto: HTTP/1.1 @@ -154,14 +158,14 @@ interactions: proto_minor: 1 content_length: 1266 host: "" - body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS.","role":"system"},{"content":[{"text":"Add and multiply the number 2 and 3","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_OHopAt0ZeLfG0Th5YYgklQUA","name":"add","type":"function_call"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_CuDiIyPSC4zAkb7l4cjiEBot","name":"multiply","type":"function_call"},{"call_id":"call_OHopAt0ZeLfG0Th5YYgklQUA","output":"5","type":"function_call_output"},{"call_id":"call_CuDiIyPSC4zAkb7l4cjiEBot","output":"6","type":"function_call_output"}],"model":"gpt-4o-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers","type":"function"},{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers","type":"function"}]}' + body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS.","role":"system"},{"content":[{"text":"Add and multiply the number 2 and 3","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_Ho1Mm8gWDYTudQDnyEQcs2af","name":"add","type":"function_call"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_LyJki45I73XIhz3QOSFsOsd7","name":"multiply","type":"function_call"},{"call_id":"call_Ho1Mm8gWDYTudQDnyEQcs2af","output":"5","type":"function_call_output"},{"call_id":"call_LyJki45I73XIhz3QOSFsOsd7","output":"6","type":"function_call_output"}],"model":"gpt-4o-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers","type":"function"},{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers","type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -172,15 +176,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_0d01b8c6f6fd8fea0168f237f0b9d88192a55dfc495051641f", + "id": "resp_0f6225818e209e0a0169b3192ad504819dad012c3ce78900d1", "object": "response", - "created_at": 1760704496, + "created_at": 1773345066, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345067, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -188,7 +194,7 @@ interactions: "model": "gpt-4o-mini-2024-07-18", "output": [ { - "id": "msg_0d01b8c6f6fd8fea0168f237f11b3881929b9577533766ce13", + "id": "msg_0f6225818e209e0a0169b3192b5a28819d8a7380e2cc5f43e3", "type": "message", "status": "completed", "content": [ @@ -203,8 +209,10 @@ interactions: } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": null, "summary": null @@ -290,4 +298,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 1.0980445s + duration: 1.32445875s diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/multi_tool_streaming.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/multi_tool_streaming.yaml index 08e8b7dd57e49c75f225dc1b2626f57c8dec8286..b543f60f1ec49d22dd46dafebeee7c3169d9785a 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/multi_tool_streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/multi_tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,80 +25,44 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_00a8e88fa6f940ad0168f237f1dd888193a1ef5c9847dab08c","object":"response","created_at":1760704498,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_051ddccacfbdf89b0169b3192ccafc81939f9c25e3b8d1da9c","object":"response","created_at":1773345068,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_00a8e88fa6f940ad0168f237f1dd888193a1ef5c9847dab08c","object":"response","created_at":1760704498,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_051ddccacfbdf89b0169b3192ccafc81939f9c25e3b8d1da9c","object":"response","created_at":1773345068,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"fc_00a8e88fa6f940ad0168f237f314c08193b9a1bbcfcac14cf0","type":"function_call","status":"in_progress","arguments":"","call_id":"call_3kTB5GwkneSeSzqRU0vGYPDL","name":"add"}} + data: {"type":"response.output_item.added","item":{"id":"fc_051ddccacfbdf89b0169b3192e40888193a4298efae5129a6d","type":"function_call","status":"in_progress","arguments":"","call_id":"call_OZDDKUbHklxRCGXcHori821P","name":"add"},"output_index":0,"sequence_number":2} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":3,"item_id":"fc_00a8e88fa6f940ad0168f237f314c08193b9a1bbcfcac14cf0","output_index":0,"delta":"{","obfuscation":"MYJbzQXS8koAMnE"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":4,"item_id":"fc_00a8e88fa6f940ad0168f237f314c08193b9a1bbcfcac14cf0","output_index":0,"delta":"\"a","obfuscation":"QsLZoZF7HORhVg"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":5,"item_id":"fc_00a8e88fa6f940ad0168f237f314c08193b9a1bbcfcac14cf0","output_index":0,"delta":"\":","obfuscation":"t1wiWnFzF3XGK3"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":6,"item_id":"fc_00a8e88fa6f940ad0168f237f314c08193b9a1bbcfcac14cf0","output_index":0,"delta":"2,","obfuscation":"RGkyrnS7pyZ4Dc"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":7,"item_id":"fc_00a8e88fa6f940ad0168f237f314c08193b9a1bbcfcac14cf0","output_index":0,"delta":"\"b","obfuscation":"EaoxiEhgZ08nqy"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":8,"item_id":"fc_00a8e88fa6f940ad0168f237f314c08193b9a1bbcfcac14cf0","output_index":0,"delta":"\":","obfuscation":"JVvJNSMiELxKzO"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":9,"item_id":"fc_00a8e88fa6f940ad0168f237f314c08193b9a1bbcfcac14cf0","output_index":0,"delta":"3}","obfuscation":"x4XeMEEEMraVP6"} + data: {"type":"response.function_call_arguments.delta","delta":"{\"a\":2,\"b\":3}","item_id":"fc_051ddccacfbdf89b0169b3192e40888193a4298efae5129a6d","obfuscation":"aHM","output_index":0,"sequence_number":3} event: response.function_call_arguments.done - data: {"type":"response.function_call_arguments.done","sequence_number":10,"item_id":"fc_00a8e88fa6f940ad0168f237f314c08193b9a1bbcfcac14cf0","output_index":0,"arguments":"{\"a\":2,\"b\":3}"} + data: {"type":"response.function_call_arguments.done","arguments":"{\"a\":2,\"b\":3}","item_id":"fc_051ddccacfbdf89b0169b3192e40888193a4298efae5129a6d","output_index":0,"sequence_number":4} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":11,"output_index":0,"item":{"id":"fc_00a8e88fa6f940ad0168f237f314c08193b9a1bbcfcac14cf0","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_3kTB5GwkneSeSzqRU0vGYPDL","name":"add"}} + data: {"type":"response.output_item.done","item":{"id":"fc_051ddccacfbdf89b0169b3192e40888193a4298efae5129a6d","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_OZDDKUbHklxRCGXcHori821P","name":"add"},"output_index":0,"sequence_number":5} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":12,"output_index":1,"item":{"id":"fc_00a8e88fa6f940ad0168f237f36d5481939649569c1b43bad3","type":"function_call","status":"in_progress","arguments":"","call_id":"call_Jt8bB5S9YYfmIi76VQmbBbRU","name":"multiply"}} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":13,"item_id":"fc_00a8e88fa6f940ad0168f237f36d5481939649569c1b43bad3","output_index":1,"delta":"{","obfuscation":"1RSWOvhsqosKvNT"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":14,"item_id":"fc_00a8e88fa6f940ad0168f237f36d5481939649569c1b43bad3","output_index":1,"delta":"\"a","obfuscation":"q5YBU194JPt2K7"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":15,"item_id":"fc_00a8e88fa6f940ad0168f237f36d5481939649569c1b43bad3","output_index":1,"delta":"\":","obfuscation":"0ST7G5t6xpPBbm"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":16,"item_id":"fc_00a8e88fa6f940ad0168f237f36d5481939649569c1b43bad3","output_index":1,"delta":"2,","obfuscation":"fehmIw5XYwhSmd"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":17,"item_id":"fc_00a8e88fa6f940ad0168f237f36d5481939649569c1b43bad3","output_index":1,"delta":"\"b","obfuscation":"aTdnl1XrjAoVfk"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":18,"item_id":"fc_00a8e88fa6f940ad0168f237f36d5481939649569c1b43bad3","output_index":1,"delta":"\":","obfuscation":"MZxsdfhi5quYaN"} + data: {"type":"response.output_item.added","item":{"id":"fc_051ddccacfbdf89b0169b3192e409881939a4682082a25ca52","type":"function_call","status":"in_progress","arguments":"","call_id":"call_UwFmMZFxz1H4WnsRzFuWhQIK","name":"multiply"},"output_index":1,"sequence_number":6} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":19,"item_id":"fc_00a8e88fa6f940ad0168f237f36d5481939649569c1b43bad3","output_index":1,"delta":"3}","obfuscation":"oo1Zml2PxLLsqt"} + data: {"type":"response.function_call_arguments.delta","delta":"{\"a\":2,\"b\":3}","item_id":"fc_051ddccacfbdf89b0169b3192e409881939a4682082a25ca52","obfuscation":"XFH","output_index":1,"sequence_number":7} event: response.function_call_arguments.done - data: {"type":"response.function_call_arguments.done","sequence_number":20,"item_id":"fc_00a8e88fa6f940ad0168f237f36d5481939649569c1b43bad3","output_index":1,"arguments":"{\"a\":2,\"b\":3}"} + data: {"type":"response.function_call_arguments.done","arguments":"{\"a\":2,\"b\":3}","item_id":"fc_051ddccacfbdf89b0169b3192e409881939a4682082a25ca52","output_index":1,"sequence_number":8} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":21,"output_index":1,"item":{"id":"fc_00a8e88fa6f940ad0168f237f36d5481939649569c1b43bad3","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_Jt8bB5S9YYfmIi76VQmbBbRU","name":"multiply"}} + data: {"type":"response.output_item.done","item":{"id":"fc_051ddccacfbdf89b0169b3192e409881939a4682082a25ca52","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_UwFmMZFxz1H4WnsRzFuWhQIK","name":"multiply"},"output_index":1,"sequence_number":9} event: response.completed - data: {"type":"response.completed","sequence_number":22,"response":{"id":"resp_00a8e88fa6f940ad0168f237f1dd888193a1ef5c9847dab08c","object":"response","created_at":1760704498,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[{"id":"fc_00a8e88fa6f940ad0168f237f314c08193b9a1bbcfcac14cf0","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_3kTB5GwkneSeSzqRU0vGYPDL","name":"add"},{"id":"fc_00a8e88fa6f940ad0168f237f36d5481939649569c1b43bad3","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_Jt8bB5S9YYfmIi76VQmbBbRU","name":"multiply"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":52,"input_tokens_details":{"cached_tokens":0},"output_tokens":50,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":102},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_051ddccacfbdf89b0169b3192ccafc81939f9c25e3b8d1da9c","object":"response","created_at":1773345068,"status":"completed","background":false,"completed_at":1773345070,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[{"id":"fc_051ddccacfbdf89b0169b3192e40888193a4298efae5129a6d","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_OZDDKUbHklxRCGXcHori821P","name":"add"},{"id":"fc_051ddccacfbdf89b0169b3192e409881939a4682082a25ca52","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_UwFmMZFxz1H4WnsRzFuWhQIK","name":"multiply"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":104,"input_tokens_details":{"cached_tokens":0},"output_tokens":51,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":155},"user":null,"metadata":{}},"sequence_number":10} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 484.945334ms + duration: 957.746791ms - id: 1 request: proto: HTTP/1.1 @@ -106,14 +70,14 @@ interactions: proto_minor: 1 content_length: 1263 host: "" - body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":[{"text":"Add and multiply the number 2 and 3","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_3kTB5GwkneSeSzqRU0vGYPDL","name":"add","type":"function_call"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_Jt8bB5S9YYfmIi76VQmbBbRU","name":"multiply","type":"function_call"},{"call_id":"call_3kTB5GwkneSeSzqRU0vGYPDL","output":"5","type":"function_call_output"},{"call_id":"call_Jt8bB5S9YYfmIi76VQmbBbRU","output":"6","type":"function_call_output"}],"model":"gpt-4o-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers","type":"function"},{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers","type":"function"}],"stream":true}' + body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":[{"text":"Add and multiply the number 2 and 3","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_OZDDKUbHklxRCGXcHori821P","name":"add","type":"function_call"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_UwFmMZFxz1H4WnsRzFuWhQIK","name":"multiply","type":"function_call"},{"call_id":"call_OZDDKUbHklxRCGXcHori821P","output":"5","type":"function_call_output"},{"call_id":"call_UwFmMZFxz1H4WnsRzFuWhQIK","output":"6","type":"function_call_output"}],"model":"gpt-4o-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers","type":"function"},{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers","type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -123,110 +87,110 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0dce58b46fca39020168f237f414988197b9530f9cacc71f05","object":"response","created_at":1760704500,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_03f81ba30cbe40970169b3192e9e088196b20448362cb2f58f","object":"response","created_at":1773345070,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0dce58b46fca39020168f237f414988197b9530f9cacc71f05","object":"response","created_at":1760704500,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_03f81ba30cbe40970169b3192e9e088196b20448362cb2f58f","object":"response","created_at":1773345070,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":0,"sequence_number":2} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":3,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":3} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":4,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":"The","logprobs":[],"obfuscation":"KXnqGA8frpb3Z"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"The","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"qAoGwhcl0mmJj","output_index":0,"sequence_number":4} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":5,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":" sum","logprobs":[],"obfuscation":"muAcpURnEZNO"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" sum","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"IDMGb0V2Wo9T","output_index":0,"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":" of","logprobs":[],"obfuscation":"NiiFQNE8Vbx3m"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" of","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"n2s6f8i0aq9rt","output_index":0,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":" ","logprobs":[],"obfuscation":"iedCm3V4NG5VwKG"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" ","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"bdypggfsMoQMqLb","output_index":0,"sequence_number":7} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":"2","logprobs":[],"obfuscation":"DpkpH9aX7QlOgRI"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"2","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"dKExYa2KxoxJ5nX","output_index":0,"sequence_number":8} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":" and","logprobs":[],"obfuscation":"JKO99mU6Fzjd"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" and","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"rPKLgPWYCdIx","output_index":0,"sequence_number":9} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":" ","logprobs":[],"obfuscation":"DKM0PLMlWtpJ2db"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" ","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"yh7lvlbaOLoCUKR","output_index":0,"sequence_number":10} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":"3","logprobs":[],"obfuscation":"mNeixBaCsE7BA3E"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"3","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"td4dyqvjDbmIdjn","output_index":0,"sequence_number":11} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":12,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":" is","logprobs":[],"obfuscation":"bVAgqZAo0CgC6"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" is","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"JtkMBVtrOTRZ1","output_index":0,"sequence_number":12} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":13,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":" **","logprobs":[],"obfuscation":"jSwrxR8I6VXfC"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" **","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"EMwU8JS5km4ax","output_index":0,"sequence_number":13} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":14,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":"5","logprobs":[],"obfuscation":"XLGPJZ5j6iFMyJA"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"5","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"GeluUzHRL1lzpnw","output_index":0,"sequence_number":14} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":15,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":"**,","logprobs":[],"obfuscation":"t6jjUQXk4bJje"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"**,","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"HE4A57xivBnAW","output_index":0,"sequence_number":15} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":16,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":" and","logprobs":[],"obfuscation":"lO0lZAk18hmY"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" and","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"C7diJuQ63b9T","output_index":0,"sequence_number":16} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":17,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":" the","logprobs":[],"obfuscation":"mWdiBmSqYvRX"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" the","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"pbLnbdqWTPX3","output_index":0,"sequence_number":17} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":18,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":" product","logprobs":[],"obfuscation":"8JcFiI34"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" product","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"hYzibBX9","output_index":0,"sequence_number":18} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":19,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":" of","logprobs":[],"obfuscation":"TPkzDFwQxJbSv"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" of","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"73JJGCaqZl5hG","output_index":0,"sequence_number":19} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":20,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":" ","logprobs":[],"obfuscation":"LJlbhe5chuMFaet"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" ","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"i28G3RBkaTreeNw","output_index":0,"sequence_number":20} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":21,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":"2","logprobs":[],"obfuscation":"b0aoUxaTomg3dRS"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"2","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"BbljDec1HqsPA3d","output_index":0,"sequence_number":21} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":22,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":" and","logprobs":[],"obfuscation":"87UGzV4meZ0c"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" and","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"CDlw7VIwZL5r","output_index":0,"sequence_number":22} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":23,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":" ","logprobs":[],"obfuscation":"DqZaRc0KL1HCaa7"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" ","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"aLU8xTlOgFeaLG6","output_index":0,"sequence_number":23} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":24,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":"3","logprobs":[],"obfuscation":"2XztAgjOUqo2XhP"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"3","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"OZp1LoSO41VhaAY","output_index":0,"sequence_number":24} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":25,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":" is","logprobs":[],"obfuscation":"5R24VMFP7z2bO"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" is","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"UEU9rq9Hx8fJg","output_index":0,"sequence_number":25} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":26,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":" **","logprobs":[],"obfuscation":"4h58jpYffdpGo"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" **","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"9Oydss0TP23yD","output_index":0,"sequence_number":26} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":27,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":"6","logprobs":[],"obfuscation":"Btim10fw2C3Hmlh"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"6","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"9arKkcOdxDVow6m","output_index":0,"sequence_number":27} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":28,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":"**","logprobs":[],"obfuscation":"OPI3mnY896mA1s"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"**","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"VzlVabUmszXW5a","output_index":0,"sequence_number":28} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":29,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"delta":".","logprobs":[],"obfuscation":"2VzoXZZJZ0dW8MY"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".","item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"obfuscation":"aDRQjz7l5Lxt5jd","output_index":0,"sequence_number":29} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":30,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"text":"The sum of 2 and 3 is **5**, and the product of 2 and 3 is **6**.","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","logprobs":[],"output_index":0,"sequence_number":30,"text":"The sum of 2 and 3 is **5**, and the product of 2 and 3 is **6**."} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":31,"item_id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"The sum of 2 and 3 is **5**, and the product of 2 and 3 is **6**."}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"The sum of 2 and 3 is **5**, and the product of 2 and 3 is **6**."},"sequence_number":31} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":32,"output_index":0,"item":{"id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The sum of 2 and 3 is **5**, and the product of 2 and 3 is **6**."}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The sum of 2 and 3 is **5**, and the product of 2 and 3 is **6**."}],"role":"assistant"},"output_index":0,"sequence_number":32} event: response.completed - data: {"type":"response.completed","sequence_number":33,"response":{"id":"resp_0dce58b46fca39020168f237f414988197b9530f9cacc71f05","object":"response","created_at":1760704500,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[{"id":"msg_0dce58b46fca39020168f237f489188197a1fdc7d8f7aa79f8","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The sum of 2 and 3 is **5**, and the product of 2 and 3 is **6**."}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":152,"input_tokens_details":{"cached_tokens":0},"output_tokens":28,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":180},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_03f81ba30cbe40970169b3192e9e088196b20448362cb2f58f","object":"response","created_at":1773345070,"status":"completed","background":false,"completed_at":1773345071,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[{"id":"msg_03f81ba30cbe40970169b3192f975c8196ae7191841f725909","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The sum of 2 and 3 is **5**, and the product of 2 and 3 is **6**."}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":152,"input_tokens_details":{"cached_tokens":0},"output_tokens":28,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":180},"user":null,"metadata":{}},"sequence_number":33} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 413.404917ms + duration: 261.065167ms diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/simple.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/simple.yaml index c520cfc5a37a158b710814a040a863489cce0a57..92e9847e9b6c7046001424ba866ff4f790c99c20 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/simple.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_02fb59ed5cb3cadf0168f237e8ce908195baa9463cad5776cb", + "id": "resp_0fb1614857f93b000169b301608d788196b418da95b3216762", "object": "response", - "created_at": 1760704488, + "created_at": 1773338976, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773338977, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -42,7 +44,7 @@ interactions: "model": "gpt-4o-mini-2024-07-18", "output": [ { - "id": "msg_02fb59ed5cb3cadf0168f237e93f388195afee2cc6277cfaa0", + "id": "msg_0fb1614857f93b000169b3016144c0819690589659acec505e", "type": "message", "status": "completed", "content": [ @@ -57,8 +59,10 @@ interactions: } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": null, "summary": null @@ -97,4 +101,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 701.807792ms + duration: 963.122875ms diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/simple_streaming.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/simple_streaming.yaml index 68497028140dc4b4088f3dd5dffef9ef0434cdfe..9e48d5d2f0eceea3d64178b702e7d1e2bfa1a92f 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/simple_streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,38 +25,53 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_05eea6934a1b65980168f237e98214819693e879eb9deb3718","object":"response","created_at":1760704489,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_064593f70a5b52690169b301617fdc81a1965aa55499ef859e","object":"response","created_at":1773338977,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_05eea6934a1b65980168f237e98214819693e879eb9deb3718","object":"response","created_at":1760704489,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_064593f70a5b52690169b301617fdc81a1965aa55499ef859e","object":"response","created_at":1773338977,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"msg_05eea6934a1b65980168f237ea15448196bb4186395ed2288d","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_064593f70a5b52690169b3016226f081a1810f69d61a7e82b0","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":0,"sequence_number":2} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":3,"item_id":"msg_05eea6934a1b65980168f237ea15448196bb4186395ed2288d","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_064593f70a5b52690169b3016226f081a1810f69d61a7e82b0","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":3} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":4,"item_id":"msg_05eea6934a1b65980168f237ea15448196bb4186395ed2288d","output_index":0,"content_index":0,"delta":"Oi","logprobs":[],"obfuscation":"PLeCwMMZIiZ7tE"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Hi","item_id":"msg_064593f70a5b52690169b3016226f081a1810f69d61a7e82b0","logprobs":[],"obfuscation":"irbtAeXgiV0Urq","output_index":0,"sequence_number":4} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":5,"item_id":"msg_05eea6934a1b65980168f237ea15448196bb4186395ed2288d","output_index":0,"content_index":0,"delta":"!","logprobs":[],"obfuscation":"VYhGbSW2JCl6w1K"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" in","item_id":"msg_064593f70a5b52690169b3016226f081a1810f69d61a7e82b0","logprobs":[],"obfuscation":"8Bj8MpDXsxfNJ","output_index":0,"sequence_number":5} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" Portuguese","item_id":"msg_064593f70a5b52690169b3016226f081a1810f69d61a7e82b0","logprobs":[],"obfuscation":"wr2GS","output_index":0,"sequence_number":6} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" is","item_id":"msg_064593f70a5b52690169b3016226f081a1810f69d61a7e82b0","logprobs":[],"obfuscation":"0zTahere49C9B","output_index":0,"sequence_number":7} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" \"","item_id":"msg_064593f70a5b52690169b3016226f081a1810f69d61a7e82b0","logprobs":[],"obfuscation":"t4z6fq8E79w4Oq","output_index":0,"sequence_number":8} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":"Olá","item_id":"msg_064593f70a5b52690169b3016226f081a1810f69d61a7e82b0","logprobs":[],"obfuscation":"WV62NUnCq2yOS","output_index":0,"sequence_number":9} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":"!\"","item_id":"msg_064593f70a5b52690169b3016226f081a1810f69d61a7e82b0","logprobs":[],"obfuscation":"8egyvrVZrARLcR","output_index":0,"sequence_number":10} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":6,"item_id":"msg_05eea6934a1b65980168f237ea15448196bb4186395ed2288d","output_index":0,"content_index":0,"text":"Oi!","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_064593f70a5b52690169b3016226f081a1810f69d61a7e82b0","logprobs":[],"output_index":0,"sequence_number":11,"text":"Hi in Portuguese is \"Olá!\""} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":7,"item_id":"msg_05eea6934a1b65980168f237ea15448196bb4186395ed2288d","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Oi!"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_064593f70a5b52690169b3016226f081a1810f69d61a7e82b0","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Hi in Portuguese is \"Olá!\""},"sequence_number":12} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":8,"output_index":0,"item":{"id":"msg_05eea6934a1b65980168f237ea15448196bb4186395ed2288d","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Oi!"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_064593f70a5b52690169b3016226f081a1810f69d61a7e82b0","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Hi in Portuguese is \"Olá!\""}],"role":"assistant"},"output_index":0,"sequence_number":13} event: response.completed - data: {"type":"response.completed","sequence_number":9,"response":{"id":"resp_05eea6934a1b65980168f237e98214819693e879eb9deb3718","object":"response","created_at":1760704489,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[{"id":"msg_05eea6934a1b65980168f237ea15448196bb4186395ed2288d","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Oi!"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":20,"input_tokens_details":{"cached_tokens":0},"output_tokens":3,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":23},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_064593f70a5b52690169b301617fdc81a1965aa55499ef859e","object":"response","created_at":1773338977,"status":"completed","background":false,"completed_at":1773338978,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[{"id":"msg_064593f70a5b52690169b3016226f081a1810f69d61a7e82b0","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Hi in Portuguese is \"Olá!\""}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":20,"input_tokens_details":{"cached_tokens":0},"output_tokens":8,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":28},"user":null,"metadata":{}},"sequence_number":14} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 413.059208ms + duration: 208.343917ms diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/tool.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/tool.yaml index ee83f6ab34298e5a38452ff1a80f3c1e30e49193..56523fa839a9629c3c180cb07c7df431013d3771 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/tool.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_010f0015da2b88280168f237ea6c18819e8ce2b72d44ac08b4", + "id": "resp_0589cd5cec6943ec0169b3191fa6288190ba41bc84bbb13455", "object": "response", - "created_at": 1760704490, + "created_at": 1773345055, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345056, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -42,17 +44,19 @@ interactions: "model": "gpt-4o-mini-2024-07-18", "output": [ { - "id": "fc_010f0015da2b88280168f237eb2b7c819eae6470cdee55da77", + "id": "fc_0589cd5cec6943ec0169b3192048b48190b7a029b212da3cf0", "type": "function_call", "status": "completed", "arguments": "{\"location\":\"Florence, Italy\"}", - "call_id": "call_59vzLlFlML0RoHvlJxgWZZ7m", + "call_id": "call_fvLU8DzDYjJa5V2k9Nsvq3ls", "name": "weather" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": null, "summary": null @@ -110,7 +114,7 @@ interactions: - application/json status: 200 OK code: 200 - duration: 1.0454615s + duration: 2.063641541s - id: 1 request: proto: HTTP/1.1 @@ -118,14 +122,14 @@ interactions: proto_minor: 1 content_length: 724 host: "" - body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"system"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_59vzLlFlML0RoHvlJxgWZZ7m","name":"weather","type":"function_call"},{"call_id":"call_59vzLlFlML0RoHvlJxgWZZ7m","output":"40 C","type":"function_call_output"}],"model":"gpt-4o-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}' + body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"system"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_fvLU8DzDYjJa5V2k9Nsvq3ls","name":"weather","type":"function_call"},{"call_id":"call_fvLU8DzDYjJa5V2k9Nsvq3ls","output":"40 C","type":"function_call_output"}],"model":"gpt-4o-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -136,15 +140,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_0de529b5396cb7cc0168f237eb7d9c81a3aca3fef6a9749a5f", + "id": "resp_015a0cae6d9789840169b319218ff881a281cc1f960f86416b", "object": "response", - "created_at": 1760704491, + "created_at": 1773345057, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345058, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -152,7 +158,7 @@ interactions: "model": "gpt-4o-mini-2024-07-18", "output": [ { - "id": "msg_0de529b5396cb7cc0168f237ebf0ec81a39a23afc61ca30582", + "id": "msg_015a0cae6d9789840169b31922616c81a28c661e338d69de27", "type": "message", "status": "completed", "content": [ @@ -160,15 +166,17 @@ interactions: "type": "output_text", "annotations": [], "logprobs": [], - "text": "The current temperature in Florence, Italy, is 40\u00b0C. If you need more details like humidity or forecast, just let me know!" + "text": "The current temperature in Florence, Italy, is 40\u00b0C. If you need more details about the weather, feel free to ask!" } ], "role": "assistant" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": null, "summary": null @@ -212,11 +220,11 @@ interactions: "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 30, + "output_tokens": 29, "output_tokens_details": { "reasoning_tokens": 0 }, - "total_tokens": 113 + "total_tokens": 112 }, "user": null, "metadata": {} @@ -226,4 +234,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 1.421569667s + duration: 2.210815041s diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/tool_streaming.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/tool_streaming.yaml index 13e5d7737153e94bcc3cdca75c46883a13aa9bde..b09c30e05ec500addcca3df3f1ac7bc93ec59c3e 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/tool_streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o-mini/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,53 +25,53 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0915a342b22b18d50168f237ece814819fbbac6dc48dd0edb2","object":"response","created_at":1760704492,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_04f33c18250e523b0169b31922e0c88190805966184c08e1a7","object":"response","created_at":1773345058,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0915a342b22b18d50168f237ece814819fbbac6dc48dd0edb2","object":"response","created_at":1760704492,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_04f33c18250e523b0169b31922e0c88190805966184c08e1a7","object":"response","created_at":1773345058,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"fc_0915a342b22b18d50168f237ed7be4819fb7686ac852408033","type":"function_call","status":"in_progress","arguments":"","call_id":"call_ytBD13XK47ACiCTAyn4RZCSb","name":"weather"}} + data: {"type":"response.output_item.added","item":{"id":"fc_04f33c18250e523b0169b3192358588190a1c63040e606ce3c","type":"function_call","status":"in_progress","arguments":"","call_id":"call_yLQoefRSgy3mxdgHFwx1248W","name":"weather"},"output_index":0,"sequence_number":2} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":3,"item_id":"fc_0915a342b22b18d50168f237ed7be4819fb7686ac852408033","output_index":0,"delta":"{\"","obfuscation":"Hrtnjbqy71fTf2"} + data: {"type":"response.function_call_arguments.delta","delta":"{\"","item_id":"fc_04f33c18250e523b0169b3192358588190a1c63040e606ce3c","obfuscation":"H2IjffAFGAlEeS","output_index":0,"sequence_number":3} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":4,"item_id":"fc_0915a342b22b18d50168f237ed7be4819fb7686ac852408033","output_index":0,"delta":"location","obfuscation":"pzYupDDV"} + data: {"type":"response.function_call_arguments.delta","delta":"location","item_id":"fc_04f33c18250e523b0169b3192358588190a1c63040e606ce3c","obfuscation":"PNOkzPWf","output_index":0,"sequence_number":4} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":5,"item_id":"fc_0915a342b22b18d50168f237ed7be4819fb7686ac852408033","output_index":0,"delta":"\":\"","obfuscation":"l8BCOLb4pKgPH"} + data: {"type":"response.function_call_arguments.delta","delta":"\":\"","item_id":"fc_04f33c18250e523b0169b3192358588190a1c63040e606ce3c","obfuscation":"Lb9zjSGAjqEB4","output_index":0,"sequence_number":5} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":6,"item_id":"fc_0915a342b22b18d50168f237ed7be4819fb7686ac852408033","output_index":0,"delta":"Flor","obfuscation":"XuNP9JDMdMXF"} + data: {"type":"response.function_call_arguments.delta","delta":"Flor","item_id":"fc_04f33c18250e523b0169b3192358588190a1c63040e606ce3c","obfuscation":"AAV9dhXnnd8A","output_index":0,"sequence_number":6} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":7,"item_id":"fc_0915a342b22b18d50168f237ed7be4819fb7686ac852408033","output_index":0,"delta":"ence","obfuscation":"TFnsqDERhUnk"} + data: {"type":"response.function_call_arguments.delta","delta":"ence","item_id":"fc_04f33c18250e523b0169b3192358588190a1c63040e606ce3c","obfuscation":"nLkP3PChOu1c","output_index":0,"sequence_number":7} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":8,"item_id":"fc_0915a342b22b18d50168f237ed7be4819fb7686ac852408033","output_index":0,"delta":",","obfuscation":"Ot0Lx95tLZ6T2MK"} + data: {"type":"response.function_call_arguments.delta","delta":",","item_id":"fc_04f33c18250e523b0169b3192358588190a1c63040e606ce3c","obfuscation":"dnrqYFrPaP3XSvU","output_index":0,"sequence_number":8} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":9,"item_id":"fc_0915a342b22b18d50168f237ed7be4819fb7686ac852408033","output_index":0,"delta":" Italy","obfuscation":"6x0z1jEIf7"} + data: {"type":"response.function_call_arguments.delta","delta":" Italy","item_id":"fc_04f33c18250e523b0169b3192358588190a1c63040e606ce3c","obfuscation":"CpEyj9U0LV","output_index":0,"sequence_number":9} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":10,"item_id":"fc_0915a342b22b18d50168f237ed7be4819fb7686ac852408033","output_index":0,"delta":"\"}","obfuscation":"XxvQGBcCf9Gh8t"} + data: {"type":"response.function_call_arguments.delta","delta":"\"}","item_id":"fc_04f33c18250e523b0169b3192358588190a1c63040e606ce3c","obfuscation":"PBFRZZs6gzCsDb","output_index":0,"sequence_number":10} event: response.function_call_arguments.done - data: {"type":"response.function_call_arguments.done","sequence_number":11,"item_id":"fc_0915a342b22b18d50168f237ed7be4819fb7686ac852408033","output_index":0,"arguments":"{\"location\":\"Florence, Italy\"}"} + data: {"type":"response.function_call_arguments.done","arguments":"{\"location\":\"Florence, Italy\"}","item_id":"fc_04f33c18250e523b0169b3192358588190a1c63040e606ce3c","output_index":0,"sequence_number":11} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":12,"output_index":0,"item":{"id":"fc_0915a342b22b18d50168f237ed7be4819fb7686ac852408033","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_ytBD13XK47ACiCTAyn4RZCSb","name":"weather"}} + data: {"type":"response.output_item.done","item":{"id":"fc_04f33c18250e523b0169b3192358588190a1c63040e606ce3c","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_yLQoefRSgy3mxdgHFwx1248W","name":"weather"},"output_index":0,"sequence_number":12} event: response.completed - data: {"type":"response.completed","sequence_number":13,"response":{"id":"resp_0915a342b22b18d50168f237ece814819fbbac6dc48dd0edb2","object":"response","created_at":1760704492,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[{"id":"fc_0915a342b22b18d50168f237ed7be4819fb7686ac852408033","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_ytBD13XK47ACiCTAyn4RZCSb","name":"weather"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":58,"input_tokens_details":{"cached_tokens":0},"output_tokens":17,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":75},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_04f33c18250e523b0169b31922e0c88190805966184c08e1a7","object":"response","created_at":1773345058,"status":"completed","background":false,"completed_at":1773345060,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[{"id":"fc_04f33c18250e523b0169b3192358588190a1c63040e606ce3c","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_yLQoefRSgy3mxdgHFwx1248W","name":"weather"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":58,"input_tokens_details":{"cached_tokens":0},"output_tokens":17,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":75},"user":null,"metadata":{}},"sequence_number":13} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 236.516125ms + duration: 281.359792ms - id: 1 request: proto: HTTP/1.1 @@ -79,14 +79,14 @@ interactions: proto_minor: 1 content_length: 738 host: "" - body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"system"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_ytBD13XK47ACiCTAyn4RZCSb","name":"weather","type":"function_call"},{"call_id":"call_ytBD13XK47ACiCTAyn4RZCSb","output":"40 C","type":"function_call_output"}],"model":"gpt-4o-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}' + body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"system"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_yLQoefRSgy3mxdgHFwx1248W","name":"weather","type":"function_call"},{"call_id":"call_yLQoefRSgy3mxdgHFwx1248W","output":"40 C","type":"function_call_output"}],"model":"gpt-4o-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -96,116 +96,122 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_03b372deeab9afef0168f237edcaac8195a4aa3d164255738c","object":"response","created_at":1760704493,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_0b878a1dda64a2180169b31925d07081a085b212c597c52037","object":"response","created_at":1773345061,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_03b372deeab9afef0168f237edcaac8195a4aa3d164255738c","object":"response","created_at":1760704493,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_0b878a1dda64a2180169b31925d07081a085b212c597c52037","object":"response","created_at":1773345061,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":0,"sequence_number":2} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":3,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":3} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":4,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":"The","logprobs":[],"obfuscation":"LbJ0zrf2Xlbtt"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"The","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"2GgLhn5npmyeu","output_index":0,"sequence_number":4} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":5,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" current","logprobs":[],"obfuscation":"gSB6Ljso"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" weather","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"Q7ofTjsq","output_index":0,"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" temperature","logprobs":[],"obfuscation":"6HSV"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" in","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"T4igl5YWjSeVY","output_index":0,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" in","logprobs":[],"obfuscation":"2olcAesqOKi1y"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Florence","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"rRL2oec","output_index":0,"sequence_number":7} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" Florence","logprobs":[],"obfuscation":"nbgdzjL"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"boxLx8AZwLgqH2D","output_index":0,"sequence_number":8} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":",","logprobs":[],"obfuscation":"YoZssiZgz5zHS6h"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Italy","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"vUgz4IkM9M","output_index":0,"sequence_number":9} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" Italy","logprobs":[],"obfuscation":"02oJoNSkie"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"km5IFAnYv4xCD09","output_index":0,"sequence_number":10} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":",","logprobs":[],"obfuscation":"pez2xfiPiFc29Ho"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" is","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"f3MJphlJc13in","output_index":0,"sequence_number":11} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":12,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" is","logprobs":[],"obfuscation":"MFk9ejbypODoX"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" currently","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"CwiLJB","output_index":0,"sequence_number":12} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":13,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" ","logprobs":[],"obfuscation":"6XX7qV3SfkXCP3E"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" ","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"w1DHuhC0gZ03g5d","output_index":0,"sequence_number":13} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":14,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":"40","logprobs":[],"obfuscation":"staQ8SeYDAvuUZ"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"40","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"2pxlgXyTwuMbJH","output_index":0,"sequence_number":14} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":15,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":"°C","logprobs":[],"obfuscation":"jS2kbp5xGRAQKR"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"°C","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"i3eXFnvM19ehGg","output_index":0,"sequence_number":15} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":16,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":".","logprobs":[],"obfuscation":"GhbVrcMoP8Je3IX"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"OoATSshXGtYhboY","output_index":0,"sequence_number":16} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":17,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" If","logprobs":[],"obfuscation":"aRk18WTNA45gH"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" It","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"hevuPRf6bIpWI","output_index":0,"sequence_number":17} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":18,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" you","logprobs":[],"obfuscation":"kbEO7bKGPMTR"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" seems","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"s27XnKZ17D","output_index":0,"sequence_number":18} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":19,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" need","logprobs":[],"obfuscation":"k3UWS3v8OLR"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" quite","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"ITl0MvUuId","output_index":0,"sequence_number":19} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":20,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" more","logprobs":[],"obfuscation":"q3E8iPZa3bR"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" hot","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"hQPClupGmAnA","output_index":0,"sequence_number":20} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":21,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" details","logprobs":[],"obfuscation":"4PXIjoSv"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"!","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"h7hs5jMKdRAisZE","output_index":0,"sequence_number":21} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":22,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" about","logprobs":[],"obfuscation":"QIjhgtABf3"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Make","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"2xz6ceFkxr1","output_index":0,"sequence_number":22} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":23,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" the","logprobs":[],"obfuscation":"jJELxprdIxCs"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" sure","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"ByBlZgxCgUM","output_index":0,"sequence_number":23} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":24,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" weather","logprobs":[],"obfuscation":"2uDTEcSy"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" to","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"8b0DQ7a2BwE6y","output_index":0,"sequence_number":24} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":25,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" conditions","logprobs":[],"obfuscation":"8xVDS"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" stay","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"lo8AvaybLhZ","output_index":0,"sequence_number":25} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":26,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":",","logprobs":[],"obfuscation":"TioHCr0j04ibL6K"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" hydrated","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"Z9ewIaO","output_index":0,"sequence_number":26} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":27,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" feel","logprobs":[],"obfuscation":"KW1peE4VWsd"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" and","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"jvLwHjlPABiA","output_index":0,"sequence_number":27} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":28,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" free","logprobs":[],"obfuscation":"es0c6QGaBJt"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" take","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"bvcen6VV2sV","output_index":0,"sequence_number":28} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":29,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" to","logprobs":[],"obfuscation":"aMZakoFmaTLnI"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" care","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"T75oWFdSwKg","output_index":0,"sequence_number":29} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":30,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":" ask","logprobs":[],"obfuscation":"tcXPkxUY2xuP"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" if","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"dR9TZZnR7Sjo3","output_index":0,"sequence_number":30} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":31,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"delta":"!","logprobs":[],"obfuscation":"WwWEZBAyOpDhWvp"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" you're","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"iWBM1odqO","output_index":0,"sequence_number":31} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" outdoors","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"08I61Dr","output_index":0,"sequence_number":32} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":".","item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"obfuscation":"NJXyAtQUakW877G","output_index":0,"sequence_number":33} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":32,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"text":"The current temperature in Florence, Italy, is 40°C. If you need more details about the weather conditions, feel free to ask!","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","logprobs":[],"output_index":0,"sequence_number":34,"text":"The weather in Florence, Italy, is currently 40°C. It seems quite hot! Make sure to stay hydrated and take care if you're outdoors."} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":33,"item_id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy, is 40°C. If you need more details about the weather conditions, feel free to ask!"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"The weather in Florence, Italy, is currently 40°C. It seems quite hot! Make sure to stay hydrated and take care if you're outdoors."},"sequence_number":35} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":34,"output_index":0,"item":{"id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy, is 40°C. If you need more details about the weather conditions, feel free to ask!"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The weather in Florence, Italy, is currently 40°C. It seems quite hot! Make sure to stay hydrated and take care if you're outdoors."}],"role":"assistant"},"output_index":0,"sequence_number":36} event: response.completed - data: {"type":"response.completed","sequence_number":35,"response":{"id":"resp_03b372deeab9afef0168f237edcaac8195a4aa3d164255738c","object":"response","created_at":1760704493,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[{"id":"msg_03b372deeab9afef0168f237ee2e0881959296453175fdf7c1","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy, is 40°C. If you need more details about the weather conditions, feel free to ask!"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":83,"input_tokens_details":{"cached_tokens":0},"output_tokens":30,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":113},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_0b878a1dda64a2180169b31925d07081a085b212c597c52037","object":"response","created_at":1773345061,"status":"completed","background":false,"completed_at":1773345063,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[{"id":"msg_0b878a1dda64a2180169b31927049c81a0abb8a3843b833e7e","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The weather in Florence, Italy, is currently 40°C. It seems quite hot! Make sure to stay hydrated and take care if you're outdoors."}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":83,"input_tokens_details":{"cached_tokens":0},"output_tokens":32,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":115},"user":null,"metadata":{}},"sequence_number":37} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 394.542125ms + duration: 1.066251583s diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/multi_tool.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/multi_tool.yaml index 62635da09f5d0a37c4fd44d05eb240a5bb7fe800..4fa329ce00fe6dbdfe7f250f8de9877ec0354149 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/multi_tool.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/multi_tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_0e4ad943aeeb6f440168f237e4ba68819d82d960503add3455", + "id": "resp_004f198d0fcb211c0169b30159ecc081959941b172e908aa4a", "object": "response", - "created_at": 1760704484, + "created_at": 1773338969, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773338971, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -42,25 +44,27 @@ interactions: "model": "gpt-4o-2024-08-06", "output": [ { - "id": "fc_0e4ad943aeeb6f440168f237e55708819dbb4bacb951338226", + "id": "fc_004f198d0fcb211c0169b3015b67188195a8d6f2ca1b65a49d", "type": "function_call", "status": "completed", "arguments": "{\"a\":2,\"b\":3}", - "call_id": "call_fWTsR6VaKuyav2YHicLHxgUu", + "call_id": "call_PpY2vL7P7LXhDTGnOt7QloYN", "name": "add" }, { - "id": "fc_0e4ad943aeeb6f440168f237e57510819db015d8ff8e768bdb", + "id": "fc_004f198d0fcb211c0169b3015b67288195930283b886688c85", "type": "function_call", "status": "completed", "arguments": "{\"a\":2,\"b\":3}", - "call_id": "call_KLpoIGIQ4rbE8b3AWCUaui6g", + "call_id": "call_TDdcDMTBBI92rFgbWw4brhBy", "name": "multiply" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": null, "summary": null @@ -128,15 +132,15 @@ interactions: "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 54, + "input_tokens": 108, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 50, + "output_tokens": 51, "output_tokens_details": { "reasoning_tokens": 0 }, - "total_tokens": 104 + "total_tokens": 159 }, "user": null, "metadata": {} @@ -146,7 +150,7 @@ interactions: - application/json status: 200 OK code: 200 - duration: 991.245209ms + duration: 2.647188375s - id: 1 request: proto: HTTP/1.1 @@ -154,14 +158,14 @@ interactions: proto_minor: 1 content_length: 1261 host: "" - body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS.","role":"system"},{"content":[{"text":"Add and multiply the number 2 and 3","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_fWTsR6VaKuyav2YHicLHxgUu","name":"add","type":"function_call"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_KLpoIGIQ4rbE8b3AWCUaui6g","name":"multiply","type":"function_call"},{"call_id":"call_fWTsR6VaKuyav2YHicLHxgUu","output":"5","type":"function_call_output"},{"call_id":"call_KLpoIGIQ4rbE8b3AWCUaui6g","output":"6","type":"function_call_output"}],"model":"gpt-4o","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers","type":"function"},{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers","type":"function"}]}' + body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS.","role":"system"},{"content":[{"text":"Add and multiply the number 2 and 3","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_PpY2vL7P7LXhDTGnOt7QloYN","name":"add","type":"function_call"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_TDdcDMTBBI92rFgbWw4brhBy","name":"multiply","type":"function_call"},{"call_id":"call_PpY2vL7P7LXhDTGnOt7QloYN","output":"5","type":"function_call_output"},{"call_id":"call_TDdcDMTBBI92rFgbWw4brhBy","output":"6","type":"function_call_output"}],"model":"gpt-4o","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers","type":"function"},{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers","type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -172,15 +176,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_03837d599fa2bb470168f237e5bb18819c981526bc15969e4b", + "id": "resp_0dba5e52c1794a190169b3015c6370819092abfbee309c7628", "object": "response", - "created_at": 1760704485, + "created_at": 1773338972, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773338973, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -188,7 +194,7 @@ interactions: "model": "gpt-4o-2024-08-06", "output": [ { - "id": "msg_03837d599fa2bb470168f237e6987c819c8c1f2bd707a5ecd0", + "id": "msg_0dba5e52c1794a190169b3015d467481908d0b632c9f281197", "type": "message", "status": "completed", "content": [ @@ -196,15 +202,17 @@ interactions: "type": "output_text", "annotations": [], "logprobs": [], - "text": "The sum of 2 and 3 is 5, and their product is 6." + "text": "The result of adding 2 and 3 is 5, and the result of multiplying them is 6." } ], "role": "assistant" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": null, "summary": null @@ -276,11 +284,11 @@ interactions: "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 21, + "output_tokens": 25, "output_tokens_details": { "reasoning_tokens": 0 }, - "total_tokens": 177 + "total_tokens": 181 }, "user": null, "metadata": {} @@ -290,4 +298,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 1.167056291s + duration: 1.938283875s diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/multi_tool_streaming.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/multi_tool_streaming.yaml index 0ed7ba6fef75f55b58c8aea2fcd0fe050534c286..e9c08ae1a127fa65b689bb7cbbf30199964afc50 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/multi_tool_streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/multi_tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,80 +25,44 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0ebade88a03470de0168f237e6e58c819c84da1c8ec78ba7d2","object":"response","created_at":1760704486,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_045e0403848c7e000169b3015da2fc81a39ed662486e0980c6","object":"response","created_at":1773338973,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0ebade88a03470de0168f237e6e58c819c84da1c8ec78ba7d2","object":"response","created_at":1760704486,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_045e0403848c7e000169b3015da2fc81a39ed662486e0980c6","object":"response","created_at":1773338973,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"fc_0ebade88a03470de0168f237e7cedc819c8e0e319d3639c441","type":"function_call","status":"in_progress","arguments":"","call_id":"call_zxaMct5MXAoxOlvCrfOtlCtZ","name":"add"}} + data: {"type":"response.output_item.added","item":{"id":"fc_045e0403848c7e000169b3015e3fb881a3975075c6fb60adb8","type":"function_call","status":"in_progress","arguments":"","call_id":"call_8qJHo9WEvcPR9DhL3Kla9QZu","name":"add"},"output_index":0,"sequence_number":2} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":3,"item_id":"fc_0ebade88a03470de0168f237e7cedc819c8e0e319d3639c441","output_index":0,"delta":"{","obfuscation":"fCJFJFNkp4P8bMx"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":4,"item_id":"fc_0ebade88a03470de0168f237e7cedc819c8e0e319d3639c441","output_index":0,"delta":"\"a","obfuscation":"O7MZLEoZ8gyHPI"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":5,"item_id":"fc_0ebade88a03470de0168f237e7cedc819c8e0e319d3639c441","output_index":0,"delta":"\":","obfuscation":"hTAm6x12gWo3K1"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":6,"item_id":"fc_0ebade88a03470de0168f237e7cedc819c8e0e319d3639c441","output_index":0,"delta":"2,","obfuscation":"kITfb9flbFOABd"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":7,"item_id":"fc_0ebade88a03470de0168f237e7cedc819c8e0e319d3639c441","output_index":0,"delta":"\"b","obfuscation":"xwg5ZiXbfokw7a"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":8,"item_id":"fc_0ebade88a03470de0168f237e7cedc819c8e0e319d3639c441","output_index":0,"delta":"\":","obfuscation":"dG0OUpvC8pgzeh"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":9,"item_id":"fc_0ebade88a03470de0168f237e7cedc819c8e0e319d3639c441","output_index":0,"delta":"3}","obfuscation":"XvcAKdjFk0itEn"} + data: {"type":"response.function_call_arguments.delta","delta":"{\"a\":2,\"b\":3}","item_id":"fc_045e0403848c7e000169b3015e3fb881a3975075c6fb60adb8","obfuscation":"RK5","output_index":0,"sequence_number":3} event: response.function_call_arguments.done - data: {"type":"response.function_call_arguments.done","sequence_number":10,"item_id":"fc_0ebade88a03470de0168f237e7cedc819c8e0e319d3639c441","output_index":0,"arguments":"{\"a\":2,\"b\":3}"} + data: {"type":"response.function_call_arguments.done","arguments":"{\"a\":2,\"b\":3}","item_id":"fc_045e0403848c7e000169b3015e3fb881a3975075c6fb60adb8","output_index":0,"sequence_number":4} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":11,"output_index":0,"item":{"id":"fc_0ebade88a03470de0168f237e7cedc819c8e0e319d3639c441","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_zxaMct5MXAoxOlvCrfOtlCtZ","name":"add"}} + data: {"type":"response.output_item.done","item":{"id":"fc_045e0403848c7e000169b3015e3fb881a3975075c6fb60adb8","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_8qJHo9WEvcPR9DhL3Kla9QZu","name":"add"},"output_index":0,"sequence_number":5} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":12,"output_index":1,"item":{"id":"fc_0ebade88a03470de0168f237e7dcb0819cb8bb0bf6e673c0f1","type":"function_call","status":"in_progress","arguments":"","call_id":"call_H0ZwSpO6zg8hQFdgz1R0mThA","name":"multiply"}} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":13,"item_id":"fc_0ebade88a03470de0168f237e7dcb0819cb8bb0bf6e673c0f1","output_index":1,"delta":"{","obfuscation":"YEf72OYRdag8Aj7"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":14,"item_id":"fc_0ebade88a03470de0168f237e7dcb0819cb8bb0bf6e673c0f1","output_index":1,"delta":"\"a","obfuscation":"5x1eNl800xF39X"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":15,"item_id":"fc_0ebade88a03470de0168f237e7dcb0819cb8bb0bf6e673c0f1","output_index":1,"delta":"\":","obfuscation":"iNZ5apaeClogAa"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":16,"item_id":"fc_0ebade88a03470de0168f237e7dcb0819cb8bb0bf6e673c0f1","output_index":1,"delta":"2,","obfuscation":"3OjGv8FBMD6cfB"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":17,"item_id":"fc_0ebade88a03470de0168f237e7dcb0819cb8bb0bf6e673c0f1","output_index":1,"delta":"\"b","obfuscation":"YsWSMGJeoKYcas"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":18,"item_id":"fc_0ebade88a03470de0168f237e7dcb0819cb8bb0bf6e673c0f1","output_index":1,"delta":"\":","obfuscation":"ntum9UcsMIC2oQ"} + data: {"type":"response.output_item.added","item":{"id":"fc_045e0403848c7e000169b3015e3fc481a3bbf90a62123baf69","type":"function_call","status":"in_progress","arguments":"","call_id":"call_ujTTiiLIE53rXHLZ6GRQIL1Z","name":"multiply"},"output_index":1,"sequence_number":6} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":19,"item_id":"fc_0ebade88a03470de0168f237e7dcb0819cb8bb0bf6e673c0f1","output_index":1,"delta":"3}","obfuscation":"cmtfNtk9UsX1US"} + data: {"type":"response.function_call_arguments.delta","delta":"{\"a\":2,\"b\":3}","item_id":"fc_045e0403848c7e000169b3015e3fc481a3bbf90a62123baf69","obfuscation":"C7y","output_index":1,"sequence_number":7} event: response.function_call_arguments.done - data: {"type":"response.function_call_arguments.done","sequence_number":20,"item_id":"fc_0ebade88a03470de0168f237e7dcb0819cb8bb0bf6e673c0f1","output_index":1,"arguments":"{\"a\":2,\"b\":3}"} + data: {"type":"response.function_call_arguments.done","arguments":"{\"a\":2,\"b\":3}","item_id":"fc_045e0403848c7e000169b3015e3fc481a3bbf90a62123baf69","output_index":1,"sequence_number":8} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":21,"output_index":1,"item":{"id":"fc_0ebade88a03470de0168f237e7dcb0819cb8bb0bf6e673c0f1","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_H0ZwSpO6zg8hQFdgz1R0mThA","name":"multiply"}} + data: {"type":"response.output_item.done","item":{"id":"fc_045e0403848c7e000169b3015e3fc481a3bbf90a62123baf69","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_ujTTiiLIE53rXHLZ6GRQIL1Z","name":"multiply"},"output_index":1,"sequence_number":9} event: response.completed - data: {"type":"response.completed","sequence_number":22,"response":{"id":"resp_0ebade88a03470de0168f237e6e58c819c84da1c8ec78ba7d2","object":"response","created_at":1760704486,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[{"id":"fc_0ebade88a03470de0168f237e7cedc819c8e0e319d3639c441","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_zxaMct5MXAoxOlvCrfOtlCtZ","name":"add"},{"id":"fc_0ebade88a03470de0168f237e7dcb0819cb8bb0bf6e673c0f1","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_H0ZwSpO6zg8hQFdgz1R0mThA","name":"multiply"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":52,"input_tokens_details":{"cached_tokens":0},"output_tokens":50,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":102},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_045e0403848c7e000169b3015da2fc81a39ed662486e0980c6","object":"response","created_at":1773338973,"status":"completed","background":false,"completed_at":1773338974,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[{"id":"fc_045e0403848c7e000169b3015e3fb881a3975075c6fb60adb8","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_8qJHo9WEvcPR9DhL3Kla9QZu","name":"add"},{"id":"fc_045e0403848c7e000169b3015e3fc481a3bbf90a62123baf69","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_ujTTiiLIE53rXHLZ6GRQIL1Z","name":"multiply"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":104,"input_tokens_details":{"cached_tokens":0},"output_tokens":51,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":155},"user":null,"metadata":{}},"sequence_number":10} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 239.5585ms + duration: 216.414667ms - id: 1 request: proto: HTTP/1.1 @@ -106,14 +70,14 @@ interactions: proto_minor: 1 content_length: 1258 host: "" - body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":[{"text":"Add and multiply the number 2 and 3","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_zxaMct5MXAoxOlvCrfOtlCtZ","name":"add","type":"function_call"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_H0ZwSpO6zg8hQFdgz1R0mThA","name":"multiply","type":"function_call"},{"call_id":"call_zxaMct5MXAoxOlvCrfOtlCtZ","output":"5","type":"function_call_output"},{"call_id":"call_H0ZwSpO6zg8hQFdgz1R0mThA","output":"6","type":"function_call_output"}],"model":"gpt-4o","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers","type":"function"},{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers","type":"function"}],"stream":true}' + body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":[{"text":"Add and multiply the number 2 and 3","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_8qJHo9WEvcPR9DhL3Kla9QZu","name":"add","type":"function_call"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_ujTTiiLIE53rXHLZ6GRQIL1Z","name":"multiply","type":"function_call"},{"call_id":"call_8qJHo9WEvcPR9DhL3Kla9QZu","output":"5","type":"function_call_output"},{"call_id":"call_ujTTiiLIE53rXHLZ6GRQIL1Z","output":"6","type":"function_call_output"}],"model":"gpt-4o","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers","type":"function"},{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers","type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -123,89 +87,89 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_077c121a3ca3329e0168f237e81de481a092d45b91e6588ae8","object":"response","created_at":1760704488,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_06391baa052cedba0169b3015f62a481979d1a5f3ff912b3d7","object":"response","created_at":1773338975,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_077c121a3ca3329e0168f237e81de481a092d45b91e6588ae8","object":"response","created_at":1760704488,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_06391baa052cedba0169b3015f62a481979d1a5f3ff912b3d7","object":"response","created_at":1773338975,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":0,"sequence_number":2} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":3,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":3} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":4,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"delta":"The","logprobs":[],"obfuscation":"2owrUCvUJFBUT"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"The","item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"obfuscation":"6HWERDh15ICmT","output_index":0,"sequence_number":4} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":5,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"delta":" sum","logprobs":[],"obfuscation":"cjzIn6Vw53ss"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" sum","item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"obfuscation":"TCOeatlCLBTY","output_index":0,"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"delta":" of","logprobs":[],"obfuscation":"tPgTY5UTToAa3"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" of","item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"obfuscation":"VqdiuvpW0wn4x","output_index":0,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"delta":" ","logprobs":[],"obfuscation":"b2fGuIhqxzmIlfy"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" ","item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"obfuscation":"fx8jlMXw5tDQHEu","output_index":0,"sequence_number":7} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"delta":"2","logprobs":[],"obfuscation":"4PmAyHYuNn7iGjN"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"2","item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"obfuscation":"FJUSk6VoT3pkquc","output_index":0,"sequence_number":8} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"delta":" and","logprobs":[],"obfuscation":"gePgnHt9j6lR"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" and","item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"obfuscation":"ebeJVpugBZCl","output_index":0,"sequence_number":9} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"delta":" ","logprobs":[],"obfuscation":"YovNQ00Om1zFWv3"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" ","item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"obfuscation":"d8xwI8iOfxUIfMt","output_index":0,"sequence_number":10} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"delta":"3","logprobs":[],"obfuscation":"0PLD6BLk7xZ5IGs"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"3","item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"obfuscation":"XjzlKogftRNWcP4","output_index":0,"sequence_number":11} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":12,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"delta":" is","logprobs":[],"obfuscation":"gryllz0ZCrkI8"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" is","item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"obfuscation":"jwMqzJ3NbGJrB","output_index":0,"sequence_number":12} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":13,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"delta":" ","logprobs":[],"obfuscation":"KD7wHvYxGbw7jiY"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" ","item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"obfuscation":"Lmvu1EoQyQPEPkr","output_index":0,"sequence_number":13} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":14,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"delta":"5","logprobs":[],"obfuscation":"sjlU5yKhucEWC8I"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"5","item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"obfuscation":"Ycmqt79fNRPw3n3","output_index":0,"sequence_number":14} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":15,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"delta":",","logprobs":[],"obfuscation":"Fmbamjkh4NwKk5q"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"obfuscation":"z7RluLA5vfz8eef","output_index":0,"sequence_number":15} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":16,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"delta":" and","logprobs":[],"obfuscation":"HG6ynXHqm2ru"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" and","item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"obfuscation":"XSV2eIDOUNrC","output_index":0,"sequence_number":16} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":17,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"delta":" the","logprobs":[],"obfuscation":"7criLQoQ65gL"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" their","item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"obfuscation":"YsCZMcPZ34","output_index":0,"sequence_number":17} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":18,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"delta":" product","logprobs":[],"obfuscation":"meY9ncha"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" product","item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"obfuscation":"UAZs4rdr","output_index":0,"sequence_number":18} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":19,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"delta":" is","logprobs":[],"obfuscation":"pjYCNpKQmBByY"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" is","item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"obfuscation":"gjBz1vmMHyd4d","output_index":0,"sequence_number":19} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":20,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"delta":" ","logprobs":[],"obfuscation":"84LNfyse8RA3FmS"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" ","item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"obfuscation":"jmrs3JUSsoSx6Ty","output_index":0,"sequence_number":20} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":21,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"delta":"6","logprobs":[],"obfuscation":"HJPEBcOEzg5QCE2"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"6","item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"obfuscation":"7D8bItiC2H70ibV","output_index":0,"sequence_number":21} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":22,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"delta":".","logprobs":[],"obfuscation":"xYOursICvKMAOqI"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".","item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"obfuscation":"XnDzM0HYkG85AiS","output_index":0,"sequence_number":22} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":23,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"text":"The sum of 2 and 3 is 5, and the product is 6.","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","logprobs":[],"output_index":0,"sequence_number":23,"text":"The sum of 2 and 3 is 5, and their product is 6."} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":24,"item_id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"The sum of 2 and 3 is 5, and the product is 6."}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"The sum of 2 and 3 is 5, and their product is 6."},"sequence_number":24} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":25,"output_index":0,"item":{"id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The sum of 2 and 3 is 5, and the product is 6."}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The sum of 2 and 3 is 5, and their product is 6."}],"role":"assistant"},"output_index":0,"sequence_number":25} event: response.completed - data: {"type":"response.completed","sequence_number":26,"response":{"id":"resp_077c121a3ca3329e0168f237e81de481a092d45b91e6588ae8","object":"response","created_at":1760704488,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[{"id":"msg_077c121a3ca3329e0168f237e87ebc81a0991d3b1ab9200eed","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The sum of 2 and 3 is 5, and the product is 6."}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":152,"input_tokens_details":{"cached_tokens":0},"output_tokens":21,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":173},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_06391baa052cedba0169b3015f62a481979d1a5f3ff912b3d7","object":"response","created_at":1773338975,"status":"completed","background":false,"completed_at":1773338976,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[{"id":"msg_06391baa052cedba0169b3016032348197aef7079b5c55b575","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The sum of 2 and 3 is 5, and their product is 6."}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":152,"input_tokens_details":{"cached_tokens":0},"output_tokens":21,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":173},"user":null,"metadata":{}},"sequence_number":26} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 239.102917ms + duration: 1.08024975s diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/simple.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/simple.yaml index d7f886b4c3f3d631e318f19ad0ab524c4f74fe84..8377feb8605a8149bcbf2027e49fb69ff50a5a09 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/simple.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_07891da4b653e1470168f237de167081909c53deff29e333b8", + "id": "resp_0e7dfdc132fa96a90169b3014c5470819eadf32151a0dbfd15", "object": "response", - "created_at": 1760704478, + "created_at": 1773338956, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773338957, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -42,7 +44,7 @@ interactions: "model": "gpt-4o-2024-08-06", "output": [ { - "id": "msg_07891da4b653e1470168f237deab0c8190be2fd9591e3d9afa", + "id": "msg_0e7dfdc132fa96a90169b3014db10c819ea5b69df79c7f2810", "type": "message", "status": "completed", "content": [ @@ -50,15 +52,17 @@ interactions: "type": "output_text", "annotations": [], "logprobs": [], - "text": "Ol\u00e1!" + "text": "Oi!" } ], "role": "assistant" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": null, "summary": null @@ -97,4 +101,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 941.245125ms + duration: 2.574510083s diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/simple_streaming.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/simple_streaming.yaml index 5888c35867b7770d74b8405821c16fffd7ad7cde..1955a08fce41d4ed6b385fdf4c612b8f5c8708b9 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/simple_streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,38 +25,38 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_02a83fea833f7e430168f237dee7b08192a3ee0794d16e8574","object":"response","created_at":1760704478,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_09a1072d660287e90169b3014ec67c819fa59fe909ba58d190","object":"response","created_at":1773338958,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_02a83fea833f7e430168f237dee7b08192a3ee0794d16e8574","object":"response","created_at":1760704478,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_09a1072d660287e90169b3014ec67c819fa59fe909ba58d190","object":"response","created_at":1773338958,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"msg_02a83fea833f7e430168f237df67988192ae502a743f847a80","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_09a1072d660287e90169b3014fcaec819f82333d27096f1e40","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":0,"sequence_number":2} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":3,"item_id":"msg_02a83fea833f7e430168f237df67988192ae502a743f847a80","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_09a1072d660287e90169b3014fcaec819f82333d27096f1e40","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":3} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":4,"item_id":"msg_02a83fea833f7e430168f237df67988192ae502a743f847a80","output_index":0,"content_index":0,"delta":"Olá","logprobs":[],"obfuscation":"PURwA0yAiQYg4"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Olá","item_id":"msg_09a1072d660287e90169b3014fcaec819f82333d27096f1e40","logprobs":[],"obfuscation":"pD1PKJarAoaqr","output_index":0,"sequence_number":4} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":5,"item_id":"msg_02a83fea833f7e430168f237df67988192ae502a743f847a80","output_index":0,"content_index":0,"delta":"!","logprobs":[],"obfuscation":"J47DmBbNkTc5h5k"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"!","item_id":"msg_09a1072d660287e90169b3014fcaec819f82333d27096f1e40","logprobs":[],"obfuscation":"kZAT1CpRcJ3JazH","output_index":0,"sequence_number":5} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":6,"item_id":"msg_02a83fea833f7e430168f237df67988192ae502a743f847a80","output_index":0,"content_index":0,"text":"Olá!","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_09a1072d660287e90169b3014fcaec819f82333d27096f1e40","logprobs":[],"output_index":0,"sequence_number":6,"text":"Olá!"} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":7,"item_id":"msg_02a83fea833f7e430168f237df67988192ae502a743f847a80","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_09a1072d660287e90169b3014fcaec819f82333d27096f1e40","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"},"sequence_number":7} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":8,"output_index":0,"item":{"id":"msg_02a83fea833f7e430168f237df67988192ae502a743f847a80","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_09a1072d660287e90169b3014fcaec819f82333d27096f1e40","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"}],"role":"assistant"},"output_index":0,"sequence_number":8} event: response.completed - data: {"type":"response.completed","sequence_number":9,"response":{"id":"resp_02a83fea833f7e430168f237dee7b08192a3ee0794d16e8574","object":"response","created_at":1760704478,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[{"id":"msg_02a83fea833f7e430168f237df67988192ae502a743f847a80","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":20,"input_tokens_details":{"cached_tokens":0},"output_tokens":3,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":23},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_09a1072d660287e90169b3014ec67c819fa59fe909ba58d190","object":"response","created_at":1773338958,"status":"completed","background":false,"completed_at":1773338959,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[{"id":"msg_09a1072d660287e90169b3014fcaec819f82333d27096f1e40","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":20,"input_tokens_details":{"cached_tokens":0},"output_tokens":3,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":23},"user":null,"metadata":{}},"sequence_number":9} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 232.38575ms + duration: 1.117413709s diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/tool.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/tool.yaml index dde370d5a3e520c43cd4ca388bae74f61ac544c8..99c32f832efc53b846b6dd6584e5f2de27474cc7 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/tool.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_05f862a82ed768dc0168f237df9eac81a09b83a647320323a6", + "id": "resp_0560da6ac76dea570169b30150cda081a2a5e231ac98d899ad", "object": "response", - "created_at": 1760704479, + "created_at": 1773338960, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773338963, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -42,17 +44,19 @@ interactions: "model": "gpt-4o-2024-08-06", "output": [ { - "id": "fc_05f862a82ed768dc0168f237e0123c81a090b0b89afe5c9f72", + "id": "fc_0560da6ac76dea570169b30152ecd081a29cdb56baa536c00c", "type": "function_call", "status": "completed", "arguments": "{\"location\":\"Florence, Italy\"}", - "call_id": "call_jPXpCiiHqnkbYK8RbeLZfkLR", + "call_id": "call_HMl4m0PQwcLjJ6aiA4xFRSNz", "name": "weather" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": null, "summary": null @@ -110,7 +114,7 @@ interactions: - application/json status: 200 OK code: 200 - duration: 777.148541ms + duration: 3.301408417s - id: 1 request: proto: HTTP/1.1 @@ -118,14 +122,14 @@ interactions: proto_minor: 1 content_length: 719 host: "" - body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"system"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_jPXpCiiHqnkbYK8RbeLZfkLR","name":"weather","type":"function_call"},{"call_id":"call_jPXpCiiHqnkbYK8RbeLZfkLR","output":"40 C","type":"function_call_output"}],"model":"gpt-4o","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}' + body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"system"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_HMl4m0PQwcLjJ6aiA4xFRSNz","name":"weather","type":"function_call"},{"call_id":"call_HMl4m0PQwcLjJ6aiA4xFRSNz","output":"40 C","type":"function_call_output"}],"model":"gpt-4o","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -136,15 +140,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_0122dddaaa9675250168f237e06e9481948f2a870e82765495", + "id": "resp_09df0b104e552ae00169b3015430788193996dfac9a8b2dd26", "object": "response", - "created_at": 1760704480, + "created_at": 1773338964, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773338965, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -152,7 +158,7 @@ interactions: "model": "gpt-4o-2024-08-06", "output": [ { - "id": "msg_0122dddaaa9675250168f237e16ed481948bdad89376f1431a", + "id": "msg_09df0b104e552ae00169b3015526148193ba1b423e49987014", "type": "message", "status": "completed", "content": [ @@ -160,15 +166,17 @@ interactions: "type": "output_text", "annotations": [], "logprobs": [], - "text": "The current temperature in Florence, Italy is 40\u00b0C. Stay cool and hydrated!" + "text": "The current temperature in Florence, Italy is 40\u00b0C." } ], "role": "assistant" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": null, "summary": null @@ -212,11 +220,11 @@ interactions: "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 19, + "output_tokens": 14, "output_tokens_details": { "reasoning_tokens": 0 }, - "total_tokens": 102 + "total_tokens": 97 }, "user": null, "metadata": {} @@ -226,4 +234,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 1.512680875s + duration: 2.250649709s diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/tool_streaming.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/tool_streaming.yaml index da55222c05c67d31f8d26f9f20a4b918c836ec11..d9350dc379343ca958cba2855cebe6218c276567 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/tool_streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-4o/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,68 +25,68 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0ac5f2ba0b4c0b830168f237e1ee10819dbe53070aa00ae06a","object":"response","created_at":1760704481,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_04ca22e2be25fcad0169b301565a408192ac42b6c97404f9c3","object":"response","created_at":1773338966,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0ac5f2ba0b4c0b830168f237e1ee10819dbe53070aa00ae06a","object":"response","created_at":1760704481,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_04ca22e2be25fcad0169b301565a408192ac42b6c97404f9c3","object":"response","created_at":1773338966,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"fc_0ac5f2ba0b4c0b830168f237e2f3d0819d8b008d01089913c8","type":"function_call","status":"in_progress","arguments":"","call_id":"call_Zvcj4GFYqfvf8AcNIB0Ra8is","name":"weather"}} + data: {"type":"response.output_item.added","item":{"id":"fc_04ca22e2be25fcad0169b30157ebdc8192b56c02cce5635715","type":"function_call","status":"in_progress","arguments":"","call_id":"call_ucvCl5l598TOPnppSOm9008r","name":"weather"},"output_index":0,"sequence_number":2} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":3,"item_id":"fc_0ac5f2ba0b4c0b830168f237e2f3d0819d8b008d01089913c8","output_index":0,"delta":"{\"","obfuscation":"2GAUmPtuwiNdYV"} + data: {"type":"response.function_call_arguments.delta","delta":"{\"","item_id":"fc_04ca22e2be25fcad0169b30157ebdc8192b56c02cce5635715","obfuscation":"RlTCuP3LxSnQCA","output_index":0,"sequence_number":3} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":4,"item_id":"fc_0ac5f2ba0b4c0b830168f237e2f3d0819d8b008d01089913c8","output_index":0,"delta":"location","obfuscation":"au0PIDR3"} + data: {"type":"response.function_call_arguments.delta","delta":"location","item_id":"fc_04ca22e2be25fcad0169b30157ebdc8192b56c02cce5635715","obfuscation":"QgcK37ga","output_index":0,"sequence_number":4} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":5,"item_id":"fc_0ac5f2ba0b4c0b830168f237e2f3d0819d8b008d01089913c8","output_index":0,"delta":"\":\"","obfuscation":"FJYeCiQOcRosn"} + data: {"type":"response.function_call_arguments.delta","delta":"\":\"","item_id":"fc_04ca22e2be25fcad0169b30157ebdc8192b56c02cce5635715","obfuscation":"UF37Go4K7ziK4","output_index":0,"sequence_number":5} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":6,"item_id":"fc_0ac5f2ba0b4c0b830168f237e2f3d0819d8b008d01089913c8","output_index":0,"delta":"Flor","obfuscation":"E9SXHAGEvpMC"} + data: {"type":"response.function_call_arguments.delta","delta":"Flor","item_id":"fc_04ca22e2be25fcad0169b30157ebdc8192b56c02cce5635715","obfuscation":"CnvBzsy3rTux","output_index":0,"sequence_number":6} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":7,"item_id":"fc_0ac5f2ba0b4c0b830168f237e2f3d0819d8b008d01089913c8","output_index":0,"delta":"ence","obfuscation":"Sezl9leQQI91"} + data: {"type":"response.function_call_arguments.delta","delta":"ence","item_id":"fc_04ca22e2be25fcad0169b30157ebdc8192b56c02cce5635715","obfuscation":"aNlZcHsX6nre","output_index":0,"sequence_number":7} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":8,"item_id":"fc_0ac5f2ba0b4c0b830168f237e2f3d0819d8b008d01089913c8","output_index":0,"delta":",","obfuscation":"EL65bbUJbktS4Tq"} + data: {"type":"response.function_call_arguments.delta","delta":",","item_id":"fc_04ca22e2be25fcad0169b30157ebdc8192b56c02cce5635715","obfuscation":"lo008GEBMgBdgy7","output_index":0,"sequence_number":8} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":9,"item_id":"fc_0ac5f2ba0b4c0b830168f237e2f3d0819d8b008d01089913c8","output_index":0,"delta":"Italy","obfuscation":"3paXU4gUFjJ"} + data: {"type":"response.function_call_arguments.delta","delta":" Italy","item_id":"fc_04ca22e2be25fcad0169b30157ebdc8192b56c02cce5635715","obfuscation":"717ARz1XUH","output_index":0,"sequence_number":9} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":10,"item_id":"fc_0ac5f2ba0b4c0b830168f237e2f3d0819d8b008d01089913c8","output_index":0,"delta":"\"}","obfuscation":"RWw8uxX409IAgP"} + data: {"type":"response.function_call_arguments.delta","delta":"\"}","item_id":"fc_04ca22e2be25fcad0169b30157ebdc8192b56c02cce5635715","obfuscation":"XwwhJA4dI6TNNp","output_index":0,"sequence_number":10} event: response.function_call_arguments.done - data: {"type":"response.function_call_arguments.done","sequence_number":11,"item_id":"fc_0ac5f2ba0b4c0b830168f237e2f3d0819d8b008d01089913c8","output_index":0,"arguments":"{\"location\":\"Florence,Italy\"}"} + data: {"type":"response.function_call_arguments.done","arguments":"{\"location\":\"Florence, Italy\"}","item_id":"fc_04ca22e2be25fcad0169b30157ebdc8192b56c02cce5635715","output_index":0,"sequence_number":11} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":12,"output_index":0,"item":{"id":"fc_0ac5f2ba0b4c0b830168f237e2f3d0819d8b008d01089913c8","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence,Italy\"}","call_id":"call_Zvcj4GFYqfvf8AcNIB0Ra8is","name":"weather"}} + data: {"type":"response.output_item.done","item":{"id":"fc_04ca22e2be25fcad0169b30157ebdc8192b56c02cce5635715","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_ucvCl5l598TOPnppSOm9008r","name":"weather"},"output_index":0,"sequence_number":12} event: response.completed - data: {"type":"response.completed","sequence_number":13,"response":{"id":"resp_0ac5f2ba0b4c0b830168f237e1ee10819dbe53070aa00ae06a","object":"response","created_at":1760704481,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[{"id":"fc_0ac5f2ba0b4c0b830168f237e2f3d0819d8b008d01089913c8","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence,Italy\"}","call_id":"call_Zvcj4GFYqfvf8AcNIB0Ra8is","name":"weather"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":58,"input_tokens_details":{"cached_tokens":0},"output_tokens":17,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":75},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_04ca22e2be25fcad0169b301565a408192ac42b6c97404f9c3","object":"response","created_at":1773338966,"status":"completed","background":false,"completed_at":1773338968,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[{"id":"fc_04ca22e2be25fcad0169b30157ebdc8192b56c02cce5635715","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_ucvCl5l598TOPnppSOm9008r","name":"weather"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":58,"input_tokens_details":{"cached_tokens":0},"output_tokens":17,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":75},"user":null,"metadata":{}},"sequence_number":13} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 259.382959ms + duration: 1.031451917s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 732 + content_length: 733 host: "" - body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"system"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence,Italy\\\"}\"","call_id":"call_Zvcj4GFYqfvf8AcNIB0Ra8is","name":"weather","type":"function_call"},{"call_id":"call_Zvcj4GFYqfvf8AcNIB0Ra8is","output":"40 C","type":"function_call_output"}],"model":"gpt-4o","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}' + body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"system"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_ucvCl5l598TOPnppSOm9008r","name":"weather","type":"function_call"},{"call_id":"call_ucvCl5l598TOPnppSOm9008r","output":"40 C","type":"function_call_output"}],"model":"gpt-4o","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -96,68 +96,68 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_06731cb9fb4e5ca10168f237e386788196af9a9096ab039479","object":"response","created_at":1760704483,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_0bda4590417bd1510169b301585a34819f9f99b79659a2484b","object":"response","created_at":1773338968,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_06731cb9fb4e5ca10168f237e386788196af9a9096ab039479","object":"response","created_at":1760704483,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_0bda4590417bd1510169b301585a34819f9f99b79659a2484b","object":"response","created_at":1773338968,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"msg_06731cb9fb4e5ca10168f237e4477881968e966f3aca367554","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_0bda4590417bd1510169b30158beb0819f81fd20565650adb9","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":0,"sequence_number":2} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":3,"item_id":"msg_06731cb9fb4e5ca10168f237e4477881968e966f3aca367554","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_0bda4590417bd1510169b30158beb0819f81fd20565650adb9","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":3} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":4,"item_id":"msg_06731cb9fb4e5ca10168f237e4477881968e966f3aca367554","output_index":0,"content_index":0,"delta":"The","logprobs":[],"obfuscation":"Cgwi5P8IgS9WC"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"The","item_id":"msg_0bda4590417bd1510169b30158beb0819f81fd20565650adb9","logprobs":[],"obfuscation":"J14wbPNOJ1ECS","output_index":0,"sequence_number":4} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":5,"item_id":"msg_06731cb9fb4e5ca10168f237e4477881968e966f3aca367554","output_index":0,"content_index":0,"delta":" current","logprobs":[],"obfuscation":"E0r0sSyh"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" current","item_id":"msg_0bda4590417bd1510169b30158beb0819f81fd20565650adb9","logprobs":[],"obfuscation":"XJZMpoWt","output_index":0,"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_06731cb9fb4e5ca10168f237e4477881968e966f3aca367554","output_index":0,"content_index":0,"delta":" temperature","logprobs":[],"obfuscation":"RF23"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" temperature","item_id":"msg_0bda4590417bd1510169b30158beb0819f81fd20565650adb9","logprobs":[],"obfuscation":"oKh2","output_index":0,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_06731cb9fb4e5ca10168f237e4477881968e966f3aca367554","output_index":0,"content_index":0,"delta":" in","logprobs":[],"obfuscation":"jlg35ceRDkKXk"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" in","item_id":"msg_0bda4590417bd1510169b30158beb0819f81fd20565650adb9","logprobs":[],"obfuscation":"iq1LCT3KTydLV","output_index":0,"sequence_number":7} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_06731cb9fb4e5ca10168f237e4477881968e966f3aca367554","output_index":0,"content_index":0,"delta":" Florence","logprobs":[],"obfuscation":"EDwr3ta"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Florence","item_id":"msg_0bda4590417bd1510169b30158beb0819f81fd20565650adb9","logprobs":[],"obfuscation":"QQ1X83z","output_index":0,"sequence_number":8} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_06731cb9fb4e5ca10168f237e4477881968e966f3aca367554","output_index":0,"content_index":0,"delta":",","logprobs":[],"obfuscation":"FxbKO1NyhPWzcR4"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_0bda4590417bd1510169b30158beb0819f81fd20565650adb9","logprobs":[],"obfuscation":"Nv3kDOuqatuEsyu","output_index":0,"sequence_number":9} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_06731cb9fb4e5ca10168f237e4477881968e966f3aca367554","output_index":0,"content_index":0,"delta":" Italy","logprobs":[],"obfuscation":"4DdeFdQGAC"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Italy","item_id":"msg_0bda4590417bd1510169b30158beb0819f81fd20565650adb9","logprobs":[],"obfuscation":"PFWBX7dx9R","output_index":0,"sequence_number":10} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_06731cb9fb4e5ca10168f237e4477881968e966f3aca367554","output_index":0,"content_index":0,"delta":" is","logprobs":[],"obfuscation":"jMNhe6GuRNzQb"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" is","item_id":"msg_0bda4590417bd1510169b30158beb0819f81fd20565650adb9","logprobs":[],"obfuscation":"NaXNOcjL9QhAV","output_index":0,"sequence_number":11} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":12,"item_id":"msg_06731cb9fb4e5ca10168f237e4477881968e966f3aca367554","output_index":0,"content_index":0,"delta":" ","logprobs":[],"obfuscation":"gvoxDRWu7wmp9EI"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" ","item_id":"msg_0bda4590417bd1510169b30158beb0819f81fd20565650adb9","logprobs":[],"obfuscation":"XV6wTWBsgig9vlH","output_index":0,"sequence_number":12} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":13,"item_id":"msg_06731cb9fb4e5ca10168f237e4477881968e966f3aca367554","output_index":0,"content_index":0,"delta":"40","logprobs":[],"obfuscation":"xNieQmyGcRt9XH"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"40","item_id":"msg_0bda4590417bd1510169b30158beb0819f81fd20565650adb9","logprobs":[],"obfuscation":"YabRyTRDUYfx7d","output_index":0,"sequence_number":13} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":14,"item_id":"msg_06731cb9fb4e5ca10168f237e4477881968e966f3aca367554","output_index":0,"content_index":0,"delta":"°C","logprobs":[],"obfuscation":"BkGN6qzwpQMLmt"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"°C","item_id":"msg_0bda4590417bd1510169b30158beb0819f81fd20565650adb9","logprobs":[],"obfuscation":"gNlqwvjlaBVFK6","output_index":0,"sequence_number":14} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":15,"item_id":"msg_06731cb9fb4e5ca10168f237e4477881968e966f3aca367554","output_index":0,"content_index":0,"delta":".","logprobs":[],"obfuscation":"wpXzyrGKXvqZ4cU"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".","item_id":"msg_0bda4590417bd1510169b30158beb0819f81fd20565650adb9","logprobs":[],"obfuscation":"GDmzWwlC2CZkvF6","output_index":0,"sequence_number":15} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":16,"item_id":"msg_06731cb9fb4e5ca10168f237e4477881968e966f3aca367554","output_index":0,"content_index":0,"text":"The current temperature in Florence, Italy is 40°C.","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_0bda4590417bd1510169b30158beb0819f81fd20565650adb9","logprobs":[],"output_index":0,"sequence_number":16,"text":"The current temperature in Florence, Italy is 40°C."} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":17,"item_id":"msg_06731cb9fb4e5ca10168f237e4477881968e966f3aca367554","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C."}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_0bda4590417bd1510169b30158beb0819f81fd20565650adb9","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C."},"sequence_number":17} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":18,"output_index":0,"item":{"id":"msg_06731cb9fb4e5ca10168f237e4477881968e966f3aca367554","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C."}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_0bda4590417bd1510169b30158beb0819f81fd20565650adb9","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C."}],"role":"assistant"},"output_index":0,"sequence_number":18} event: response.completed - data: {"type":"response.completed","sequence_number":19,"response":{"id":"resp_06731cb9fb4e5ca10168f237e386788196af9a9096ab039479","object":"response","created_at":1760704483,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[{"id":"msg_06731cb9fb4e5ca10168f237e4477881968e966f3aca367554","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C."}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":83,"input_tokens_details":{"cached_tokens":0},"output_tokens":14,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":97},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_0bda4590417bd1510169b301585a34819f9f99b79659a2484b","object":"response","created_at":1773338968,"status":"completed","background":false,"completed_at":1773338968,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[{"id":"msg_0bda4590417bd1510169b30158beb0819f81fd20565650adb9","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C."}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":83,"input_tokens_details":{"cached_tokens":0},"output_tokens":14,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":97},"user":null,"metadata":{}},"sequence_number":19} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 438.122375ms + duration: 232.381833ms diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/multi_tool.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/multi_tool.yaml index b69208afb7a427228e9d01e5b9bb6048f64c2a17..5ac0d04ce2989bce917648d7ec4c9786a232e4c3 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/multi_tool.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/multi_tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_0a67406c0312cd3d0168f23808e21081a19469bdae7c79e9a1", + "id": "resp_03b3c71eed97b5600169b3194dbf748191bbde243b0983aa49", "object": "response", - "created_at": 1760704520, + "created_at": 1773345101, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345112, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -42,30 +44,32 @@ interactions: "model": "gpt-5-2025-08-07", "output": [ { - "id": "rs_0a67406c0312cd3d0168f238093ecc81a1bdba7329dca10274", + "id": "rs_03b3c71eed97b5600169b3194e5d948191bebefe1e37f969d9", "type": "reasoning", "summary": [] }, { - "id": "fc_0a67406c0312cd3d0168f2380c363c81a185a8cb8507231fa5", + "id": "fc_03b3c71eed97b5600169b3195844ac819186a843dc3f5705d0", "type": "function_call", "status": "completed", "arguments": "{\"a\":2,\"b\":3}", - "call_id": "call_4zp4utiXe14bjLO4jtMZEjT9", + "call_id": "call_SXMdSYIWhKweiIjoBRxUmzZw", "name": "add" }, { - "id": "fc_0a67406c0312cd3d0168f2380c544081a18909136702882f58", + "id": "fc_03b3c71eed97b5600169b3195844b881918850ccf6295b1358", "type": "function_call", "status": "completed", "arguments": "{\"a\":2,\"b\":3}", - "call_id": "call_4RkbJhNCkvdVClgNEsmTa3lb", + "call_id": "call_wBPb8fIvZKT8tHxONHfs6iqq", "name": "multiply" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "medium", "summary": null @@ -133,15 +137,15 @@ interactions: "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 58, + "input_tokens": 113, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 248, + "output_tokens": 482, "output_tokens_details": { - "reasoning_tokens": 192 + "reasoning_tokens": 384 }, - "total_tokens": 306 + "total_tokens": 595 }, "user": null, "metadata": {} @@ -151,7 +155,7 @@ interactions: - application/json status: 200 OK code: 200 - duration: 3.821118208s + duration: 11.724504125s - id: 1 request: proto: HTTP/1.1 @@ -159,14 +163,14 @@ interactions: proto_minor: 1 content_length: 1263 host: "" - body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS.","role":"developer"},{"content":[{"text":"Add and multiply the number 2 and 3","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_4zp4utiXe14bjLO4jtMZEjT9","name":"add","type":"function_call"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_4RkbJhNCkvdVClgNEsmTa3lb","name":"multiply","type":"function_call"},{"call_id":"call_4zp4utiXe14bjLO4jtMZEjT9","output":"5","type":"function_call_output"},{"call_id":"call_4RkbJhNCkvdVClgNEsmTa3lb","output":"6","type":"function_call_output"}],"model":"gpt-5","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers","type":"function"},{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers","type":"function"}]}' + body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS.","role":"developer"},{"content":[{"text":"Add and multiply the number 2 and 3","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_SXMdSYIWhKweiIjoBRxUmzZw","name":"add","type":"function_call"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_wBPb8fIvZKT8tHxONHfs6iqq","name":"multiply","type":"function_call"},{"call_id":"call_SXMdSYIWhKweiIjoBRxUmzZw","output":"5","type":"function_call_output"},{"call_id":"call_wBPb8fIvZKT8tHxONHfs6iqq","output":"6","type":"function_call_output"}],"model":"gpt-5","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers","type":"function"},{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers","type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -177,15 +181,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_02b2a4b073ba53220168f2380cb3a48190926547554955da24", + "id": "resp_090b2c2ec0612c180169b319590fc081979080b24b97425b44", "object": "response", - "created_at": 1760704524, + "created_at": 1773345113, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345114, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -193,7 +199,7 @@ interactions: "model": "gpt-5-2025-08-07", "output": [ { - "id": "msg_02b2a4b073ba53220168f2380d87508190bfa30618f00b704e", + "id": "msg_090b2c2ec0612c180169b31959d5008197bc5cf5fcf895424d", "type": "message", "status": "completed", "content": [ @@ -201,15 +207,17 @@ interactions: "type": "output_text", "annotations": [], "logprobs": [], - "text": "Results for the numbers 2 and 3:\n- Addition: 5\n- Multiplication: 6" + "text": "Results:\n- Sum (2 + 3) = 5\n- Product (2 \u00d7 3) = 6" } ], "role": "assistant" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "medium", "summary": null @@ -277,11 +285,11 @@ interactions: "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 176, + "input_tokens": 173, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 26, + "output_tokens": 29, "output_tokens_details": { "reasoning_tokens": 0 }, @@ -295,4 +303,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 1.3138075s + duration: 2.080252208s diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/multi_tool_streaming.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/multi_tool_streaming.yaml index f1dfe25815f215c1c32c6a889b15932091a69367..20340c3fe2155aabced3e0e8b4c1843c53464484 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/multi_tool_streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/multi_tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,86 +25,50 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_09e381d930f3da290168f2380e007c819eb0824a9f89df2473","object":"response","created_at":1760704526,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_07fb4e5ebba6750d0169b3195ab2b0819398ac0b66c9fc8101","object":"response","created_at":1773345114,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_09e381d930f3da290168f2380e007c819eb0824a9f89df2473","object":"response","created_at":1760704526,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_07fb4e5ebba6750d0169b3195ab2b0819398ac0b66c9fc8101","object":"response","created_at":1773345114,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_09e381d930f3da290168f2380e6048819e8e16dbff603275ca","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.added","item":{"id":"rs_07fb4e5ebba6750d0169b3195b0f18819380aebb13fb8c7ee3","type":"reasoning","summary":[]},"output_index":0,"sequence_number":2} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":3,"output_index":0,"item":{"id":"rs_09e381d930f3da290168f2380e6048819e8e16dbff603275ca","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.done","item":{"id":"rs_07fb4e5ebba6750d0169b3195b0f18819380aebb13fb8c7ee3","type":"reasoning","summary":[]},"output_index":0,"sequence_number":3} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":4,"output_index":1,"item":{"id":"fc_09e381d930f3da290168f23811471c819e9b878cd97d590c70","type":"function_call","status":"in_progress","arguments":"","call_id":"call_mM0OA8cwZxVibTLUQ0tgfuRL","name":"add"}} + data: {"type":"response.output_item.added","item":{"id":"fc_07fb4e5ebba6750d0169b3195fdfd08193a96806479caa4789","type":"function_call","status":"in_progress","arguments":"","call_id":"call_65v82QHWb1nih7p5BEVjf7lH","name":"add"},"output_index":1,"sequence_number":4} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":5,"item_id":"fc_09e381d930f3da290168f23811471c819e9b878cd97d590c70","output_index":1,"delta":"{","obfuscation":"A28LVm1DiTYj9iJ"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":6,"item_id":"fc_09e381d930f3da290168f23811471c819e9b878cd97d590c70","output_index":1,"delta":"\"a","obfuscation":"JPXaoVvKkpCAKM"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":7,"item_id":"fc_09e381d930f3da290168f23811471c819e9b878cd97d590c70","output_index":1,"delta":"\":","obfuscation":"uqXm9A6BWRrQW9"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":8,"item_id":"fc_09e381d930f3da290168f23811471c819e9b878cd97d590c70","output_index":1,"delta":"2,","obfuscation":"rSjqV8JLpcXCyy"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":9,"item_id":"fc_09e381d930f3da290168f23811471c819e9b878cd97d590c70","output_index":1,"delta":"\"b","obfuscation":"vHlTgn3pkcFggt"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":10,"item_id":"fc_09e381d930f3da290168f23811471c819e9b878cd97d590c70","output_index":1,"delta":"\":","obfuscation":"FGSSNQEHMtsOQ9"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":11,"item_id":"fc_09e381d930f3da290168f23811471c819e9b878cd97d590c70","output_index":1,"delta":"3}","obfuscation":"yQg8YUXPlb0xkd"} + data: {"type":"response.function_call_arguments.delta","delta":"{\"a\":2,\"b\":3}","item_id":"fc_07fb4e5ebba6750d0169b3195fdfd08193a96806479caa4789","obfuscation":"Rm5","output_index":1,"sequence_number":5} event: response.function_call_arguments.done - data: {"type":"response.function_call_arguments.done","sequence_number":12,"item_id":"fc_09e381d930f3da290168f23811471c819e9b878cd97d590c70","output_index":1,"arguments":"{\"a\":2,\"b\":3}"} + data: {"type":"response.function_call_arguments.done","arguments":"{\"a\":2,\"b\":3}","item_id":"fc_07fb4e5ebba6750d0169b3195fdfd08193a96806479caa4789","output_index":1,"sequence_number":6} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":13,"output_index":1,"item":{"id":"fc_09e381d930f3da290168f23811471c819e9b878cd97d590c70","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_mM0OA8cwZxVibTLUQ0tgfuRL","name":"add"}} + data: {"type":"response.output_item.done","item":{"id":"fc_07fb4e5ebba6750d0169b3195fdfd08193a96806479caa4789","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_65v82QHWb1nih7p5BEVjf7lH","name":"add"},"output_index":1,"sequence_number":7} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":14,"output_index":2,"item":{"id":"fc_09e381d930f3da290168f238115664819ea231c4078a5f0376","type":"function_call","status":"in_progress","arguments":"","call_id":"call_ZN5JKJlLQZfBL7JTpEHES3Sm","name":"multiply"}} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":15,"item_id":"fc_09e381d930f3da290168f238115664819ea231c4078a5f0376","output_index":2,"delta":"{","obfuscation":"8dJcK7PD3X9jvxe"} + data: {"type":"response.output_item.added","item":{"id":"fc_07fb4e5ebba6750d0169b3195fdfe0819385836af19a472dad","type":"function_call","status":"in_progress","arguments":"","call_id":"call_vkCUfawj1PRERWMvw5PKhoB9","name":"multiply"},"output_index":2,"sequence_number":8} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":16,"item_id":"fc_09e381d930f3da290168f238115664819ea231c4078a5f0376","output_index":2,"delta":"\"a","obfuscation":"D9AcojCGoP0XoR"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":17,"item_id":"fc_09e381d930f3da290168f238115664819ea231c4078a5f0376","output_index":2,"delta":"\":","obfuscation":"LWpcm2Co0t9wOb"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":18,"item_id":"fc_09e381d930f3da290168f238115664819ea231c4078a5f0376","output_index":2,"delta":"2,","obfuscation":"mdBjj4nf2MtHzU"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":19,"item_id":"fc_09e381d930f3da290168f238115664819ea231c4078a5f0376","output_index":2,"delta":"\"b","obfuscation":"TCZjctdZylEM7V"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":20,"item_id":"fc_09e381d930f3da290168f238115664819ea231c4078a5f0376","output_index":2,"delta":"\":","obfuscation":"AW3CGCQsAgdcuq"} - - event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":21,"item_id":"fc_09e381d930f3da290168f238115664819ea231c4078a5f0376","output_index":2,"delta":"3}","obfuscation":"woholi6rbpmqFw"} + data: {"type":"response.function_call_arguments.delta","delta":"{\"a\":2,\"b\":3}","item_id":"fc_07fb4e5ebba6750d0169b3195fdfe0819385836af19a472dad","obfuscation":"iAz","output_index":2,"sequence_number":9} event: response.function_call_arguments.done - data: {"type":"response.function_call_arguments.done","sequence_number":22,"item_id":"fc_09e381d930f3da290168f238115664819ea231c4078a5f0376","output_index":2,"arguments":"{\"a\":2,\"b\":3}"} + data: {"type":"response.function_call_arguments.done","arguments":"{\"a\":2,\"b\":3}","item_id":"fc_07fb4e5ebba6750d0169b3195fdfe0819385836af19a472dad","output_index":2,"sequence_number":10} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":23,"output_index":2,"item":{"id":"fc_09e381d930f3da290168f238115664819ea231c4078a5f0376","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_ZN5JKJlLQZfBL7JTpEHES3Sm","name":"multiply"}} + data: {"type":"response.output_item.done","item":{"id":"fc_07fb4e5ebba6750d0169b3195fdfe0819385836af19a472dad","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_vkCUfawj1PRERWMvw5PKhoB9","name":"multiply"},"output_index":2,"sequence_number":11} event: response.completed - data: {"type":"response.completed","sequence_number":24,"response":{"id":"resp_09e381d930f3da290168f2380e007c819eb0824a9f89df2473","object":"response","created_at":1760704526,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[{"id":"rs_09e381d930f3da290168f2380e6048819e8e16dbff603275ca","type":"reasoning","summary":[]},{"id":"fc_09e381d930f3da290168f23811471c819e9b878cd97d590c70","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_mM0OA8cwZxVibTLUQ0tgfuRL","name":"add"},{"id":"fc_09e381d930f3da290168f238115664819ea231c4078a5f0376","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_ZN5JKJlLQZfBL7JTpEHES3Sm","name":"multiply"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":56,"input_tokens_details":{"cached_tokens":0},"output_tokens":311,"output_tokens_details":{"reasoning_tokens":256},"total_tokens":367},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_07fb4e5ebba6750d0169b3195ab2b0819398ac0b66c9fc8101","object":"response","created_at":1773345114,"status":"completed","background":false,"completed_at":1773345119,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[{"id":"rs_07fb4e5ebba6750d0169b3195b0f18819380aebb13fb8c7ee3","type":"reasoning","summary":[]},{"id":"fc_07fb4e5ebba6750d0169b3195fdfd08193a96806479caa4789","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_65v82QHWb1nih7p5BEVjf7lH","name":"add"},{"id":"fc_07fb4e5ebba6750d0169b3195fdfe0819385836af19a472dad","type":"function_call","status":"completed","arguments":"{\"a\":2,\"b\":3}","call_id":"call_vkCUfawj1PRERWMvw5PKhoB9","name":"multiply"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":109,"input_tokens_details":{"cached_tokens":0},"output_tokens":272,"output_tokens_details":{"reasoning_tokens":192},"total_tokens":381},"user":null,"metadata":{}},"sequence_number":12} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 283.240959ms + duration: 258.1015ms - id: 1 request: proto: HTTP/1.1 @@ -112,14 +76,14 @@ interactions: proto_minor: 1 content_length: 1260 host: "" - body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"developer"},{"content":[{"text":"Add and multiply the number 2 and 3","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_mM0OA8cwZxVibTLUQ0tgfuRL","name":"add","type":"function_call"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_ZN5JKJlLQZfBL7JTpEHES3Sm","name":"multiply","type":"function_call"},{"call_id":"call_mM0OA8cwZxVibTLUQ0tgfuRL","output":"5","type":"function_call_output"},{"call_id":"call_ZN5JKJlLQZfBL7JTpEHES3Sm","output":"6","type":"function_call_output"}],"model":"gpt-5","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers","type":"function"},{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers","type":"function"}],"stream":true}' + body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"developer"},{"content":[{"text":"Add and multiply the number 2 and 3","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_65v82QHWb1nih7p5BEVjf7lH","name":"add","type":"function_call"},{"arguments":"\"{\\\"a\\\":2,\\\"b\\\":3}\"","call_id":"call_vkCUfawj1PRERWMvw5PKhoB9","name":"multiply","type":"function_call"},{"call_id":"call_65v82QHWb1nih7p5BEVjf7lH","output":"5","type":"function_call_output"},{"call_id":"call_vkCUfawj1PRERWMvw5PKhoB9","output":"6","type":"function_call_output"}],"model":"gpt-5","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"add","description":"Add two numbers","type":"function"},{"strict":false,"parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"name":"multiply","description":"Multiply two numbers","type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -129,74 +93,68 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_09bb7d797077bd810168f23811b088819fb2b1949e8dca30ed","object":"response","created_at":1760704529,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_060c32d4ad52dd1b0169b319603c74819fba7d9eb0608667bf","object":"response","created_at":1773345120,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_09bb7d797077bd810168f23811b088819fb2b1949e8dca30ed","object":"response","created_at":1760704529,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_060c32d4ad52dd1b0169b319603c74819fba7d9eb0608667bf","object":"response","created_at":1773345120,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_060c32d4ad52dd1b0169b31960f1a8819fa607eb963e4b2b01","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":0,"sequence_number":2} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":3,"item_id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":4,"item_id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","output_index":0,"content_index":0,"delta":"Results","logprobs":[],"obfuscation":"6StWlhs3v"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":5,"item_id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","output_index":0,"content_index":0,"delta":":\n","logprobs":[],"obfuscation":"7HlDzzfB4tGg8e"} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_060c32d4ad52dd1b0169b31960f1a8819fa607eb963e4b2b01","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":3} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","output_index":0,"content_index":0,"delta":"-","logprobs":[],"obfuscation":"aSgNiqlzrKxjwYJ"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Addition","item_id":"msg_060c32d4ad52dd1b0169b31960f1a8819fa607eb963e4b2b01","logprobs":[],"obfuscation":"vECP4wnX","output_index":0,"sequence_number":4} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","output_index":0,"content_index":0,"delta":" Addition","logprobs":[],"obfuscation":"1kIs9Fe"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" result","item_id":"msg_060c32d4ad52dd1b0169b31960f1a8819fa607eb963e4b2b01","logprobs":[],"obfuscation":"DWVN7X0hy","output_index":0,"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","output_index":0,"content_index":0,"delta":":","logprobs":[],"obfuscation":"N8ePsIjPQkwgIIm"} + data: {"type":"response.output_text.delta","content_index":0,"delta":":","item_id":"msg_060c32d4ad52dd1b0169b31960f1a8819fa607eb963e4b2b01","logprobs":[],"obfuscation":"lmi55AuYocEnr7a","output_index":0,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","output_index":0,"content_index":0,"delta":" ","logprobs":[],"obfuscation":"tDupEgp74kvVegn"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" ","item_id":"msg_060c32d4ad52dd1b0169b31960f1a8819fa607eb963e4b2b01","logprobs":[],"obfuscation":"yMned8Cq9YnQpOq","output_index":0,"sequence_number":7} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","output_index":0,"content_index":0,"delta":"5","logprobs":[],"obfuscation":"TXGo0Bhtqs0YNF5"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"5","item_id":"msg_060c32d4ad52dd1b0169b31960f1a8819fa607eb963e4b2b01","logprobs":[],"obfuscation":"3rDBo7AQjM3kcoe","output_index":0,"sequence_number":8} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","output_index":0,"content_index":0,"delta":"\n","logprobs":[],"obfuscation":"sUe555ChDTIWxUy"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\n","item_id":"msg_060c32d4ad52dd1b0169b31960f1a8819fa607eb963e4b2b01","logprobs":[],"obfuscation":"911PdPNTDmw3zgS","output_index":0,"sequence_number":9} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":12,"item_id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","output_index":0,"content_index":0,"delta":"-","logprobs":[],"obfuscation":"LnlsBondAJmfbak"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Multip","item_id":"msg_060c32d4ad52dd1b0169b31960f1a8819fa607eb963e4b2b01","logprobs":[],"obfuscation":"nsz8t1oBSB","output_index":0,"sequence_number":10} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":13,"item_id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","output_index":0,"content_index":0,"delta":" Multip","logprobs":[],"obfuscation":"5vR7Ad1x4"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"lication","item_id":"msg_060c32d4ad52dd1b0169b31960f1a8819fa607eb963e4b2b01","logprobs":[],"obfuscation":"qBMKXuX3","output_index":0,"sequence_number":11} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":14,"item_id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","output_index":0,"content_index":0,"delta":"lication","logprobs":[],"obfuscation":"2tYg9jRB"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" result","item_id":"msg_060c32d4ad52dd1b0169b31960f1a8819fa607eb963e4b2b01","logprobs":[],"obfuscation":"i16z2RxV4","output_index":0,"sequence_number":12} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":15,"item_id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","output_index":0,"content_index":0,"delta":":","logprobs":[],"obfuscation":"35cmlvHPfcNwftK"} + data: {"type":"response.output_text.delta","content_index":0,"delta":":","item_id":"msg_060c32d4ad52dd1b0169b31960f1a8819fa607eb963e4b2b01","logprobs":[],"obfuscation":"n3Nf4afxOCFpEmF","output_index":0,"sequence_number":13} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":16,"item_id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","output_index":0,"content_index":0,"delta":" ","logprobs":[],"obfuscation":"paqGVy5mDHZwDrl"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" ","item_id":"msg_060c32d4ad52dd1b0169b31960f1a8819fa607eb963e4b2b01","logprobs":[],"obfuscation":"WLV0YdqLA3iiuwh","output_index":0,"sequence_number":14} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":17,"item_id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","output_index":0,"content_index":0,"delta":"6","logprobs":[],"obfuscation":"7GUVgOzItgYc95c"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"6","item_id":"msg_060c32d4ad52dd1b0169b31960f1a8819fa607eb963e4b2b01","logprobs":[],"obfuscation":"mgFwGkBtk9ZLQJ8","output_index":0,"sequence_number":15} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":18,"item_id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","output_index":0,"content_index":0,"text":"Results:\n- Addition: 5\n- Multiplication: 6","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_060c32d4ad52dd1b0169b31960f1a8819fa607eb963e4b2b01","logprobs":[],"output_index":0,"sequence_number":16,"text":"Addition result: 5\nMultiplication result: 6"} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":19,"item_id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Results:\n- Addition: 5\n- Multiplication: 6"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_060c32d4ad52dd1b0169b31960f1a8819fa607eb963e4b2b01","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Addition result: 5\nMultiplication result: 6"},"sequence_number":17} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":20,"output_index":0,"item":{"id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Results:\n- Addition: 5\n- Multiplication: 6"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_060c32d4ad52dd1b0169b31960f1a8819fa607eb963e4b2b01","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Addition result: 5\nMultiplication result: 6"}],"role":"assistant"},"output_index":0,"sequence_number":18} event: response.completed - data: {"type":"response.completed","sequence_number":21,"response":{"id":"resp_09bb7d797077bd810168f23811b088819fb2b1949e8dca30ed","object":"response","created_at":1760704529,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[{"id":"msg_09bb7d797077bd810168f238125ad4819f84cc331e42e9f26c","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Results:\n- Addition: 5\n- Multiplication: 6"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":172,"input_tokens_details":{"cached_tokens":0},"output_tokens":18,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":190},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_060c32d4ad52dd1b0169b319603c74819fba7d9eb0608667bf","object":"response","created_at":1773345120,"status":"completed","background":false,"completed_at":1773345121,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[{"id":"msg_060c32d4ad52dd1b0169b31960f1a8819fa607eb963e4b2b01","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Addition result: 5\nMultiplication result: 6"}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Add two numbers","name":"add","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false},{"type":"function","description":"Multiply two numbers","name":"multiply","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":169,"input_tokens_details":{"cached_tokens":0},"output_tokens":16,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":185},"user":null,"metadata":{}},"sequence_number":19} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 250.805041ms + duration: 238.775459ms diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/simple.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/simple.yaml index 0d497eaf748cbc155420f659ff13705d4307d178..bd9e8af67d1efd1ce675a8de057695f4e2e51aaf 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/simple.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_0b81ac5fdc5483560168f237f54ccc81968efa75aba7162889", + "id": "resp_02024dfc5f4dacc80169b319301db4819587c30653126df754", "object": "response", - "created_at": 1760704501, + "created_at": 1773345072, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345074, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -42,12 +44,12 @@ interactions: "model": "gpt-5-2025-08-07", "output": [ { - "id": "rs_0b81ac5fdc5483560168f237f6618881968521aadd267daa6a", + "id": "rs_02024dfc5f4dacc80169b319307bc4819588310448b323625a", "type": "reasoning", "summary": [] }, { - "id": "msg_0b81ac5fdc5483560168f237f84b6c81968619287b3bf9dee9", + "id": "msg_02024dfc5f4dacc80169b319326820819584d998f22e95c207", "type": "message", "status": "completed", "content": [ @@ -55,15 +57,17 @@ interactions: "type": "output_text", "annotations": [], "logprobs": [], - "text": "Oi!" + "text": "Ol\u00e1!" } ], "role": "assistant" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "medium", "summary": null @@ -88,11 +92,11 @@ interactions: "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 136, + "output_tokens": 116, "output_tokens_details": { - "reasoning_tokens": 128 + "reasoning_tokens": 64 }, - "total_tokens": 155 + "total_tokens": 135 }, "user": null, "metadata": {} @@ -102,4 +106,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 3.478110792s + duration: 2.786829208s diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/simple_streaming.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/simple_streaming.yaml index 83dd08ea6e91bd8c1422ccd884472d9b54917cef..3c2ac5848945e9cd76d138f1e3956bb5cb36932c 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/simple_streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,44 +25,44 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_06f879733b735e3a0168f237f8c33481a2ba14b36d6b67d967","object":"response","created_at":1760704504,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_0c8a85042b7cd7a50169b31933ad68819fac3a7136b8acfe2e","object":"response","created_at":1773345075,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_06f879733b735e3a0168f237f8c33481a2ba14b36d6b67d967","object":"response","created_at":1760704504,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_0c8a85042b7cd7a50169b31933ad68819fac3a7136b8acfe2e","object":"response","created_at":1773345075,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_06f879733b735e3a0168f237f941a481a28d55b9bcf8fe577c","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.added","item":{"id":"rs_0c8a85042b7cd7a50169b319343c24819fb2e79948660b3840","type":"reasoning","summary":[]},"output_index":0,"sequence_number":2} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":3,"output_index":0,"item":{"id":"rs_06f879733b735e3a0168f237f941a481a28d55b9bcf8fe577c","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.done","item":{"id":"rs_0c8a85042b7cd7a50169b319343c24819fb2e79948660b3840","type":"reasoning","summary":[]},"output_index":0,"sequence_number":3} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":4,"output_index":1,"item":{"id":"msg_06f879733b735e3a0168f237fac9c481a2b3a561bc2c54232c","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_0c8a85042b7cd7a50169b3193618a4819fa1f11af9a7d23d05","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":1,"sequence_number":4} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":5,"item_id":"msg_06f879733b735e3a0168f237fac9c481a2b3a561bc2c54232c","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_0c8a85042b7cd7a50169b3193618a4819fa1f11af9a7d23d05","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_06f879733b735e3a0168f237fac9c481a2b3a561bc2c54232c","output_index":1,"content_index":0,"delta":"Olá","logprobs":[],"obfuscation":"UqLDi4LzR6EDJ"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Olá","item_id":"msg_0c8a85042b7cd7a50169b3193618a4819fa1f11af9a7d23d05","logprobs":[],"obfuscation":"5GPWRLF7QowPE","output_index":1,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_06f879733b735e3a0168f237fac9c481a2b3a561bc2c54232c","output_index":1,"content_index":0,"delta":"!","logprobs":[],"obfuscation":"nohgR94nfxqT0xc"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"!","item_id":"msg_0c8a85042b7cd7a50169b3193618a4819fa1f11af9a7d23d05","logprobs":[],"obfuscation":"vv6Zxt2DFTNY9Tz","output_index":1,"sequence_number":7} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":8,"item_id":"msg_06f879733b735e3a0168f237fac9c481a2b3a561bc2c54232c","output_index":1,"content_index":0,"text":"Olá!","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_0c8a85042b7cd7a50169b3193618a4819fa1f11af9a7d23d05","logprobs":[],"output_index":1,"sequence_number":8,"text":"Olá!"} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":9,"item_id":"msg_06f879733b735e3a0168f237fac9c481a2b3a561bc2c54232c","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_0c8a85042b7cd7a50169b3193618a4819fa1f11af9a7d23d05","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"},"sequence_number":9} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":10,"output_index":1,"item":{"id":"msg_06f879733b735e3a0168f237fac9c481a2b3a561bc2c54232c","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_0c8a85042b7cd7a50169b3193618a4819fa1f11af9a7d23d05","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"}],"role":"assistant"},"output_index":1,"sequence_number":10} event: response.completed - data: {"type":"response.completed","sequence_number":11,"response":{"id":"resp_06f879733b735e3a0168f237f8c33481a2ba14b36d6b67d967","object":"response","created_at":1760704504,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[{"id":"rs_06f879733b735e3a0168f237f941a481a28d55b9bcf8fe577c","type":"reasoning","summary":[]},{"id":"msg_06f879733b735e3a0168f237fac9c481a2b3a561bc2c54232c","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":19,"input_tokens_details":{"cached_tokens":0},"output_tokens":136,"output_tokens_details":{"reasoning_tokens":128},"total_tokens":155},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_0c8a85042b7cd7a50169b31933ad68819fac3a7136b8acfe2e","object":"response","created_at":1773345075,"status":"completed","background":false,"completed_at":1773345078,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[{"id":"rs_0c8a85042b7cd7a50169b319343c24819fb2e79948660b3840","type":"reasoning","summary":[]},{"id":"msg_0c8a85042b7cd7a50169b3193618a4819fa1f11af9a7d23d05","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":19,"input_tokens_details":{"cached_tokens":0},"output_tokens":108,"output_tokens_details":{"reasoning_tokens":64},"total_tokens":127},"user":null,"metadata":{}},"sequence_number":11} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 252.58825ms + duration: 1.019619708s diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/tool.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/tool.yaml index 24587f0a92ca9fc2064ea35ca3d198379b94d71b..f1501d50c26de99584820ace1b531beeb612c347 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/tool.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_03c1862e0741d1d40168f237fb21e88191bbe5c97d0994130f", + "id": "resp_07acbe0aaedca68d0169b319365d8481969b62465aff0f7bc8", "object": "response", - "created_at": 1760704507, + "created_at": 1773345078, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345080, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -42,22 +44,24 @@ interactions: "model": "gpt-5-2025-08-07", "output": [ { - "id": "rs_03c1862e0741d1d40168f237fb807c819194656e80eb126a65", + "id": "rs_07acbe0aaedca68d0169b31936b8c4819680474c33b1cd2067", "type": "reasoning", "summary": [] }, { - "id": "fc_03c1862e0741d1d40168f237fce0c88191a227de0e0fc29c2c", + "id": "fc_07acbe0aaedca68d0169b31937d54081968957c8161482d509", "type": "function_call", "status": "completed", "arguments": "{\"location\":\"Florence, Italy\"}", - "call_id": "call_pG7sDgSfcLvcZrGGJrH3Z3aQ", + "call_id": "call_d2Jw9Yi3xW2waCu4FfmMPBEn", "name": "weather" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "medium", "summary": null @@ -97,15 +101,15 @@ interactions: "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 66, + "input_tokens": 63, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 86, + "output_tokens": 93, "output_tokens_details": { "reasoning_tokens": 64 }, - "total_tokens": 152 + "total_tokens": 156 }, "user": null, "metadata": {} @@ -115,7 +119,7 @@ interactions: - application/json status: 200 OK code: 200 - duration: 2.09006325s + duration: 2.367363417s - id: 1 request: proto: HTTP/1.1 @@ -123,14 +127,14 @@ interactions: proto_minor: 1 content_length: 721 host: "" - body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_pG7sDgSfcLvcZrGGJrH3Z3aQ","name":"weather","type":"function_call"},{"call_id":"call_pG7sDgSfcLvcZrGGJrH3Z3aQ","output":"40 C","type":"function_call_output"}],"model":"gpt-5","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}' + body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_d2Jw9Yi3xW2waCu4FfmMPBEn","name":"weather","type":"function_call"},{"call_id":"call_d2Jw9Yi3xW2waCu4FfmMPBEn","output":"40 C","type":"function_call_output"}],"model":"gpt-5","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -141,15 +145,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_00c0656fa55dff4a0168f237fd3b9c8196bd4e4de8737e9452", + "id": "resp_03d61eab4560a2c00169b3193990088194a38da4e4ddb306ec", "object": "response", - "created_at": 1760704509, + "created_at": 1773345081, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345090, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -157,12 +163,12 @@ interactions: "model": "gpt-5-2025-08-07", "output": [ { - "id": "rs_00c0656fa55dff4a0168f237fdc064819691999ce73a7ce97a", + "id": "rs_03d61eab4560a2c00169b3193a33388194b4ac06cdbd59dbea", "type": "reasoning", "summary": [] }, { - "id": "msg_00c0656fa55dff4a0168f2380148748196b3987065a61dba12", + "id": "msg_03d61eab4560a2c00169b31941cad881948f488c681492f5d6", "type": "message", "status": "completed", "content": [ @@ -170,15 +176,17 @@ interactions: "type": "output_text", "annotations": [], "logprobs": [], - "text": "Right now in Florence, Italy it\u2019s about 40\u00b0C. Would you like the forecast or details like humidity and wind?" + "text": "It\u2019s currently about 40\u00b0C (104\u00b0F) in Florence, Italy." } ], "role": "assistant" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "medium", "summary": null @@ -218,15 +226,15 @@ interactions: "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 97, + "input_tokens": 94, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 287, + "output_tokens": 219, "output_tokens_details": { - "reasoning_tokens": 256 + "reasoning_tokens": 192 }, - "total_tokens": 384 + "total_tokens": 313 }, "user": null, "metadata": {} @@ -236,4 +244,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 4.618793667s + duration: 10.431176s diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/tool_streaming.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/tool_streaming.yaml index a64d062e53a34af514922753544d147ccebb9622..d514ff56350c0ac05c1eadd0121ae6e6fa097f8d 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/tool_streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-gpt-5/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,59 +25,59 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0f08b04cd21bd82c0168f23801d5c881a2b0d9b07784b8413a","object":"response","created_at":1760704513,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_0482d9f8acdf0e0d0169b319432fa481948bdc7df374b5e464","object":"response","created_at":1773345091,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0f08b04cd21bd82c0168f23801d5c881a2b0d9b07784b8413a","object":"response","created_at":1760704513,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_0482d9f8acdf0e0d0169b319432fa481948bdc7df374b5e464","object":"response","created_at":1773345091,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_0f08b04cd21bd82c0168f2380221f881a290014a36b8e479a4","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.added","item":{"id":"rs_0482d9f8acdf0e0d0169b319438b988194b48fd3d175a69307","type":"reasoning","summary":[]},"output_index":0,"sequence_number":2} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":3,"output_index":0,"item":{"id":"rs_0f08b04cd21bd82c0168f2380221f881a290014a36b8e479a4","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.done","item":{"id":"rs_0482d9f8acdf0e0d0169b319438b988194b48fd3d175a69307","type":"reasoning","summary":[]},"output_index":0,"sequence_number":3} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":4,"output_index":1,"item":{"id":"fc_0f08b04cd21bd82c0168f23803cc1481a28dc92074ab71c2e0","type":"function_call","status":"in_progress","arguments":"","call_id":"call_kGfQAVJ6MRnp9dXE2d0uYojD","name":"weather"}} + data: {"type":"response.output_item.added","item":{"id":"fc_0482d9f8acdf0e0d0169b3194641ac8194b5d6d7120eb52c48","type":"function_call","status":"in_progress","arguments":"","call_id":"call_lEeVe1NUWaZ7MWIyf58FEKCg","name":"weather"},"output_index":1,"sequence_number":4} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":5,"item_id":"fc_0f08b04cd21bd82c0168f23803cc1481a28dc92074ab71c2e0","output_index":1,"delta":"{\"","obfuscation":"xcxYsutrsF2Mr3"} + data: {"type":"response.function_call_arguments.delta","delta":"{\"","item_id":"fc_0482d9f8acdf0e0d0169b3194641ac8194b5d6d7120eb52c48","obfuscation":"VHCQFAeIhlWuax","output_index":1,"sequence_number":5} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":6,"item_id":"fc_0f08b04cd21bd82c0168f23803cc1481a28dc92074ab71c2e0","output_index":1,"delta":"location","obfuscation":"wSCxPmqE"} + data: {"type":"response.function_call_arguments.delta","delta":"location","item_id":"fc_0482d9f8acdf0e0d0169b3194641ac8194b5d6d7120eb52c48","obfuscation":"vqQDaUOz","output_index":1,"sequence_number":6} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":7,"item_id":"fc_0f08b04cd21bd82c0168f23803cc1481a28dc92074ab71c2e0","output_index":1,"delta":"\":\"","obfuscation":"UNB0sKeiNNVya"} + data: {"type":"response.function_call_arguments.delta","delta":"\":\"","item_id":"fc_0482d9f8acdf0e0d0169b3194641ac8194b5d6d7120eb52c48","obfuscation":"FilxKuJ4z4aV4","output_index":1,"sequence_number":7} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":8,"item_id":"fc_0f08b04cd21bd82c0168f23803cc1481a28dc92074ab71c2e0","output_index":1,"delta":"Flor","obfuscation":"nmio6Y5KgBCY"} + data: {"type":"response.function_call_arguments.delta","delta":"Flor","item_id":"fc_0482d9f8acdf0e0d0169b3194641ac8194b5d6d7120eb52c48","obfuscation":"ftgV6AHDDmLR","output_index":1,"sequence_number":8} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":9,"item_id":"fc_0f08b04cd21bd82c0168f23803cc1481a28dc92074ab71c2e0","output_index":1,"delta":"ence","obfuscation":"dnccg49kl0GV"} + data: {"type":"response.function_call_arguments.delta","delta":"ence","item_id":"fc_0482d9f8acdf0e0d0169b3194641ac8194b5d6d7120eb52c48","obfuscation":"QZrcohzpzm8x","output_index":1,"sequence_number":9} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":10,"item_id":"fc_0f08b04cd21bd82c0168f23803cc1481a28dc92074ab71c2e0","output_index":1,"delta":",","obfuscation":"zwu8CHinn8HhyUq"} + data: {"type":"response.function_call_arguments.delta","delta":",","item_id":"fc_0482d9f8acdf0e0d0169b3194641ac8194b5d6d7120eb52c48","obfuscation":"GVBt3zDgbpXMvHN","output_index":1,"sequence_number":10} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":11,"item_id":"fc_0f08b04cd21bd82c0168f23803cc1481a28dc92074ab71c2e0","output_index":1,"delta":" Italy","obfuscation":"JrzifooHsu"} + data: {"type":"response.function_call_arguments.delta","delta":" Italy","item_id":"fc_0482d9f8acdf0e0d0169b3194641ac8194b5d6d7120eb52c48","obfuscation":"loHW1eoXLG","output_index":1,"sequence_number":11} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":12,"item_id":"fc_0f08b04cd21bd82c0168f23803cc1481a28dc92074ab71c2e0","output_index":1,"delta":"\"}","obfuscation":"EOPhpWvCbvwgkS"} + data: {"type":"response.function_call_arguments.delta","delta":"\"}","item_id":"fc_0482d9f8acdf0e0d0169b3194641ac8194b5d6d7120eb52c48","obfuscation":"Mn7Frdqyx8HpSC","output_index":1,"sequence_number":12} event: response.function_call_arguments.done - data: {"type":"response.function_call_arguments.done","sequence_number":13,"item_id":"fc_0f08b04cd21bd82c0168f23803cc1481a28dc92074ab71c2e0","output_index":1,"arguments":"{\"location\":\"Florence, Italy\"}"} + data: {"type":"response.function_call_arguments.done","arguments":"{\"location\":\"Florence, Italy\"}","item_id":"fc_0482d9f8acdf0e0d0169b3194641ac8194b5d6d7120eb52c48","output_index":1,"sequence_number":13} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":14,"output_index":1,"item":{"id":"fc_0f08b04cd21bd82c0168f23803cc1481a28dc92074ab71c2e0","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_kGfQAVJ6MRnp9dXE2d0uYojD","name":"weather"}} + data: {"type":"response.output_item.done","item":{"id":"fc_0482d9f8acdf0e0d0169b3194641ac8194b5d6d7120eb52c48","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_lEeVe1NUWaZ7MWIyf58FEKCg","name":"weather"},"output_index":1,"sequence_number":14} event: response.completed - data: {"type":"response.completed","sequence_number":15,"response":{"id":"resp_0f08b04cd21bd82c0168f23801d5c881a2b0d9b07784b8413a","object":"response","created_at":1760704513,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[{"id":"rs_0f08b04cd21bd82c0168f2380221f881a290014a36b8e479a4","type":"reasoning","summary":[]},{"id":"fc_0f08b04cd21bd82c0168f23803cc1481a28dc92074ab71c2e0","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_kGfQAVJ6MRnp9dXE2d0uYojD","name":"weather"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":66,"input_tokens_details":{"cached_tokens":0},"output_tokens":150,"output_tokens_details":{"reasoning_tokens":128},"total_tokens":216},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_0482d9f8acdf0e0d0169b319432fa481948bdc7df374b5e464","object":"response","created_at":1773345091,"status":"completed","background":false,"completed_at":1773345094,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[{"id":"rs_0482d9f8acdf0e0d0169b319438b988194b48fd3d175a69307","type":"reasoning","summary":[]},{"id":"fc_0482d9f8acdf0e0d0169b3194641ac8194b5d6d7120eb52c48","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_lEeVe1NUWaZ7MWIyf58FEKCg","name":"weather"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":63,"input_tokens_details":{"cached_tokens":0},"output_tokens":124,"output_tokens_details":{"reasoning_tokens":64},"total_tokens":187},"user":null,"metadata":{}},"sequence_number":15} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 281.778583ms + duration: 314.099875ms - id: 1 request: proto: HTTP/1.1 @@ -85,14 +85,14 @@ interactions: proto_minor: 1 content_length: 735 host: "" - body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_kGfQAVJ6MRnp9dXE2d0uYojD","name":"weather","type":"function_call"},{"call_id":"call_kGfQAVJ6MRnp9dXE2d0uYojD","output":"40 C","type":"function_call_output"}],"model":"gpt-5","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}' + body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_lEeVe1NUWaZ7MWIyf58FEKCg","name":"weather","type":"function_call"},{"call_id":"call_lEeVe1NUWaZ7MWIyf58FEKCg","output":"40 C","type":"function_call_output"}],"model":"gpt-5","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -102,116 +102,125 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0eaa9d097b2a92720168f238043bb481929c94d445e6308cf0","object":"response","created_at":1760704516,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_06494ddbfa4b09cc0169b319477e2c8191a3c7d50a6412241c","object":"response","created_at":1773345095,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0eaa9d097b2a92720168f238043bb481929c94d445e6308cf0","object":"response","created_at":1760704516,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_06494ddbfa4b09cc0169b319477e2c8191a3c7d50a6412241c","object":"response","created_at":1773345095,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_0eaa9d097b2a92720168f23804ce888192b7336b8d4035a45d","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.added","item":{"id":"rs_06494ddbfa4b09cc0169b3194822e48191acc98a982fdf7970","type":"reasoning","summary":[]},"output_index":0,"sequence_number":2} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":3,"output_index":0,"item":{"id":"rs_0eaa9d097b2a92720168f23804ce888192b7336b8d4035a45d","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.done","item":{"id":"rs_06494ddbfa4b09cc0169b3194822e48191acc98a982fdf7970","type":"reasoning","summary":[]},"output_index":0,"sequence_number":3} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":4,"output_index":1,"item":{"id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":1,"sequence_number":4} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":5,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":"It","logprobs":[],"obfuscation":"qcuOrpMigLjgYx"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"It","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"cWBSszRtrOCIRl","output_index":1,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":"’s","logprobs":[],"obfuscation":"BPKnl3lugU0n8Q"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"’s","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"6lvv5DFjWiM8k5","output_index":1,"sequence_number":7} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":" currently","logprobs":[],"obfuscation":"MoQlwI"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" about","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"ePiPxjpkR5","output_index":1,"sequence_number":8} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":" about","logprobs":[],"obfuscation":"jJLAHeLcaa"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" ","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"r5DjzxsGPKzzhaL","output_index":1,"sequence_number":9} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":" ","logprobs":[],"obfuscation":"T7DA0KFl7T9dCNp"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"40","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"Vq2Y4PRmIwQe14","output_index":1,"sequence_number":10} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":"40","logprobs":[],"obfuscation":"iqIKIEx7Vvby8v"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"°C","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"JEwuFcRH5Wg9kA","output_index":1,"sequence_number":11} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":12,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":"°C","logprobs":[],"obfuscation":"Z6SUC2Ijtf39QQ"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" (","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"SbxxnA0luqhUTh","output_index":1,"sequence_number":12} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":13,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":" (","logprobs":[],"obfuscation":"0fdEh8YqW52Eln"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"104","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"X0k6tZfDWz4hM","output_index":1,"sequence_number":13} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":14,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":"104","logprobs":[],"obfuscation":"NPDD9eImQzTaO"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"°F","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"S3fUdQ7R4HAQ8Y","output_index":1,"sequence_number":14} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":15,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":"°F","logprobs":[],"obfuscation":"2v6RZJh1tMZuzH"} + data: {"type":"response.output_text.delta","content_index":0,"delta":")","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"J5iLIX5Pwy82zwd","output_index":1,"sequence_number":15} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":16,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":")","logprobs":[],"obfuscation":"acclkkaR3ZuJLEO"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" in","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"Ezk0gX2gQlgFV","output_index":1,"sequence_number":16} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":17,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":" in","logprobs":[],"obfuscation":"mAqi3AUpM4err"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Florence","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"Stt1mR3","output_index":1,"sequence_number":17} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":18,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":" Florence","logprobs":[],"obfuscation":"EzqWNVR"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"2VatvV5R9RVvoOD","output_index":1,"sequence_number":18} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":19,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":",","logprobs":[],"obfuscation":"V9xzbMRz64sqFUh"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Italy","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"ikJklK9yap","output_index":1,"sequence_number":19} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":20,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":" Italy","logprobs":[],"obfuscation":"0Icvry5xOU"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" right","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"PgXFwJWXi0","output_index":1,"sequence_number":20} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":21,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":".","logprobs":[],"obfuscation":"pmxPGojorJXet5q"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" now","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"KOlW9nYdpLEN","output_index":1,"sequence_number":21} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":22,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":" Would","logprobs":[],"obfuscation":"qbbDMSp9OW"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"787d1eJwdajC4Xm","output_index":1,"sequence_number":22} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":23,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":" you","logprobs":[],"obfuscation":"aektY0mnj2fu"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Want","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"wnD0ywo76A5","output_index":1,"sequence_number":23} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":24,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":" like","logprobs":[],"obfuscation":"WHfweP6M2nZ"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" the","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"DzY8NrwM7I5y","output_index":1,"sequence_number":24} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":25,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":" today","logprobs":[],"obfuscation":"vKe3upqWqt"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" forecast","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"gYqteGg","output_index":1,"sequence_number":25} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":26,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":"’s","logprobs":[],"obfuscation":"NZe03vwqxO25tr"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" or","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"tUfZZADznQk8L","output_index":1,"sequence_number":26} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":27,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":" forecast","logprobs":[],"obfuscation":"Mm5i3mS"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" tips","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"NmSkqcqLdW0","output_index":1,"sequence_number":27} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":28,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":" or","logprobs":[],"obfuscation":"SQ8WZNc7b96eu"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" for","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"WbQhp14NfU2C","output_index":1,"sequence_number":28} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":29,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":" hourly","logprobs":[],"obfuscation":"rNTUCs5ZP"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" staying","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"TsTDK1jY","output_index":1,"sequence_number":29} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":30,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":" details","logprobs":[],"obfuscation":"DCaRtQ80"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" cool","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"spwLMyDeecW","output_index":1,"sequence_number":30} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":31,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"delta":"?","logprobs":[],"obfuscation":"CunNisEbweeNHGk"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" in","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"LJYUdtCFfr0Ls","output_index":1,"sequence_number":31} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" the","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"XsMR9DGqltH8","output_index":1,"sequence_number":32} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" heat","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"YUD1G3S0F5v","output_index":1,"sequence_number":33} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":"?","item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"obfuscation":"OdrruQMA4a3qf2T","output_index":1,"sequence_number":34} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":32,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"text":"It’s currently about 40°C (104°F) in Florence, Italy. Would you like today’s forecast or hourly details?","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","logprobs":[],"output_index":1,"sequence_number":35,"text":"It’s about 40°C (104°F) in Florence, Italy right now. Want the forecast or tips for staying cool in the heat?"} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":33,"item_id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"It’s currently about 40°C (104°F) in Florence, Italy. Would you like today’s forecast or hourly details?"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"It’s about 40°C (104°F) in Florence, Italy right now. Want the forecast or tips for staying cool in the heat?"},"sequence_number":36} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":34,"output_index":1,"item":{"id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"It’s currently about 40°C (104°F) in Florence, Italy. Would you like today’s forecast or hourly details?"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"It’s about 40°C (104°F) in Florence, Italy right now. Want the forecast or tips for staying cool in the heat?"}],"role":"assistant"},"output_index":1,"sequence_number":37} event: response.completed - data: {"type":"response.completed","sequence_number":35,"response":{"id":"resp_0eaa9d097b2a92720168f238043bb481929c94d445e6308cf0","object":"response","created_at":1760704516,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[{"id":"rs_0eaa9d097b2a92720168f23804ce888192b7336b8d4035a45d","type":"reasoning","summary":[]},{"id":"msg_0eaa9d097b2a92720168f238084de88192bd4307c15498a6c0","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"It’s currently about 40°C (104°F) in Florence, Italy. Would you like today’s forecast or hourly details?"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":97,"input_tokens_details":{"cached_tokens":0},"output_tokens":288,"output_tokens_details":{"reasoning_tokens":256},"total_tokens":385},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_06494ddbfa4b09cc0169b319477e2c8191a3c7d50a6412241c","object":"response","created_at":1773345095,"status":"completed","background":false,"completed_at":1773345100,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[{"id":"rs_06494ddbfa4b09cc0169b3194822e48191acc98a982fdf7970","type":"reasoning","summary":[]},{"id":"msg_06494ddbfa4b09cc0169b3194bc4608191a6d41a96e797951d","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"It’s about 40°C (104°F) in Florence, Italy right now. Want the forecast or tips for staying cool in the heat?"}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":94,"input_tokens_details":{"cached_tokens":0},"output_tokens":230,"output_tokens_details":{"reasoning_tokens":192},"total_tokens":324},"user":null,"metadata":{}},"sequence_number":38} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 316.59475ms + duration: 1.109639291s diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-o4-mini/simple.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-o4-mini/simple.yaml index 0fa6e17ea7462b88e989a99dce35d41d2e043afa..3fe8faf61cb913837df550776f59a999b84e8bf5 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-o4-mini/simple.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-o4-mini/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_05edda4810c41de00168f23812e34481909c921eeab19085a0", + "id": "resp_0577d63a991eed700169b31961c10481928212a8fddee831e8", "object": "response", - "created_at": 1760704531, + "created_at": 1773345121, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345124, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -42,12 +44,12 @@ interactions: "model": "o4-mini-2025-04-16", "output": [ { - "id": "rs_05edda4810c41de00168f2381383e08190b96c0313059265a9", + "id": "rs_0577d63a991eed700169b319627ff88192a1f65d0284fde2da", "type": "reasoning", "summary": [] }, { - "id": "msg_05edda4810c41de00168f23814db48819083a54f56411e35a5", + "id": "msg_0577d63a991eed700169b31963cb688192bb2174abf46137e4", "type": "message", "status": "completed", "content": [ @@ -62,8 +64,10 @@ interactions: } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "medium", "summary": null @@ -88,11 +92,11 @@ interactions: "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 136, + "output_tokens": 111, "output_tokens_details": { - "reasoning_tokens": 128 + "reasoning_tokens": 64 }, - "total_tokens": 155 + "total_tokens": 130 }, "user": null, "metadata": {} @@ -102,4 +106,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 2.327569333s + duration: 2.5590765s diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-o4-mini/simple_streaming.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-o4-mini/simple_streaming.yaml index e20550d6c587b1266cf80b11c54c1a321a73fdad..511f935e43c2545df43c922f27b6acc0bfd4eff6 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-o4-mini/simple_streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-o4-mini/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,44 +25,44 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0374dd39c9ea81bb0168f2381531e88192bcc27c60d5000651","object":"response","created_at":1760704533,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_0716fcc68f97360c0169b319643d188193b0f58979a1a91c62","object":"response","created_at":1773345124,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0374dd39c9ea81bb0168f2381531e88192bcc27c60d5000651","object":"response","created_at":1760704533,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_0716fcc68f97360c0169b319643d188193b0f58979a1a91c62","object":"response","created_at":1773345124,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_0374dd39c9ea81bb0168f23815fe108192a9693e4138d05838","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.added","item":{"id":"rs_0716fcc68f97360c0169b31965a8f48193ae09b58c7119d3a1","type":"reasoning","summary":[]},"output_index":0,"sequence_number":2} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":3,"output_index":0,"item":{"id":"rs_0374dd39c9ea81bb0168f23815fe108192a9693e4138d05838","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.done","item":{"id":"rs_0716fcc68f97360c0169b31965a8f48193ae09b58c7119d3a1","type":"reasoning","summary":[]},"output_index":0,"sequence_number":3} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":4,"output_index":1,"item":{"id":"msg_0374dd39c9ea81bb0168f23816fc108192bbffb179beace674","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_0716fcc68f97360c0169b3196696a88193aaf9e2c1384f72f1","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":1,"sequence_number":4} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":5,"item_id":"msg_0374dd39c9ea81bb0168f23816fc108192bbffb179beace674","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_0716fcc68f97360c0169b3196696a88193aaf9e2c1384f72f1","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_0374dd39c9ea81bb0168f23816fc108192bbffb179beace674","output_index":1,"content_index":0,"delta":"Olá","logprobs":[],"obfuscation":"XyHUJi8uWmgQ3"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Oi","item_id":"msg_0716fcc68f97360c0169b3196696a88193aaf9e2c1384f72f1","logprobs":[],"obfuscation":"lhLo9IWWLTqOw8","output_index":1,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_0374dd39c9ea81bb0168f23816fc108192bbffb179beace674","output_index":1,"content_index":0,"delta":"!","logprobs":[],"obfuscation":"CKZwM0j52RoATdL"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"!","item_id":"msg_0716fcc68f97360c0169b3196696a88193aaf9e2c1384f72f1","logprobs":[],"obfuscation":"0RMKcpKiAHz9sis","output_index":1,"sequence_number":7} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":8,"item_id":"msg_0374dd39c9ea81bb0168f23816fc108192bbffb179beace674","output_index":1,"content_index":0,"text":"Olá!","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_0716fcc68f97360c0169b3196696a88193aaf9e2c1384f72f1","logprobs":[],"output_index":1,"sequence_number":8,"text":"Oi!"} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":9,"item_id":"msg_0374dd39c9ea81bb0168f23816fc108192bbffb179beace674","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_0716fcc68f97360c0169b3196696a88193aaf9e2c1384f72f1","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Oi!"},"sequence_number":9} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":10,"output_index":1,"item":{"id":"msg_0374dd39c9ea81bb0168f23816fc108192bbffb179beace674","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_0716fcc68f97360c0169b3196696a88193aaf9e2c1384f72f1","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Oi!"}],"role":"assistant"},"output_index":1,"sequence_number":10} event: response.completed - data: {"type":"response.completed","sequence_number":11,"response":{"id":"resp_0374dd39c9ea81bb0168f2381531e88192bcc27c60d5000651","object":"response","created_at":1760704533,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[{"id":"rs_0374dd39c9ea81bb0168f23815fe108192a9693e4138d05838","type":"reasoning","summary":[]},{"id":"msg_0374dd39c9ea81bb0168f23816fc108192bbffb179beace674","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Olá!"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":19,"input_tokens_details":{"cached_tokens":0},"output_tokens":136,"output_tokens_details":{"reasoning_tokens":128},"total_tokens":155},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_0716fcc68f97360c0169b319643d188193b0f58979a1a91c62","object":"response","created_at":1773345124,"status":"completed","background":false,"completed_at":1773345126,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[{"id":"rs_0716fcc68f97360c0169b31965a8f48193ae09b58c7119d3a1","type":"reasoning","summary":[]},{"id":"msg_0716fcc68f97360c0169b3196696a88193aaf9e2c1384f72f1","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Oi!"}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":19,"input_tokens_details":{"cached_tokens":0},"output_tokens":115,"output_tokens_details":{"reasoning_tokens":64},"total_tokens":134},"user":null,"metadata":{}},"sequence_number":11} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 283.477417ms + duration: 257.678083ms diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-o4-mini/tool.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-o4-mini/tool.yaml index 34708fa7947c0592565e0e1fbe30dbabf909a37a..86df1e7cc4b29c0da5f0158d8d596b7b631b3288 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-o4-mini/tool.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-o4-mini/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_063e69ebba23c6e60168f238176014819580347bfecdcc350e", + "id": "resp_0794220d1334844a0169b31966df7481a18fc500bd6187bc22", "object": "response", - "created_at": 1760704535, + "created_at": 1773345126, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345130, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -42,22 +44,24 @@ interactions: "model": "o4-mini-2025-04-16", "output": [ { - "id": "rs_063e69ebba23c6e60168f2381811ac8195bb719fa83683583a", + "id": "rs_0794220d1334844a0169b31967906c81a18bc636b6a18e2e41", "type": "reasoning", "summary": [] }, { - "id": "fc_063e69ebba23c6e60168f238191b248195a04018e0d0c747bb", + "id": "fc_0794220d1334844a0169b3196a066481a19ffe57c11e74273a", "type": "function_call", "status": "completed", "arguments": "{\"location\":\"Florence, Italy\"}", - "call_id": "call_3gTKulKFbPDpkRO7k5I0ffH2", + "call_id": "call_zS1DVzqYRCYZ6Ug86teTMYiq", "name": "weather" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "medium", "summary": null @@ -101,11 +105,11 @@ interactions: "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 150, + "output_tokens": 267, "output_tokens_details": { - "reasoning_tokens": 128 + "reasoning_tokens": 192 }, - "total_tokens": 210 + "total_tokens": 327 }, "user": null, "metadata": {} @@ -115,7 +119,7 @@ interactions: - application/json status: 200 OK code: 200 - duration: 2.194950333s + duration: 3.570247709s - id: 1 request: proto: HTTP/1.1 @@ -123,14 +127,14 @@ interactions: proto_minor: 1 content_length: 723 host: "" - body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_3gTKulKFbPDpkRO7k5I0ffH2","name":"weather","type":"function_call"},{"call_id":"call_3gTKulKFbPDpkRO7k5I0ffH2","output":"40 C","type":"function_call_output"}],"model":"o4-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}' + body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_zS1DVzqYRCYZ6Ug86teTMYiq","name":"weather","type":"function_call"},{"call_id":"call_zS1DVzqYRCYZ6Ug86teTMYiq","output":"40 C","type":"function_call_output"}],"model":"o4-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -141,15 +145,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_0bed20b0e88328550168f238198a5c81a0947a649d11fb2237", + "id": "resp_0d60a405fb29f78a0169b3196a732c81958630d18af0ec04d6", "object": "response", - "created_at": 1760704537, + "created_at": 1773345130, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345131, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -157,7 +163,7 @@ interactions: "model": "o4-mini-2025-04-16", "output": [ { - "id": "msg_0bed20b0e88328550168f23819fad081a090a3ce83d605449e", + "id": "msg_0d60a405fb29f78a0169b3196b31ac8195b1efa41424289039", "type": "message", "status": "completed", "content": [ @@ -165,15 +171,17 @@ interactions: "type": "output_text", "annotations": [], "logprobs": [], - "text": "The current temperature in Florence, Italy is 40\u00b0C. It\u2019s quite hot! Make sure to stay hydrated, wear light clothing, and seek shade or air-conditioned places when possible. If you plan to be outdoors, consider going early in the morning or later in the evening to avoid peak heat." + "text": "The current temperature in Florence, Italy is 40\u00b0C." } ], "role": "assistant" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "medium", "summary": null @@ -217,11 +225,11 @@ interactions: "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 64, + "output_tokens": 16, "output_tokens_details": { "reasoning_tokens": 0 }, - "total_tokens": 155 + "total_tokens": 107 }, "user": null, "metadata": {} @@ -231,4 +239,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 1.272683542s + duration: 1.310034417s diff --git a/providertests/testdata/TestOpenAIResponsesCommon/openai-o4-mini/tool_streaming.yaml b/providertests/testdata/TestOpenAIResponsesCommon/openai-o4-mini/tool_streaming.yaml index 92d95d25a84ea629edba89304e94746ed2e9412e..fc85abad7d456ef68ad2747f9a4ebd832962fc9e 100644 --- a/providertests/testdata/TestOpenAIResponsesCommon/openai-o4-mini/tool_streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesCommon/openai-o4-mini/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,59 +25,59 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0fff4a7c1f563e500168f2381ad21c819e8d405acd7b5d620a","object":"response","created_at":1760704538,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_0b2d9e15e30cc24c0169b3196c0d788190a0b50cdad4bf9ac2","object":"response","created_at":1773345132,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0fff4a7c1f563e500168f2381ad21c819e8d405acd7b5d620a","object":"response","created_at":1760704538,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_0b2d9e15e30cc24c0169b3196c0d788190a0b50cdad4bf9ac2","object":"response","created_at":1773345132,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_0fff4a7c1f563e500168f2381b32b0819ead0ce19c5404dec1","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.added","item":{"id":"rs_0b2d9e15e30cc24c0169b3196ce5e8819083269391f141b5d6","type":"reasoning","summary":[]},"output_index":0,"sequence_number":2} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":3,"output_index":0,"item":{"id":"rs_0fff4a7c1f563e500168f2381b32b0819ead0ce19c5404dec1","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.done","item":{"id":"rs_0b2d9e15e30cc24c0169b3196ce5e8819083269391f141b5d6","type":"reasoning","summary":[]},"output_index":0,"sequence_number":3} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":4,"output_index":1,"item":{"id":"fc_0fff4a7c1f563e500168f2381c9e38819e9f1631fafe9b714d","type":"function_call","status":"in_progress","arguments":"","call_id":"call_UszlYsP9zWWt4KA9WuQwyxdm","name":"weather"}} + data: {"type":"response.output_item.added","item":{"id":"fc_0b2d9e15e30cc24c0169b3196db9c481908c9cb0991b0c06cc","type":"function_call","status":"in_progress","arguments":"","call_id":"call_0R0YWAhuIuRZsWqXR2GIwXaP","name":"weather"},"output_index":1,"sequence_number":4} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":5,"item_id":"fc_0fff4a7c1f563e500168f2381c9e38819e9f1631fafe9b714d","output_index":1,"delta":"{\"","obfuscation":"0VOTJGynsRMloj"} + data: {"type":"response.function_call_arguments.delta","delta":"{\"","item_id":"fc_0b2d9e15e30cc24c0169b3196db9c481908c9cb0991b0c06cc","obfuscation":"V2KWvGUmIo8E5h","output_index":1,"sequence_number":5} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":6,"item_id":"fc_0fff4a7c1f563e500168f2381c9e38819e9f1631fafe9b714d","output_index":1,"delta":"location","obfuscation":"43dCYsDX"} + data: {"type":"response.function_call_arguments.delta","delta":"location","item_id":"fc_0b2d9e15e30cc24c0169b3196db9c481908c9cb0991b0c06cc","obfuscation":"zWbPkSqT","output_index":1,"sequence_number":6} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":7,"item_id":"fc_0fff4a7c1f563e500168f2381c9e38819e9f1631fafe9b714d","output_index":1,"delta":"\":\"","obfuscation":"rc3sKD04Npkkf"} + data: {"type":"response.function_call_arguments.delta","delta":"\":\"","item_id":"fc_0b2d9e15e30cc24c0169b3196db9c481908c9cb0991b0c06cc","obfuscation":"4Z37pG0NZyVBv","output_index":1,"sequence_number":7} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":8,"item_id":"fc_0fff4a7c1f563e500168f2381c9e38819e9f1631fafe9b714d","output_index":1,"delta":"Flor","obfuscation":"s3bnH4WQP4Cb"} + data: {"type":"response.function_call_arguments.delta","delta":"Flor","item_id":"fc_0b2d9e15e30cc24c0169b3196db9c481908c9cb0991b0c06cc","obfuscation":"2iYhF63IMlA2","output_index":1,"sequence_number":8} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":9,"item_id":"fc_0fff4a7c1f563e500168f2381c9e38819e9f1631fafe9b714d","output_index":1,"delta":"ence","obfuscation":"y9JNPlQMT6YX"} + data: {"type":"response.function_call_arguments.delta","delta":"ence","item_id":"fc_0b2d9e15e30cc24c0169b3196db9c481908c9cb0991b0c06cc","obfuscation":"GWnVyiaBf8O0","output_index":1,"sequence_number":9} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":10,"item_id":"fc_0fff4a7c1f563e500168f2381c9e38819e9f1631fafe9b714d","output_index":1,"delta":",","obfuscation":"w8Zt7ULkOyHEuSK"} + data: {"type":"response.function_call_arguments.delta","delta":",","item_id":"fc_0b2d9e15e30cc24c0169b3196db9c481908c9cb0991b0c06cc","obfuscation":"JP3wiFV6SRekIws","output_index":1,"sequence_number":10} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":11,"item_id":"fc_0fff4a7c1f563e500168f2381c9e38819e9f1631fafe9b714d","output_index":1,"delta":" Italy","obfuscation":"6GaIjNSMTu"} + data: {"type":"response.function_call_arguments.delta","delta":" Italy","item_id":"fc_0b2d9e15e30cc24c0169b3196db9c481908c9cb0991b0c06cc","obfuscation":"qMpNcuQFEd","output_index":1,"sequence_number":11} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":12,"item_id":"fc_0fff4a7c1f563e500168f2381c9e38819e9f1631fafe9b714d","output_index":1,"delta":"\"}","obfuscation":"4eavzEAMPbOXlx"} + data: {"type":"response.function_call_arguments.delta","delta":"\"}","item_id":"fc_0b2d9e15e30cc24c0169b3196db9c481908c9cb0991b0c06cc","obfuscation":"83BOsSAGLTiNQd","output_index":1,"sequence_number":12} event: response.function_call_arguments.done - data: {"type":"response.function_call_arguments.done","sequence_number":13,"item_id":"fc_0fff4a7c1f563e500168f2381c9e38819e9f1631fafe9b714d","output_index":1,"arguments":"{\"location\":\"Florence, Italy\"}"} + data: {"type":"response.function_call_arguments.done","arguments":"{\"location\":\"Florence, Italy\"}","item_id":"fc_0b2d9e15e30cc24c0169b3196db9c481908c9cb0991b0c06cc","output_index":1,"sequence_number":13} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":14,"output_index":1,"item":{"id":"fc_0fff4a7c1f563e500168f2381c9e38819e9f1631fafe9b714d","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_UszlYsP9zWWt4KA9WuQwyxdm","name":"weather"}} + data: {"type":"response.output_item.done","item":{"id":"fc_0b2d9e15e30cc24c0169b3196db9c481908c9cb0991b0c06cc","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_0R0YWAhuIuRZsWqXR2GIwXaP","name":"weather"},"output_index":1,"sequence_number":14} event: response.completed - data: {"type":"response.completed","sequence_number":15,"response":{"id":"resp_0fff4a7c1f563e500168f2381ad21c819e8d405acd7b5d620a","object":"response","created_at":1760704538,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[{"id":"rs_0fff4a7c1f563e500168f2381b32b0819ead0ce19c5404dec1","type":"reasoning","summary":[]},{"id":"fc_0fff4a7c1f563e500168f2381c9e38819e9f1631fafe9b714d","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_UszlYsP9zWWt4KA9WuQwyxdm","name":"weather"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":60,"input_tokens_details":{"cached_tokens":0},"output_tokens":150,"output_tokens_details":{"reasoning_tokens":128},"total_tokens":210},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_0b2d9e15e30cc24c0169b3196c0d788190a0b50cdad4bf9ac2","object":"response","created_at":1773345132,"status":"completed","background":false,"completed_at":1773345133,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[{"id":"rs_0b2d9e15e30cc24c0169b3196ce5e8819083269391f141b5d6","type":"reasoning","summary":[]},{"id":"fc_0b2d9e15e30cc24c0169b3196db9c481908c9cb0991b0c06cc","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_0R0YWAhuIuRZsWqXR2GIwXaP","name":"weather"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":60,"input_tokens_details":{"cached_tokens":0},"output_tokens":125,"output_tokens_details":{"reasoning_tokens":64},"total_tokens":185},"user":null,"metadata":{}},"sequence_number":15} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 241.611625ms + duration: 619.772167ms - id: 1 request: proto: HTTP/1.1 @@ -85,14 +85,14 @@ interactions: proto_minor: 1 content_length: 737 host: "" - body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_UszlYsP9zWWt4KA9WuQwyxdm","name":"weather","type":"function_call"},{"call_id":"call_UszlYsP9zWWt4KA9WuQwyxdm","output":"40 C","type":"function_call_output"}],"model":"o4-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}' + body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_0R0YWAhuIuRZsWqXR2GIwXaP","name":"weather","type":"function_call"},{"call_id":"call_0R0YWAhuIuRZsWqXR2GIwXaP","output":"40 C","type":"function_call_output"}],"model":"o4-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -102,68 +102,140 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0dcc08c733ff71550168f2381d2a1081a2846a305f27bbc863","object":"response","created_at":1760704541,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_08de782ba11354070169b3196e16dc81a1abba20d8799c4c16","object":"response","created_at":1773345134,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0dcc08c733ff71550168f2381d2a1081a2846a305f27bbc863","object":"response","created_at":1760704541,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_08de782ba11354070169b3196e16dc81a1abba20d8799c4c16","object":"response","created_at":1773345134,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"msg_0dcc08c733ff71550168f2381d703881a280ee31f3e6de9bdc","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":0,"sequence_number":2} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":3,"item_id":"msg_0dcc08c733ff71550168f2381d703881a280ee31f3e6de9bdc","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":3} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":4,"item_id":"msg_0dcc08c733ff71550168f2381d703881a280ee31f3e6de9bdc","output_index":0,"content_index":0,"delta":"The","logprobs":[],"obfuscation":"eyjSsgALEwhaq"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"The","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"JU8EPBlHH8GB5","output_index":0,"sequence_number":4} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":5,"item_id":"msg_0dcc08c733ff71550168f2381d703881a280ee31f3e6de9bdc","output_index":0,"content_index":0,"delta":" current","logprobs":[],"obfuscation":"8lINdioG"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" current","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"ZlV7S9Ms","output_index":0,"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_0dcc08c733ff71550168f2381d703881a280ee31f3e6de9bdc","output_index":0,"content_index":0,"delta":" temperature","logprobs":[],"obfuscation":"iz5j"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" temperature","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"nj4Y","output_index":0,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_0dcc08c733ff71550168f2381d703881a280ee31f3e6de9bdc","output_index":0,"content_index":0,"delta":" in","logprobs":[],"obfuscation":"tJkN0FEyXaK8s"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" in","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"ZThcImK6I72f1","output_index":0,"sequence_number":7} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_0dcc08c733ff71550168f2381d703881a280ee31f3e6de9bdc","output_index":0,"content_index":0,"delta":" Florence","logprobs":[],"obfuscation":"n0EpdRL"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Florence","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"EflhRMi","output_index":0,"sequence_number":8} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_0dcc08c733ff71550168f2381d703881a280ee31f3e6de9bdc","output_index":0,"content_index":0,"delta":",","logprobs":[],"obfuscation":"xAWfObum6kfDhuQ"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"RKZg2aOiCgrTbLM","output_index":0,"sequence_number":9} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_0dcc08c733ff71550168f2381d703881a280ee31f3e6de9bdc","output_index":0,"content_index":0,"delta":" Italy","logprobs":[],"obfuscation":"SJOq4btOnE"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Italy","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"kWzxT4Xqql","output_index":0,"sequence_number":10} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_0dcc08c733ff71550168f2381d703881a280ee31f3e6de9bdc","output_index":0,"content_index":0,"delta":" is","logprobs":[],"obfuscation":"8HoJkvOcK3Jsc"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" is","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"FFVSuGBvlfTzu","output_index":0,"sequence_number":11} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":12,"item_id":"msg_0dcc08c733ff71550168f2381d703881a280ee31f3e6de9bdc","output_index":0,"content_index":0,"delta":" ","logprobs":[],"obfuscation":"51n6LMmqmV5C73I"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" about","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"Z5qvetse5o","output_index":0,"sequence_number":12} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":13,"item_id":"msg_0dcc08c733ff71550168f2381d703881a280ee31f3e6de9bdc","output_index":0,"content_index":0,"delta":"40","logprobs":[],"obfuscation":"MPplkcPECUV7Pv"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" ","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"350hRrlhypxWN9P","output_index":0,"sequence_number":13} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":14,"item_id":"msg_0dcc08c733ff71550168f2381d703881a280ee31f3e6de9bdc","output_index":0,"content_index":0,"delta":"°C","logprobs":[],"obfuscation":"MiSC5pzAiiBwR4"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"40","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"wpFsSDsIvoTyYu","output_index":0,"sequence_number":14} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":15,"item_id":"msg_0dcc08c733ff71550168f2381d703881a280ee31f3e6de9bdc","output_index":0,"content_index":0,"delta":".","logprobs":[],"obfuscation":"H2yQ4qGmNmJhbhZ"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"°C","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"OqUkVjr58LVk07","output_index":0,"sequence_number":15} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":".","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"bxwfCVyrqeGCyPH","output_index":0,"sequence_number":16} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" It","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"b0HO4B4LBNdq4","output_index":0,"sequence_number":17} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":"’s","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"32fhW5tCmAFj2G","output_index":0,"sequence_number":18} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" quite","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"FaoYzC3Um5","output_index":0,"sequence_number":19} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" hot","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"KOi5UpyiW7Js","output_index":0,"sequence_number":20} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":"—","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"EeBS0vS74e8v8Xy","output_index":0,"sequence_number":21} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":"remember","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"2WFgm8bQ","output_index":0,"sequence_number":22} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" to","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"YZiWBalVKO9Xz","output_index":0,"sequence_number":23} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" stay","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"xJkgiZLtFuQ","output_index":0,"sequence_number":24} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" hydrated","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"uYWGxjQ","output_index":0,"sequence_number":25} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"1ADd724q4QNKiJ5","output_index":0,"sequence_number":26} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" wear","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"SkpZ0E2V3oD","output_index":0,"sequence_number":27} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" light","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"2byKScOTnN","output_index":0,"sequence_number":28} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" clothing","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"1adIwOW","output_index":0,"sequence_number":29} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"Haf13NfGN9hvawa","output_index":0,"sequence_number":30} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" and","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"884RG6TssNku","output_index":0,"sequence_number":31} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" avoid","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"XqrdmUrTuZ","output_index":0,"sequence_number":32} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" being","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"K3TiQTQc8t","output_index":0,"sequence_number":33} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" outdoors","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"PME5mq9","output_index":0,"sequence_number":34} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" during","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"gabGLyTtD","output_index":0,"sequence_number":35} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" peak","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"I8E5S1EzcRG","output_index":0,"sequence_number":36} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" afternoon","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"3P4dqY","output_index":0,"sequence_number":37} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" heat","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"ZOTg5DOuohf","output_index":0,"sequence_number":38} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":".","item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"obfuscation":"bVaiQ8BOr9D0Oq5","output_index":0,"sequence_number":39} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":16,"item_id":"msg_0dcc08c733ff71550168f2381d703881a280ee31f3e6de9bdc","output_index":0,"content_index":0,"text":"The current temperature in Florence, Italy is 40°C.","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","logprobs":[],"output_index":0,"sequence_number":40,"text":"The current temperature in Florence, Italy is about 40°C. It’s quite hot—remember to stay hydrated, wear light clothing, and avoid being outdoors during peak afternoon heat."} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":17,"item_id":"msg_0dcc08c733ff71550168f2381d703881a280ee31f3e6de9bdc","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C."}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is about 40°C. It’s quite hot—remember to stay hydrated, wear light clothing, and avoid being outdoors during peak afternoon heat."},"sequence_number":41} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":18,"output_index":0,"item":{"id":"msg_0dcc08c733ff71550168f2381d703881a280ee31f3e6de9bdc","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C."}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is about 40°C. It’s quite hot—remember to stay hydrated, wear light clothing, and avoid being outdoors during peak afternoon heat."}],"role":"assistant"},"output_index":0,"sequence_number":42} event: response.completed - data: {"type":"response.completed","sequence_number":19,"response":{"id":"resp_0dcc08c733ff71550168f2381d2a1081a2846a305f27bbc863","object":"response","created_at":1760704541,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[{"id":"msg_0dcc08c733ff71550168f2381d703881a280ee31f3e6de9bdc","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C."}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":91,"input_tokens_details":{"cached_tokens":0},"output_tokens":16,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":107},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_08de782ba11354070169b3196e16dc81a1abba20d8799c4c16","object":"response","created_at":1773345134,"status":"completed","background":false,"completed_at":1773345134,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[{"id":"msg_08de782ba11354070169b3196e60b081a19273f52c2b743780","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is about 40°C. It’s quite hot—remember to stay hydrated, wear light clothing, and avoid being outdoors during peak afternoon heat."}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":91,"input_tokens_details":{"cached_tokens":0},"output_tokens":40,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":131},"user":null,"metadata":{}},"sequence_number":43} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 235.374ms + duration: 225.696625ms diff --git a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o-mini/complex_object.yaml b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o-mini/complex_object.yaml index a6c1a5c23c957a82413e0b6804b127036e025059..dd80b1a67035971aa51334a6f0d3bf48904b94b7 100644 --- a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o-mini/complex_object.yaml +++ b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o-mini/complex_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_00aee193a62b03b301690fb5e67a8481a0890292ac13193180", + "id": "resp_0287d47a5a02d4900169b3199640648191b370f92c6d81f71d", "object": "response", - "created_at": 1762637286, + "created_at": 1773345174, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345175, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -42,7 +44,7 @@ interactions: "model": "gpt-4o-mini-2024-07-18", "output": [ { - "id": "msg_00aee193a62b03b301690fb5e6bf6881a0ab198f7831a11cf0", + "id": "msg_0287d47a5a02d4900169b31996d0148191b3c3269d1a10629d", "type": "message", "status": "completed", "content": [ @@ -50,13 +52,14 @@ interactions: "type": "output_text", "annotations": [], "logprobs": [], - "text": "{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}" + "text": "{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}" } ], "role": "assistant" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, "prompt_cache_retention": null, @@ -132,11 +135,11 @@ interactions: "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 41, + "output_tokens": 39, "output_tokens_details": { "reasoning_tokens": 0 }, - "total_tokens": 181 + "total_tokens": 179 }, "user": null, "metadata": {} @@ -146,4 +149,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 1.153408417s + duration: 1.227142708s diff --git a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o-mini/complex_object_streaming.yaml b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o-mini/complex_object_streaming.yaml index 74d720ef491f32dab6ee4cca86ba392724bc08c6..c031345581c16bce47f5eb4659a8e7ec63f12130 100644 --- a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o-mini/complex_object_streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o-mini/complex_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,152 +25,161 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0b395c22c64bd0de01690fb5e7a238819ca85a64e9b6ac32f9","object":"response","created_at":1762637287,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_0d3c4fb131e381120169b319977e18819fae44479eb74e67f5","object":"response","created_at":1773345175,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0b395c22c64bd0de01690fb5e7a238819ca85a64e9b6ac32f9","object":"response","created_at":1762637287,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_0d3c4fb131e381120169b319977e18819fae44479eb74e67f5","object":"response","created_at":1773345175,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":0,"sequence_number":2} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":3,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":3} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":4,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"{\"","logprobs":[],"obfuscation":"w0uRy397P1tlme"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"{\"","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"NMZpE9PehYaBHw","output_index":0,"sequence_number":4} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":5,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"author","logprobs":[],"obfuscation":"UZSUIL51HD"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"author","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"Fb7np2UQ3X","output_index":0,"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"\":{\"","logprobs":[],"obfuscation":"U2IqPfEyuCW6"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":{\"","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"BT1wY1MBqQeS","output_index":0,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"name","logprobs":[],"obfuscation":"6yodA173gW37"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"name","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"5eusDrlgNBWB","output_index":0,"sequence_number":7} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"jS3ejVQkBmYE3"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"K4Y0zwXaiHDLE","output_index":0,"sequence_number":8} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"J","logprobs":[],"obfuscation":"iroZ6WuFyfK1VZx"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"J","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"Utb23zgzuMwseAo","output_index":0,"sequence_number":9} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":".R","logprobs":[],"obfuscation":"KInGWlQdImRYQg"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".R","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"RkmvC46zBoBSU1","output_index":0,"sequence_number":10} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":".R","logprobs":[],"obfuscation":"iqZyszfl4LmbgS"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".R","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"mYj2isrFabRDua","output_index":0,"sequence_number":11} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":12,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":".","logprobs":[],"obfuscation":"IbIFqu9ECqk6OJi"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"zQhgJVYbcmsX5xg","output_index":0,"sequence_number":12} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":13,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":" Tolkien","logprobs":[],"obfuscation":"ayMpSFlJ"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Tolkien","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"8NiZje1Z","output_index":0,"sequence_number":13} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":14,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"\",\"","logprobs":[],"obfuscation":"73YsvDPY3GKaG"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\",\"","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"3a7G35jNwcY28","output_index":0,"sequence_number":14} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":15,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"national","logprobs":[],"obfuscation":"QlFktnnV"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"national","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"lSAor4mi","output_index":0,"sequence_number":15} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":16,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"ity","logprobs":[],"obfuscation":"v3rMNOTO15LY2"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"ity","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"jdobeACA3sGYD","output_index":0,"sequence_number":16} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":17,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"vIbvcS93WrAED"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"dKqedBBoSfZIY","output_index":0,"sequence_number":17} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":18,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"British","logprobs":[],"obfuscation":"vUvh0fBq3"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"British","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"aeYgUs0jX","output_index":0,"sequence_number":18} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":19,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"\"}","logprobs":[],"obfuscation":"ot4OdWrjqe1tui"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"}","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"H5CM3kinnWx9Qs","output_index":0,"sequence_number":19} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":20,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":",\"","logprobs":[],"obfuscation":"vlKgFxiUSzmVij"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",\"","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"DL9GnofApvBjjm","output_index":0,"sequence_number":20} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":21,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"genres","logprobs":[],"obfuscation":"XUqVQBjShJ"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"genres","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"tvQe7YTskf","output_index":0,"sequence_number":21} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":22,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"\":[\"","logprobs":[],"obfuscation":"AzfakgEtflt4"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":[\"","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"MOls2XG5jo6x","output_index":0,"sequence_number":22} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":23,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"Fantasy","logprobs":[],"obfuscation":"IKhUZs45d"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Fantasy","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"e1v1QJYYn","output_index":0,"sequence_number":23} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":24,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"\",\"","logprobs":[],"obfuscation":"PWSU5F7JRKRYT"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\",\"","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"n5UeF64fM1a3u","output_index":0,"sequence_number":24} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":25,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"Adventure","logprobs":[],"obfuscation":"WrMADZ8"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Adventure","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"kvemJni","output_index":0,"sequence_number":25} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":26,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"\",\"","logprobs":[],"obfuscation":"1NxVYWia8J4H7"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\",\"","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"RFtRKchAU1cT1","output_index":0,"sequence_number":26} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":27,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"Epic","logprobs":[],"obfuscation":"mD8StL2RnA6u"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Epic","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"OFyKenfQx2kb","output_index":0,"sequence_number":27} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":28,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"\"],","logprobs":[],"obfuscation":"kQQLUU3Sy011a"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\",\"","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"fFyKOy9yrnKrP","output_index":0,"sequence_number":28} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":29,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"\"","logprobs":[],"obfuscation":"oQydHGyZqlEEgJj"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"High","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"q4GP26qo7Vxr","output_index":0,"sequence_number":29} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":30,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"published","logprobs":[],"obfuscation":"EC59oD9"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Fantasy","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"kQVEtoLA","output_index":0,"sequence_number":30} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":31,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"_year","logprobs":[],"obfuscation":"8MRn2RjtLJ6"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"],","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"YN61B6MAlzzDv","output_index":0,"sequence_number":31} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":32,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"\":","logprobs":[],"obfuscation":"fF4nUJIrWxRwMy"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"p2I6eyVShRGGqwR","output_index":0,"sequence_number":32} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":33,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"195","logprobs":[],"obfuscation":"29LJXcHAZMBkr"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"published","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"3o9uiSo","output_index":0,"sequence_number":33} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":34,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"4","logprobs":[],"obfuscation":"wTk4EbM8GGejI1J"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"_year","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"lDOKeaZkkJm","output_index":0,"sequence_number":34} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":35,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":",\"","logprobs":[],"obfuscation":"FsbpZWLfvqurzA"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"I94KVnGYklXPHh","output_index":0,"sequence_number":35} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":36,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"title","logprobs":[],"obfuscation":"WHXlPFGiuyP"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"195","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"fuMsMfW24lmat","output_index":0,"sequence_number":36} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":37,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"2E0ywqxSMIzML"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"4","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"V2RwvSZ9xd1XLF7","output_index":0,"sequence_number":37} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":38,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"The","logprobs":[],"obfuscation":"3qqlFQsPWsxQq"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",\"","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"PMaDsw52jQviQl","output_index":0,"sequence_number":38} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":39,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":" Lord","logprobs":[],"obfuscation":"J2hT3a8DD3T"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"title","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"NotHe0csZVd","output_index":0,"sequence_number":39} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":40,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":" of","logprobs":[],"obfuscation":"WxRGBxwiWEOrb"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"vya5JC2dNt1U7","output_index":0,"sequence_number":40} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":41,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":" the","logprobs":[],"obfuscation":"flD8BqwGg6lR"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"The","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"gMmNRDhddsZ2j","output_index":0,"sequence_number":41} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":42,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":" Rings","logprobs":[],"obfuscation":"mHXsGxleFl"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Lord","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"KzT2GpvT85C","output_index":0,"sequence_number":42} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":43,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"delta":"\"}","logprobs":[],"obfuscation":"kJzjigwFnkmYsp"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" of","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"tT5EYrqycPX5A","output_index":0,"sequence_number":43} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" the","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"uFBbm0uHiT42","output_index":0,"sequence_number":44} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" Rings","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"zwU6b5H8Jy","output_index":0,"sequence_number":45} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"}","item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"obfuscation":"gHieTE2Qdai7NP","output_index":0,"sequence_number":46} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":44,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","logprobs":[],"output_index":0,"sequence_number":47,"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\",\"High Fantasy\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":45,"item_id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\",\"High Fantasy\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"},"sequence_number":48} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":46,"output_index":0,"item":{"id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\",\"High Fantasy\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}],"role":"assistant"},"output_index":0,"sequence_number":49} event: response.completed - data: {"type":"response.completed","sequence_number":47,"response":{"id":"resp_0b395c22c64bd0de01690fb5e7a238819ca85a64e9b6ac32f9","object":"response","created_at":1762637287,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[{"id":"msg_0b395c22c64bd0de01690fb5e7d34c819c84dc831a681cfeaa","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":140,"input_tokens_details":{"cached_tokens":0},"output_tokens":41,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":181},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_0d3c4fb131e381120169b319977e18819fae44479eb74e67f5","object":"response","created_at":1773345175,"status":"completed","background":false,"completed_at":1773345176,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[{"id":"msg_0d3c4fb131e381120169b31997eb28819f80be29ef2f49979e","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\",\"High Fantasy\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":140,"input_tokens_details":{"cached_tokens":0},"output_tokens":44,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":184},"user":null,"metadata":{}},"sequence_number":50} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 189.690709ms + duration: 222.907667ms diff --git a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o-mini/simple_object.yaml b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o-mini/simple_object.yaml index 9e1cca0af6cc582d2c38cc3c70614e0955c5081f..e5b25da6b10c185a6d0be7eb5d48d355880bb61e 100644 --- a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o-mini/simple_object.yaml +++ b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o-mini/simple_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_0bbc50a7c5ff86f001690fb5e419a8819087b97bd3cbc4c406", + "id": "resp_0e4307a7d5c3a0f50169b319944394819c80c2da0f3391b34c", "object": "response", - "created_at": 1762637284, + "created_at": 1773345172, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345173, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -42,7 +44,7 @@ interactions: "model": "gpt-4o-mini-2024-07-18", "output": [ { - "id": "msg_0bbc50a7c5ff86f001690fb5e4fabc8190a9749a3e0c928bce", + "id": "msg_0e4307a7d5c3a0f50169b3199537b0819c87440bdccc49790c", "type": "message", "status": "completed", "content": [ @@ -57,6 +59,7 @@ interactions: } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, "prompt_cache_retention": null, @@ -124,4 +127,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 1.465307584s + duration: 1.315079167s diff --git a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o-mini/simple_object_streaming.yaml b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o-mini/simple_object_streaming.yaml index 97758429c6e008cf1abe4cc341ac93efa2047100..1d7a32bdc6958de8092986b26b0cd340b80e6f4f 100644 --- a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o-mini/simple_object_streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o-mini/simple_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,71 +25,71 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_02c04886274e996201690fb5e586cc819e964a8d2266867d18","object":"response","created_at":1762637285,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_02cedb3cbfb73c5a0169b3199595d4819c81dd2bd6fc524c79","object":"response","created_at":1773345173,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_02c04886274e996201690fb5e586cc819e964a8d2266867d18","object":"response","created_at":1762637285,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_02cedb3cbfb73c5a0169b3199595d4819c81dd2bd6fc524c79","object":"response","created_at":1773345173,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"msg_02c04886274e996201690fb5e617b4819eaec84bdb3206fa59","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_02cedb3cbfb73c5a0169b31995e024819cab36604f37d3b332","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":0,"sequence_number":2} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":3,"item_id":"msg_02c04886274e996201690fb5e617b4819eaec84bdb3206fa59","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_02cedb3cbfb73c5a0169b31995e024819cab36604f37d3b332","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":3} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":4,"item_id":"msg_02c04886274e996201690fb5e617b4819eaec84bdb3206fa59","output_index":0,"content_index":0,"delta":"{\"","logprobs":[],"obfuscation":"8Z8tlCzwEPiKxX"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"{\"","item_id":"msg_02cedb3cbfb73c5a0169b31995e024819cab36604f37d3b332","logprobs":[],"obfuscation":"tmnORZ7yg9rYcX","output_index":0,"sequence_number":4} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":5,"item_id":"msg_02c04886274e996201690fb5e617b4819eaec84bdb3206fa59","output_index":0,"content_index":0,"delta":"age","logprobs":[],"obfuscation":"ntrGNnjEMQo9S"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"age","item_id":"msg_02cedb3cbfb73c5a0169b31995e024819cab36604f37d3b332","logprobs":[],"obfuscation":"PyIYOThyhyrZZ","output_index":0,"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_02c04886274e996201690fb5e617b4819eaec84bdb3206fa59","output_index":0,"content_index":0,"delta":"\":","logprobs":[],"obfuscation":"JnvWExEm2crgkL"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":","item_id":"msg_02cedb3cbfb73c5a0169b31995e024819cab36604f37d3b332","logprobs":[],"obfuscation":"a8WXB9qXcPyMRv","output_index":0,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_02c04886274e996201690fb5e617b4819eaec84bdb3206fa59","output_index":0,"content_index":0,"delta":"30","logprobs":[],"obfuscation":"e7D0BYaAV7ZZan"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"30","item_id":"msg_02cedb3cbfb73c5a0169b31995e024819cab36604f37d3b332","logprobs":[],"obfuscation":"LruF557NP7UpxX","output_index":0,"sequence_number":7} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_02c04886274e996201690fb5e617b4819eaec84bdb3206fa59","output_index":0,"content_index":0,"delta":",\"","logprobs":[],"obfuscation":"nKINeWVP6PC4J6"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",\"","item_id":"msg_02cedb3cbfb73c5a0169b31995e024819cab36604f37d3b332","logprobs":[],"obfuscation":"2XPLfWWrs3CJwd","output_index":0,"sequence_number":8} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_02c04886274e996201690fb5e617b4819eaec84bdb3206fa59","output_index":0,"content_index":0,"delta":"city","logprobs":[],"obfuscation":"BSUszpyTPPQM"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"city","item_id":"msg_02cedb3cbfb73c5a0169b31995e024819cab36604f37d3b332","logprobs":[],"obfuscation":"mcOmmuOT16Mb","output_index":0,"sequence_number":9} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_02c04886274e996201690fb5e617b4819eaec84bdb3206fa59","output_index":0,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"e2xJqxLyd6dLg"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_02cedb3cbfb73c5a0169b31995e024819cab36604f37d3b332","logprobs":[],"obfuscation":"75DVkOvDkfFzQ","output_index":0,"sequence_number":10} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_02c04886274e996201690fb5e617b4819eaec84bdb3206fa59","output_index":0,"content_index":0,"delta":"Paris","logprobs":[],"obfuscation":"hFKgDAqf1y5"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Paris","item_id":"msg_02cedb3cbfb73c5a0169b31995e024819cab36604f37d3b332","logprobs":[],"obfuscation":"cZKuOqne1c3","output_index":0,"sequence_number":11} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":12,"item_id":"msg_02c04886274e996201690fb5e617b4819eaec84bdb3206fa59","output_index":0,"content_index":0,"delta":"\",\"","logprobs":[],"obfuscation":"BnhyOi3WfoTgj"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\",\"","item_id":"msg_02cedb3cbfb73c5a0169b31995e024819cab36604f37d3b332","logprobs":[],"obfuscation":"HIYlRXZuUDh8b","output_index":0,"sequence_number":12} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":13,"item_id":"msg_02c04886274e996201690fb5e617b4819eaec84bdb3206fa59","output_index":0,"content_index":0,"delta":"name","logprobs":[],"obfuscation":"Rwn7qYlbLykn"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"name","item_id":"msg_02cedb3cbfb73c5a0169b31995e024819cab36604f37d3b332","logprobs":[],"obfuscation":"e8ssud3aJDta","output_index":0,"sequence_number":13} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":14,"item_id":"msg_02c04886274e996201690fb5e617b4819eaec84bdb3206fa59","output_index":0,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"ejkwCmkYwp6jc"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_02cedb3cbfb73c5a0169b31995e024819cab36604f37d3b332","logprobs":[],"obfuscation":"ugyDTB3iumZEy","output_index":0,"sequence_number":14} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":15,"item_id":"msg_02c04886274e996201690fb5e617b4819eaec84bdb3206fa59","output_index":0,"content_index":0,"delta":"Alice","logprobs":[],"obfuscation":"eTPamAFYtjC"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Alice","item_id":"msg_02cedb3cbfb73c5a0169b31995e024819cab36604f37d3b332","logprobs":[],"obfuscation":"2B2p9KFOET9","output_index":0,"sequence_number":15} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":16,"item_id":"msg_02c04886274e996201690fb5e617b4819eaec84bdb3206fa59","output_index":0,"content_index":0,"delta":"\"}","logprobs":[],"obfuscation":"cRZBPSZqiONzJX"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"}","item_id":"msg_02cedb3cbfb73c5a0169b31995e024819cab36604f37d3b332","logprobs":[],"obfuscation":"o9FY7J66LeRMp2","output_index":0,"sequence_number":16} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":17,"item_id":"msg_02c04886274e996201690fb5e617b4819eaec84bdb3206fa59","output_index":0,"content_index":0,"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_02cedb3cbfb73c5a0169b31995e024819cab36604f37d3b332","logprobs":[],"output_index":0,"sequence_number":17,"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":18,"item_id":"msg_02c04886274e996201690fb5e617b4819eaec84bdb3206fa59","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_02cedb3cbfb73c5a0169b31995e024819cab36604f37d3b332","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"},"sequence_number":18} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":19,"output_index":0,"item":{"id":"msg_02c04886274e996201690fb5e617b4819eaec84bdb3206fa59","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_02cedb3cbfb73c5a0169b31995e024819cab36604f37d3b332","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}],"role":"assistant"},"output_index":0,"sequence_number":19} event: response.completed - data: {"type":"response.completed","sequence_number":20,"response":{"id":"resp_02c04886274e996201690fb5e586cc819e964a8d2266867d18","object":"response","created_at":1762637285,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[{"id":"msg_02c04886274e996201690fb5e617b4819eaec84bdb3206fa59","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":82,"input_tokens_details":{"cached_tokens":0},"output_tokens":14,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":96},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_02cedb3cbfb73c5a0169b3199595d4819c81dd2bd6fc524c79","object":"response","created_at":1773345173,"status":"completed","background":false,"completed_at":1773345174,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-mini-2024-07-18","output":[{"id":"msg_02cedb3cbfb73c5a0169b31995e024819cab36604f37d3b332","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":82,"input_tokens_details":{"cached_tokens":0},"output_tokens":14,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":96},"user":null,"metadata":{}},"sequence_number":20} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 179.409584ms + duration: 226.276583ms diff --git a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o/complex_object.yaml b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o/complex_object.yaml index cc17321746c892f97267b4dcf7ab89c9b6e61c52..f310fdc31e59087e89bf3a0795d0e9f53c0ed198 100644 --- a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o/complex_object.yaml +++ b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o/complex_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_00fee2bcbce77a6b01690fb5e194848191a77c3f9796902417", + "id": "resp_0d5ff11864bd034c0169b3199075308192be4e46833d3f93c0", "object": "response", - "created_at": 1762637281, + "created_at": 1773345168, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345170, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -42,7 +44,7 @@ interactions: "model": "gpt-4o-2024-08-06", "output": [ { - "id": "msg_00fee2bcbce77a6b01690fb5e25dfc8191b275e2c92a87865a", + "id": "msg_0d5ff11864bd034c0169b3199129f88192933e5996f8b66282", "type": "message", "status": "completed", "content": [ @@ -50,13 +52,14 @@ interactions: "type": "output_text", "annotations": [], "logprobs": [], - "text": "{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}" + "text": "{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}" } ], "role": "assistant" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, "prompt_cache_retention": null, @@ -132,11 +135,11 @@ interactions: "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 39, + "output_tokens": 41, "output_tokens_details": { "reasoning_tokens": 0 }, - "total_tokens": 179 + "total_tokens": 181 }, "user": null, "metadata": {} @@ -146,4 +149,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 1.348413375s + duration: 1.823091792s diff --git a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o/complex_object_streaming.yaml b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o/complex_object_streaming.yaml index 5cbb82e322281892a83d97bafd227c0a5cded203..0406f660146f64cb435da47b132c111646aa84fc 100644 --- a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o/complex_object_streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o/complex_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,152 +25,161 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0cd0345c54b0381e01690fb5e2f140819eb8b9fa3f55b4313b","object":"response","created_at":1762637282,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_0db0ab9a592403d20169b3199246a081a29ec565b316f7f747","object":"response","created_at":1773345170,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0cd0345c54b0381e01690fb5e2f140819eb8b9fa3f55b4313b","object":"response","created_at":1762637282,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_0db0ab9a592403d20169b3199246a081a29ec565b316f7f747","object":"response","created_at":1773345170,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":0,"sequence_number":2} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":3,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":3} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":4,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"{\"","logprobs":[],"obfuscation":"rqbg0m6QYeXgew"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"{\"","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"GDWAFGihf5uesQ","output_index":0,"sequence_number":4} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":5,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"author","logprobs":[],"obfuscation":"imJpYwjkk0"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"author","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"nqiysI1iaU","output_index":0,"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"\":{\"","logprobs":[],"obfuscation":"lneI4feOIym9"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":{\"","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"c5VWYutS43wA","output_index":0,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"name","logprobs":[],"obfuscation":"aX9sLDq2ShNV"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"name","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"2dY9ZCM8ZfcC","output_index":0,"sequence_number":7} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"KiEnVxgS9idJH"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"mr2JLsKclx8Bc","output_index":0,"sequence_number":8} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"J","logprobs":[],"obfuscation":"NZgdxXG8Ah2sXsw"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"J","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"jKhOLKyX6jMTo7I","output_index":0,"sequence_number":9} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":".R","logprobs":[],"obfuscation":"HFw9pvQ76Llxwp"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".R","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"BUSfQu0zcyUICF","output_index":0,"sequence_number":10} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":".R","logprobs":[],"obfuscation":"8zX1xDihGzxkHf"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".R","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"qcOixbqxJSdyVf","output_index":0,"sequence_number":11} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":12,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":".","logprobs":[],"obfuscation":"N40FWmzYdfGMc7i"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"jbfiPsOJbdq0W74","output_index":0,"sequence_number":12} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":13,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":" Tolkien","logprobs":[],"obfuscation":"G4r8UC5e"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Tolkien","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"ThiWiU79","output_index":0,"sequence_number":13} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":14,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"\",\"","logprobs":[],"obfuscation":"2F9mZioKQNsdU"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\",\"","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"XUaTUMPDi5YGt","output_index":0,"sequence_number":14} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":15,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"national","logprobs":[],"obfuscation":"TzITeG8Q"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"national","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"HEdatGg6","output_index":0,"sequence_number":15} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":16,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"ity","logprobs":[],"obfuscation":"MSB3tbOfmt5ht"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"ity","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"OcXUSXhxQCY4H","output_index":0,"sequence_number":16} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":17,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"hEEegRwybEaou"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"h7YdizoTI4JlA","output_index":0,"sequence_number":17} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":18,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"British","logprobs":[],"obfuscation":"g52xWMqPz"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"British","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"ZfncrVFX5","output_index":0,"sequence_number":18} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":19,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"\"}","logprobs":[],"obfuscation":"pTei8sG6eaYajt"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"}","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"bklYgVaNcu0iLD","output_index":0,"sequence_number":19} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":20,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":",\"","logprobs":[],"obfuscation":"EVHqJ8sE2pknJ6"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",\"","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"5EJmVMDWcZBFv4","output_index":0,"sequence_number":20} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":21,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"genres","logprobs":[],"obfuscation":"IdiOODGbkg"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"genres","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"BWHkaVxmoj","output_index":0,"sequence_number":21} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":22,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"\":[\"","logprobs":[],"obfuscation":"Lp0dktegOY6a"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":[\"","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"2sDo0oG7cA51","output_index":0,"sequence_number":22} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":23,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"Fantasy","logprobs":[],"obfuscation":"aHGrVouuy"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Fantasy","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"68DZ3xNfb","output_index":0,"sequence_number":23} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":24,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"\",\"","logprobs":[],"obfuscation":"WhmcIASKcGkdi"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\",\"","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"gYQyshwGNSt0d","output_index":0,"sequence_number":24} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":25,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"Adventure","logprobs":[],"obfuscation":"vzUnini"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Adventure","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"4RFDBVE","output_index":0,"sequence_number":25} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":26,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"\",\"","logprobs":[],"obfuscation":"y7pdOOLQxnNQ7"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\",\"","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"ItCY8GDPfYQrz","output_index":0,"sequence_number":26} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":27,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"Epic","logprobs":[],"obfuscation":"u5Qlk4ltcPiM"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Epic","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"jcUGGNLooDog","output_index":0,"sequence_number":27} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":28,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"\"],","logprobs":[],"obfuscation":"fxlKRgBuiXrcS"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\",\"","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"W6VZQN0VuKSxo","output_index":0,"sequence_number":28} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":29,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"\"","logprobs":[],"obfuscation":"NNbHospqb8d07Gv"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"High","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"zKVv92PGZFXW","output_index":0,"sequence_number":29} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":30,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"published","logprobs":[],"obfuscation":"zxP33mg"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Fantasy","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"wnJ99egx","output_index":0,"sequence_number":30} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":31,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"_year","logprobs":[],"obfuscation":"mkUcspqZlnl"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"],","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"WA6UdcwXpsGdN","output_index":0,"sequence_number":31} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":32,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"\":","logprobs":[],"obfuscation":"9fbDJimUlNNP8Y"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"NiriFMw5uODVSkZ","output_index":0,"sequence_number":32} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":33,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"195","logprobs":[],"obfuscation":"EHiBUrbpr2ElG"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"published","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"uSsXwWt","output_index":0,"sequence_number":33} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":34,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"4","logprobs":[],"obfuscation":"bqVfSL9VMxSkmFe"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"_year","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"sqrILj0YJ64","output_index":0,"sequence_number":34} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":35,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":",\"","logprobs":[],"obfuscation":"qgmBIyTIfjH3OE"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"mwZaFO4g6mkhTl","output_index":0,"sequence_number":35} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":36,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"title","logprobs":[],"obfuscation":"Id8zVfGYo7a"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"195","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"5wtfngGATZO4J","output_index":0,"sequence_number":36} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":37,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"veHzdRv23AzPl"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"4","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"LsyfyewXBmS0Qdp","output_index":0,"sequence_number":37} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":38,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"The","logprobs":[],"obfuscation":"xMnThoyDxhbUr"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",\"","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"zRwNxzAWeaEGgL","output_index":0,"sequence_number":38} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":39,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":" Lord","logprobs":[],"obfuscation":"OcJRWqXfn1M"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"title","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"Eg2JyUwFwrg","output_index":0,"sequence_number":39} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":40,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":" of","logprobs":[],"obfuscation":"3TOyEkURJ6dVm"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"v2ROimfCn75ns","output_index":0,"sequence_number":40} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":41,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":" the","logprobs":[],"obfuscation":"FlHWLd9puSSA"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"The","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"F5Sq2H3lXwgD0","output_index":0,"sequence_number":41} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":42,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":" Rings","logprobs":[],"obfuscation":"8yvK9lspkq"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Lord","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"bRbuGbZlgyA","output_index":0,"sequence_number":42} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":43,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"delta":"\"}","logprobs":[],"obfuscation":"XDCCShjSwvlmkK"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" of","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"WPdTf6y37RG8s","output_index":0,"sequence_number":43} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" the","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"0o9iXK1nGdmC","output_index":0,"sequence_number":44} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" Rings","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"T6g2XIFcIS","output_index":0,"sequence_number":45} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"}","item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"obfuscation":"I6FH0VCakC2Tmq","output_index":0,"sequence_number":46} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":44,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","logprobs":[],"output_index":0,"sequence_number":47,"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\",\"High Fantasy\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":45,"item_id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\",\"High Fantasy\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"},"sequence_number":48} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":46,"output_index":0,"item":{"id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\",\"High Fantasy\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}],"role":"assistant"},"output_index":0,"sequence_number":49} event: response.completed - data: {"type":"response.completed","sequence_number":47,"response":{"id":"resp_0cd0345c54b0381e01690fb5e2f140819eb8b9fa3f55b4313b","object":"response","created_at":1762637282,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[{"id":"msg_0cd0345c54b0381e01690fb5e33790819e8d4550f3ccc5c05f","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":140,"input_tokens_details":{"cached_tokens":0},"output_tokens":41,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":181},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_0db0ab9a592403d20169b3199246a081a29ec565b316f7f747","object":"response","created_at":1773345170,"status":"completed","background":false,"completed_at":1773345172,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[{"id":"msg_0db0ab9a592403d20169b31992e67081a29430011ef8e443d9","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\",\"High Fantasy\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":140,"input_tokens_details":{"cached_tokens":0},"output_tokens":44,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":184},"user":null,"metadata":{}},"sequence_number":50} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 204.676208ms + duration: 248.942125ms diff --git a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o/simple_object.yaml b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o/simple_object.yaml index 736c5095338bf40e56b70ea421e31748bf6bc298..8f7d8a6d6293c5f0162794972b80cd23c88a96d8 100644 --- a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o/simple_object.yaml +++ b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o/simple_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_0f20344bcc1b767601690fb5e04c9c81a08af63f829b10bb55", + "id": "resp_04b6957cb7b8f7600169b3198ed94481a08757c7617e8812e6", "object": "response", - "created_at": 1762637280, + "created_at": 1773345166, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345167, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -42,7 +44,7 @@ interactions: "model": "gpt-4o-2024-08-06", "output": [ { - "id": "msg_0f20344bcc1b767601690fb5e094e481a0833865218a771607", + "id": "msg_04b6957cb7b8f7600169b3198f1dd881a0bc0ff95d58fb2270", "type": "message", "status": "completed", "content": [ @@ -57,6 +59,7 @@ interactions: } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, "prompt_cache_retention": null, @@ -124,4 +127,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 816.505042ms + duration: 579.660458ms diff --git a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o/simple_object_streaming.yaml b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o/simple_object_streaming.yaml index ba035949dc0328923872b453652d3f2480ec0f11..cf0fa2c28adec439beab2058543a8e5867a5b790 100644 --- a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o/simple_object_streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-4o/simple_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,71 +25,71 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0d165ceb975b9af401690fb5e0e8788192bd9eb948decabbd1","object":"response","created_at":1762637280,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_016f864f20aa0f370169b3198f6ad481928e3fd6209525ad3c","object":"response","created_at":1773345167,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0d165ceb975b9af401690fb5e0e8788192bd9eb948decabbd1","object":"response","created_at":1762637280,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_016f864f20aa0f370169b3198f6ad481928e3fd6209525ad3c","object":"response","created_at":1773345167,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"msg_0d165ceb975b9af401690fb5e147e08192981f80e775d1b42a","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_016f864f20aa0f370169b319901ae08192a83cdd1baa68ae6d","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":0,"sequence_number":2} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":3,"item_id":"msg_0d165ceb975b9af401690fb5e147e08192981f80e775d1b42a","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_016f864f20aa0f370169b319901ae08192a83cdd1baa68ae6d","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":3} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":4,"item_id":"msg_0d165ceb975b9af401690fb5e147e08192981f80e775d1b42a","output_index":0,"content_index":0,"delta":"{\"","logprobs":[],"obfuscation":"Tp0jZ8gJ4woL9Y"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"{\"","item_id":"msg_016f864f20aa0f370169b319901ae08192a83cdd1baa68ae6d","logprobs":[],"obfuscation":"r3JoKjpHm9Tbci","output_index":0,"sequence_number":4} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":5,"item_id":"msg_0d165ceb975b9af401690fb5e147e08192981f80e775d1b42a","output_index":0,"content_index":0,"delta":"age","logprobs":[],"obfuscation":"citwa9boDP9Y2"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"age","item_id":"msg_016f864f20aa0f370169b319901ae08192a83cdd1baa68ae6d","logprobs":[],"obfuscation":"anknIIRXbxY0N","output_index":0,"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_0d165ceb975b9af401690fb5e147e08192981f80e775d1b42a","output_index":0,"content_index":0,"delta":"\":","logprobs":[],"obfuscation":"y41U42sTULTK18"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":","item_id":"msg_016f864f20aa0f370169b319901ae08192a83cdd1baa68ae6d","logprobs":[],"obfuscation":"zb4e4O5LOdBNmn","output_index":0,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_0d165ceb975b9af401690fb5e147e08192981f80e775d1b42a","output_index":0,"content_index":0,"delta":"30","logprobs":[],"obfuscation":"YqlEplTbGy3fsj"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"30","item_id":"msg_016f864f20aa0f370169b319901ae08192a83cdd1baa68ae6d","logprobs":[],"obfuscation":"MK35ByHiL7hQkA","output_index":0,"sequence_number":7} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_0d165ceb975b9af401690fb5e147e08192981f80e775d1b42a","output_index":0,"content_index":0,"delta":",\"","logprobs":[],"obfuscation":"Sg3V1re96l7ZKF"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",\"","item_id":"msg_016f864f20aa0f370169b319901ae08192a83cdd1baa68ae6d","logprobs":[],"obfuscation":"nXzqfEcsjYw9tQ","output_index":0,"sequence_number":8} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_0d165ceb975b9af401690fb5e147e08192981f80e775d1b42a","output_index":0,"content_index":0,"delta":"city","logprobs":[],"obfuscation":"x357HhG0WmSG"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"city","item_id":"msg_016f864f20aa0f370169b319901ae08192a83cdd1baa68ae6d","logprobs":[],"obfuscation":"sbLBhcWTuynp","output_index":0,"sequence_number":9} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_0d165ceb975b9af401690fb5e147e08192981f80e775d1b42a","output_index":0,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"y0CAsSO6TE2Wm"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_016f864f20aa0f370169b319901ae08192a83cdd1baa68ae6d","logprobs":[],"obfuscation":"0VbiB6MVQ0vYj","output_index":0,"sequence_number":10} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_0d165ceb975b9af401690fb5e147e08192981f80e775d1b42a","output_index":0,"content_index":0,"delta":"Paris","logprobs":[],"obfuscation":"B7NTDCRqRbF"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Paris","item_id":"msg_016f864f20aa0f370169b319901ae08192a83cdd1baa68ae6d","logprobs":[],"obfuscation":"0fp6IEUruaO","output_index":0,"sequence_number":11} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":12,"item_id":"msg_0d165ceb975b9af401690fb5e147e08192981f80e775d1b42a","output_index":0,"content_index":0,"delta":"\",\"","logprobs":[],"obfuscation":"IETmenhLsNCo2"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\",\"","item_id":"msg_016f864f20aa0f370169b319901ae08192a83cdd1baa68ae6d","logprobs":[],"obfuscation":"OERAFUy4ydTZI","output_index":0,"sequence_number":12} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":13,"item_id":"msg_0d165ceb975b9af401690fb5e147e08192981f80e775d1b42a","output_index":0,"content_index":0,"delta":"name","logprobs":[],"obfuscation":"tN74YVJx0gab"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"name","item_id":"msg_016f864f20aa0f370169b319901ae08192a83cdd1baa68ae6d","logprobs":[],"obfuscation":"wstmKMQ1NGUZ","output_index":0,"sequence_number":13} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":14,"item_id":"msg_0d165ceb975b9af401690fb5e147e08192981f80e775d1b42a","output_index":0,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"sFnNvr3rmQHWV"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_016f864f20aa0f370169b319901ae08192a83cdd1baa68ae6d","logprobs":[],"obfuscation":"plV8mmUijIXkh","output_index":0,"sequence_number":14} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":15,"item_id":"msg_0d165ceb975b9af401690fb5e147e08192981f80e775d1b42a","output_index":0,"content_index":0,"delta":"Alice","logprobs":[],"obfuscation":"5fQecM4hrZO"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Alice","item_id":"msg_016f864f20aa0f370169b319901ae08192a83cdd1baa68ae6d","logprobs":[],"obfuscation":"xnXK0ZmW1MZ","output_index":0,"sequence_number":15} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":16,"item_id":"msg_0d165ceb975b9af401690fb5e147e08192981f80e775d1b42a","output_index":0,"content_index":0,"delta":"\"}","logprobs":[],"obfuscation":"jgrv8Q1bo52G7r"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"}","item_id":"msg_016f864f20aa0f370169b319901ae08192a83cdd1baa68ae6d","logprobs":[],"obfuscation":"JrzEhiHIBYJZ8M","output_index":0,"sequence_number":16} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":17,"item_id":"msg_0d165ceb975b9af401690fb5e147e08192981f80e775d1b42a","output_index":0,"content_index":0,"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_016f864f20aa0f370169b319901ae08192a83cdd1baa68ae6d","logprobs":[],"output_index":0,"sequence_number":17,"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":18,"item_id":"msg_0d165ceb975b9af401690fb5e147e08192981f80e775d1b42a","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_016f864f20aa0f370169b319901ae08192a83cdd1baa68ae6d","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"},"sequence_number":18} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":19,"output_index":0,"item":{"id":"msg_0d165ceb975b9af401690fb5e147e08192981f80e775d1b42a","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_016f864f20aa0f370169b319901ae08192a83cdd1baa68ae6d","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}],"role":"assistant"},"output_index":0,"sequence_number":19} event: response.completed - data: {"type":"response.completed","sequence_number":20,"response":{"id":"resp_0d165ceb975b9af401690fb5e0e8788192bd9eb948decabbd1","object":"response","created_at":1762637280,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[{"id":"msg_0d165ceb975b9af401690fb5e147e08192981f80e775d1b42a","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":82,"input_tokens_details":{"cached_tokens":0},"output_tokens":14,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":96},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_016f864f20aa0f370169b3198f6ad481928e3fd6209525ad3c","object":"response","created_at":1773345167,"status":"completed","background":false,"completed_at":1773345168,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-4o-2024-08-06","output":[{"id":"msg_016f864f20aa0f370169b319901ae08192a83cdd1baa68ae6d","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":null,"summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":82,"input_tokens_details":{"cached_tokens":0},"output_tokens":14,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":96},"user":null,"metadata":{}},"sequence_number":20} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 229.655875ms + duration: 227.534292ms diff --git a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-5/complex_object.yaml b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-5/complex_object.yaml index 117e01dd75d1be997ecb7e54ad96e27e3f5eaab5..ce6a05a88ac31dbb4da1d4e0f74ba868c44930ea 100644 --- a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-5/complex_object.yaml +++ b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-5/complex_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_0d7efb113168df8301690fb603c0f881a1a5ecec45f910e875", + "id": "resp_0847b706422580fd0169b319aac66c81a0856e18fe5f42e169", "object": "response", - "created_at": 1762637315, + "created_at": 1773345194, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345207, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -42,12 +44,12 @@ interactions: "model": "gpt-5-2025-08-07", "output": [ { - "id": "rs_0d7efb113168df8301690fb6041bb881a198a6e417f00bba70", + "id": "rs_0847b706422580fd0169b319ab2dc081a08b7a1951374c3ca6", "type": "reasoning", "summary": [] }, { - "id": "msg_0d7efb113168df8301690fb610bf2881a1be28a4885c1876ac", + "id": "msg_0847b706422580fd0169b319b6d08881a0ab5a70c7759e3ebb", "type": "message", "status": "completed", "content": [ @@ -55,13 +57,14 @@ interactions: "type": "output_text", "annotations": [], "logprobs": [], - "text": "{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic fantasy\",\"High fantasy\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}" + "text": "{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"High fantasy\",\"Epic\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}" } ], "role": "assistant" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, "prompt_cache_retention": null, @@ -137,11 +140,11 @@ interactions: "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 885, + "output_tokens": 664, "output_tokens_details": { - "reasoning_tokens": 832 + "reasoning_tokens": 576 }, - "total_tokens": 1023 + "total_tokens": 802 }, "user": null, "metadata": {} @@ -151,4 +154,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 13.745367625s + duration: 12.793636458s diff --git a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-5/complex_object_streaming.yaml b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-5/complex_object_streaming.yaml index a8dbf47206faf5072c4e978341e22552006e097a..d53efd7f9c090ea0432b35eeb4409812d9909a2a 100644 --- a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-5/complex_object_streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-5/complex_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,167 +25,167 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0aab0755c068dba601690fb61193ac81a09b187ec6ae118666","object":"response","created_at":1762637329,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_00db60b68c4972bf0169b319b78f0481a2a15be9e54af5f589","object":"response","created_at":1773345207,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0aab0755c068dba601690fb61193ac81a09b187ec6ae118666","object":"response","created_at":1762637329,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_00db60b68c4972bf0169b319b78f0481a2a15be9e54af5f589","object":"response","created_at":1773345207,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_0aab0755c068dba601690fb611f3ac81a09cdf0bc7455763c3","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.added","item":{"id":"rs_00db60b68c4972bf0169b319b7fa0481a2a86eba479d45cd2c","type":"reasoning","summary":[]},"output_index":0,"sequence_number":2} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":3,"output_index":0,"item":{"id":"rs_0aab0755c068dba601690fb611f3ac81a09cdf0bc7455763c3","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.done","item":{"id":"rs_00db60b68c4972bf0169b319b7fa0481a2a86eba479d45cd2c","type":"reasoning","summary":[]},"output_index":0,"sequence_number":3} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":4,"output_index":1,"item":{"id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":1,"sequence_number":4} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":5,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"{\"","logprobs":[],"obfuscation":"FRSE2Xg4Zlm8ZC"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"{\"","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"PyN7MG3XPdmbsf","output_index":1,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"author","logprobs":[],"obfuscation":"yOVxZwnwPd"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"author","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"LMQvyLCNhj","output_index":1,"sequence_number":7} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"\":{\"","logprobs":[],"obfuscation":"2gdH3UjKn7p9"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":{\"","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"y3CEbHLvkmZb","output_index":1,"sequence_number":8} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"name","logprobs":[],"obfuscation":"yC1JPv5XOR2N"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"name","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"ci6uWr5Ra2P4","output_index":1,"sequence_number":9} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"tX53HlJF35P9H"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"d4S8bodaBvKkd","output_index":1,"sequence_number":10} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"J","logprobs":[],"obfuscation":"EtaQPdRl67MBSep"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"J","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"7V2gO9gSnGvfPZ2","output_index":1,"sequence_number":11} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":12,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":".R","logprobs":[],"obfuscation":"inIyKyyMrOUvqS"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".R","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"dVTposfiYbyivC","output_index":1,"sequence_number":12} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":13,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":".R","logprobs":[],"obfuscation":"EILjTviSrTF0ld"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".R","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"ulzKtSW2aABQmf","output_index":1,"sequence_number":13} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":14,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":".","logprobs":[],"obfuscation":"yLLwcS41h3upq9Y"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"Q89SqMDKYv6Iimg","output_index":1,"sequence_number":14} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":15,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":" Tolkien","logprobs":[],"obfuscation":"8exzRdOu"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Tolkien","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"dhCuLRYV","output_index":1,"sequence_number":15} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":16,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"\",\"","logprobs":[],"obfuscation":"mnj6f7Tx86gFa"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\",\"","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"H9GghB64sXQca","output_index":1,"sequence_number":16} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":17,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"national","logprobs":[],"obfuscation":"kTAXhH1C"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"national","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"nnWExxIv","output_index":1,"sequence_number":17} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":18,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"ity","logprobs":[],"obfuscation":"lmCwZO8RmMwd2"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"ity","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"8pdcTtMtVavzd","output_index":1,"sequence_number":18} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":19,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"mwjZzCk2nZQe9"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"ZJ0vafrYpikPR","output_index":1,"sequence_number":19} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":20,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"British","logprobs":[],"obfuscation":"EyvRvxuBK"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"British","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"WDMWKiW5H","output_index":1,"sequence_number":20} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":21,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"\"}","logprobs":[],"obfuscation":"hfEkZupXjk2638"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"}","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"skIAQ1fcq1MAgy","output_index":1,"sequence_number":21} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":22,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":",\"","logprobs":[],"obfuscation":"IsmwSfSFAcAJcU"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",\"","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"R28agKoV4z1Kfv","output_index":1,"sequence_number":22} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":23,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"genres","logprobs":[],"obfuscation":"IQtYupB5bm"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"genres","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"AhlQ3mcN2t","output_index":1,"sequence_number":23} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":24,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"\":[\"","logprobs":[],"obfuscation":"9IAahn76FgpL"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":[\"","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"PwPaSwMM8e4C","output_index":1,"sequence_number":24} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":25,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"Fantasy","logprobs":[],"obfuscation":"OMHBvYUds"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Fantasy","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"MHY5jUGap","output_index":1,"sequence_number":25} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":26,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"\",\"","logprobs":[],"obfuscation":"HlxU6WDUGwneu"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\",\"","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"zYWKP38vrBZEp","output_index":1,"sequence_number":26} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":27,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"Adventure","logprobs":[],"obfuscation":"ech2Vhw"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Adventure","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"Prq4j47","output_index":1,"sequence_number":27} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":28,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"\",\"","logprobs":[],"obfuscation":"AKMMJLmgtycDx"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\",\"","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"r0lUBqwYNCUpM","output_index":1,"sequence_number":28} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":29,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"Epic","logprobs":[],"obfuscation":"t209VHDHFuLF"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"High","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"bOjsfT1zPYzm","output_index":1,"sequence_number":29} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":30,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"\",\"","logprobs":[],"obfuscation":"Cr6RboWi7ioxS"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" fantasy","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"OUmvBrxk","output_index":1,"sequence_number":30} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":31,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"High","logprobs":[],"obfuscation":"obU3L2eqqyS4"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\",\"","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"x4JuREg52bYZS","output_index":1,"sequence_number":31} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":32,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":" fantasy","logprobs":[],"obfuscation":"LUcEZc9a"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Epic","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"iWr8VD4uBJJx","output_index":1,"sequence_number":32} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":33,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"\"],","logprobs":[],"obfuscation":"mntl6wRF0Z9vj"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"],","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"dwOQ9waLvIUWK","output_index":1,"sequence_number":33} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":34,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"\"","logprobs":[],"obfuscation":"i8cTb3WH2EqqLnM"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"OGOFh3SlbIeCXYt","output_index":1,"sequence_number":34} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":35,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"published","logprobs":[],"obfuscation":"aMJKxsW"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"published","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"1Z8Dr5i","output_index":1,"sequence_number":35} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":36,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"_year","logprobs":[],"obfuscation":"ZXgdO0bgvI8"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"_year","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"Iyx0OKISxOf","output_index":1,"sequence_number":36} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":37,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"\":","logprobs":[],"obfuscation":"oHU9zp2d7ZBE8r"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"lc4qAYjeFHjAN3","output_index":1,"sequence_number":37} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":38,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"195","logprobs":[],"obfuscation":"wDjlyAPKySdjw"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"195","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"f2GhQzAVM0gET","output_index":1,"sequence_number":38} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":39,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"4","logprobs":[],"obfuscation":"YhVTDZXJht9Deaa"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"4","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"kL2PFFjC7xXvr2u","output_index":1,"sequence_number":39} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":40,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":",\"","logprobs":[],"obfuscation":"uzKH47tBdPXm2n"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",\"","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"CEfJeFl48P9AQT","output_index":1,"sequence_number":40} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":41,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"title","logprobs":[],"obfuscation":"aXOJbtxSFSA"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"title","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"4X3jDhBPUUw","output_index":1,"sequence_number":41} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":42,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"ni9nsl8eAvHWp"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"zlqmIyMc9eNoM","output_index":1,"sequence_number":42} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":43,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"The","logprobs":[],"obfuscation":"secEK5zivRAr9"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"The","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"trA02qrZTpzNl","output_index":1,"sequence_number":43} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":44,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":" Lord","logprobs":[],"obfuscation":"tTvtm7dHyTk"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Lord","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"yLl9PT6dvoI","output_index":1,"sequence_number":44} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":45,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":" of","logprobs":[],"obfuscation":"2LbYZOGAwQHVR"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" of","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"m27GQ6tCtQOCv","output_index":1,"sequence_number":45} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":46,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":" the","logprobs":[],"obfuscation":"06rgzxqdEmme"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" the","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"arcchXKF3nsl","output_index":1,"sequence_number":46} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":47,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":" Rings","logprobs":[],"obfuscation":"x7YNUbaBsm"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Rings","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"MI8ea8JzZ2","output_index":1,"sequence_number":47} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":48,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"delta":"\"}","logprobs":[],"obfuscation":"RgRi11lh9YHnhK"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"}","item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"obfuscation":"K3WuddjL95DQC5","output_index":1,"sequence_number":48} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":49,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\",\"High fantasy\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","logprobs":[],"output_index":1,"sequence_number":49,"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"High fantasy\",\"Epic\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":50,"item_id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\",\"High fantasy\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"High fantasy\",\"Epic\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"},"sequence_number":50} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":51,"output_index":1,"item":{"id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\",\"High fantasy\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"High fantasy\",\"Epic\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}],"role":"assistant"},"output_index":1,"sequence_number":51} event: response.completed - data: {"type":"response.completed","sequence_number":52,"response":{"id":"resp_0aab0755c068dba601690fb61193ac81a09b187ec6ae118666","object":"response","created_at":1762637329,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[{"id":"rs_0aab0755c068dba601690fb611f3ac81a09cdf0bc7455763c3","type":"reasoning","summary":[]},{"id":"msg_0aab0755c068dba601690fb61b054481a08336dd277cca7e31","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"Epic\",\"High fantasy\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":138,"input_tokens_details":{"cached_tokens":0},"output_tokens":628,"output_tokens_details":{"reasoning_tokens":576},"total_tokens":766},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_00db60b68c4972bf0169b319b78f0481a2a15be9e54af5f589","object":"response","created_at":1773345207,"status":"completed","background":false,"completed_at":1773345216,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[{"id":"rs_00db60b68c4972bf0169b319b7fa0481a2a86eba479d45cd2c","type":"reasoning","summary":[]},{"id":"msg_00db60b68c4972bf0169b319c0130881a2bc4ac835da33e396","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"Fantasy\",\"Adventure\",\"High fantasy\",\"Epic\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":138,"input_tokens_details":{"cached_tokens":0},"output_tokens":444,"output_tokens_details":{"reasoning_tokens":384},"total_tokens":582},"user":null,"metadata":{}},"sequence_number":52} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 305.219208ms + duration: 227.888125ms diff --git a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-5/simple_object.yaml b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-5/simple_object.yaml index 5383b0d91f992306490549db511df91f20c7b680..23c6430568dfeb82b86e65220a2dfef8046e9519 100644 --- a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-5/simple_object.yaml +++ b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-5/simple_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_027d860ff8453c5c01690fb5e8b590819c98d4fefe82a2d697", + "id": "resp_0bc193ab8f6f00dc0169b31998c46c8193aebeae3a0339b965", "object": "response", - "created_at": 1762637288, + "created_at": 1773345176, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345187, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -42,12 +44,12 @@ interactions: "model": "gpt-5-2025-08-07", "output": [ { - "id": "rs_027d860ff8453c5c01690fb5e90bf8819cafd2ab51156cc379", + "id": "rs_0bc193ab8f6f00dc0169b319992ff48193bfed04f43cdc5163", "type": "reasoning", "summary": [] }, { - "id": "msg_027d860ff8453c5c01690fb5fe2978819ca252f996006bf96e", + "id": "msg_0bc193ab8f6f00dc0169b319a2f8148193878e47e1aa3179fd", "type": "message", "status": "completed", "content": [ @@ -62,6 +64,7 @@ interactions: } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, "prompt_cache_retention": null, @@ -115,11 +118,11 @@ interactions: "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 1238, + "output_tokens": 495, "output_tokens_details": { - "reasoning_tokens": 1216 + "reasoning_tokens": 448 }, - "total_tokens": 1318 + "total_tokens": 575 }, "user": null, "metadata": {} @@ -129,4 +132,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 22.08059475s + duration: 10.843522s diff --git a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-5/simple_object_streaming.yaml b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-5/simple_object_streaming.yaml index ac2f26b05ecdcd11536e805e5fbd47a6c1040c96..f1885a33b57d7ca653ec384c22e7267e734afb66 100644 --- a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-5/simple_object_streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-gpt-5/simple_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,77 +25,77 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0f3ec5120e1249d801690fb5fecea8819da2de394f03b31ace","object":"response","created_at":1762637310,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_00e5598d16a351e30169b319a3a0bc8197874d8782f3f32ed7","object":"response","created_at":1773345187,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0f3ec5120e1249d801690fb5fecea8819da2de394f03b31ace","object":"response","created_at":1762637310,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_00e5598d16a351e30169b319a3a0bc8197874d8782f3f32ed7","object":"response","created_at":1773345187,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_0f3ec5120e1249d801690fb5ff2974819dba13ad28975c504b","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.added","item":{"id":"rs_00e5598d16a351e30169b319a411c08197b734b9940390d5b8","type":"reasoning","summary":[]},"output_index":0,"sequence_number":2} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":3,"output_index":0,"item":{"id":"rs_0f3ec5120e1249d801690fb5ff2974819dba13ad28975c504b","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.done","item":{"id":"rs_00e5598d16a351e30169b319a411c08197b734b9940390d5b8","type":"reasoning","summary":[]},"output_index":0,"sequence_number":3} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":4,"output_index":1,"item":{"id":"msg_0f3ec5120e1249d801690fb6033aa0819db234a634e05d5a30","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_00e5598d16a351e30169b319aa536481979273eaee69058d63","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":1,"sequence_number":4} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":5,"item_id":"msg_0f3ec5120e1249d801690fb6033aa0819db234a634e05d5a30","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_00e5598d16a351e30169b319aa536481979273eaee69058d63","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_0f3ec5120e1249d801690fb6033aa0819db234a634e05d5a30","output_index":1,"content_index":0,"delta":"{\"","logprobs":[],"obfuscation":"7GTnOqQFxPeOpK"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"{\"","item_id":"msg_00e5598d16a351e30169b319aa536481979273eaee69058d63","logprobs":[],"obfuscation":"vEVJQtLyJQau6r","output_index":1,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_0f3ec5120e1249d801690fb6033aa0819db234a634e05d5a30","output_index":1,"content_index":0,"delta":"age","logprobs":[],"obfuscation":"ahq3wJcqDg67C"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"age","item_id":"msg_00e5598d16a351e30169b319aa536481979273eaee69058d63","logprobs":[],"obfuscation":"PlxabgUtRX0oD","output_index":1,"sequence_number":7} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_0f3ec5120e1249d801690fb6033aa0819db234a634e05d5a30","output_index":1,"content_index":0,"delta":"\":","logprobs":[],"obfuscation":"osUjj5cRs2ORzR"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":","item_id":"msg_00e5598d16a351e30169b319aa536481979273eaee69058d63","logprobs":[],"obfuscation":"kjUHAdo15xMzTO","output_index":1,"sequence_number":8} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_0f3ec5120e1249d801690fb6033aa0819db234a634e05d5a30","output_index":1,"content_index":0,"delta":"30","logprobs":[],"obfuscation":"5eJ5yJuRiS5WN3"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"30","item_id":"msg_00e5598d16a351e30169b319aa536481979273eaee69058d63","logprobs":[],"obfuscation":"arKEK1Tzej1nyV","output_index":1,"sequence_number":9} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_0f3ec5120e1249d801690fb6033aa0819db234a634e05d5a30","output_index":1,"content_index":0,"delta":",\"","logprobs":[],"obfuscation":"e7TX0qCwG2Lo3U"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",\"","item_id":"msg_00e5598d16a351e30169b319aa536481979273eaee69058d63","logprobs":[],"obfuscation":"JKOwcqXINty5OM","output_index":1,"sequence_number":10} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_0f3ec5120e1249d801690fb6033aa0819db234a634e05d5a30","output_index":1,"content_index":0,"delta":"city","logprobs":[],"obfuscation":"YwOQpDl4Ogwh"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"city","item_id":"msg_00e5598d16a351e30169b319aa536481979273eaee69058d63","logprobs":[],"obfuscation":"8Yjx92xWQ9Cl","output_index":1,"sequence_number":11} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":12,"item_id":"msg_0f3ec5120e1249d801690fb6033aa0819db234a634e05d5a30","output_index":1,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"ZHxRR3Nq8o8BN"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_00e5598d16a351e30169b319aa536481979273eaee69058d63","logprobs":[],"obfuscation":"6fQO4TyQWCxOb","output_index":1,"sequence_number":12} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":13,"item_id":"msg_0f3ec5120e1249d801690fb6033aa0819db234a634e05d5a30","output_index":1,"content_index":0,"delta":"Paris","logprobs":[],"obfuscation":"t5OlzBTusIz"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Paris","item_id":"msg_00e5598d16a351e30169b319aa536481979273eaee69058d63","logprobs":[],"obfuscation":"5Wb7hVOg9SW","output_index":1,"sequence_number":13} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":14,"item_id":"msg_0f3ec5120e1249d801690fb6033aa0819db234a634e05d5a30","output_index":1,"content_index":0,"delta":"\",\"","logprobs":[],"obfuscation":"UxQ64dgXht7OW"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\",\"","item_id":"msg_00e5598d16a351e30169b319aa536481979273eaee69058d63","logprobs":[],"obfuscation":"o7M2FKbuiBjLg","output_index":1,"sequence_number":14} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":15,"item_id":"msg_0f3ec5120e1249d801690fb6033aa0819db234a634e05d5a30","output_index":1,"content_index":0,"delta":"name","logprobs":[],"obfuscation":"QrSseCXd0dr7"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"name","item_id":"msg_00e5598d16a351e30169b319aa536481979273eaee69058d63","logprobs":[],"obfuscation":"JmOX040u5qHj","output_index":1,"sequence_number":15} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":16,"item_id":"msg_0f3ec5120e1249d801690fb6033aa0819db234a634e05d5a30","output_index":1,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"UGFZp4OC4WO91"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_00e5598d16a351e30169b319aa536481979273eaee69058d63","logprobs":[],"obfuscation":"rRTqASIxxsEDE","output_index":1,"sequence_number":16} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":17,"item_id":"msg_0f3ec5120e1249d801690fb6033aa0819db234a634e05d5a30","output_index":1,"content_index":0,"delta":"Alice","logprobs":[],"obfuscation":"tsJ1GFIhmG1"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Alice","item_id":"msg_00e5598d16a351e30169b319aa536481979273eaee69058d63","logprobs":[],"obfuscation":"hZYg4mpvpdI","output_index":1,"sequence_number":17} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":18,"item_id":"msg_0f3ec5120e1249d801690fb6033aa0819db234a634e05d5a30","output_index":1,"content_index":0,"delta":"\"}","logprobs":[],"obfuscation":"abWOYlvE9UO8wT"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"}","item_id":"msg_00e5598d16a351e30169b319aa536481979273eaee69058d63","logprobs":[],"obfuscation":"msL6XoEeQHczST","output_index":1,"sequence_number":18} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":19,"item_id":"msg_0f3ec5120e1249d801690fb6033aa0819db234a634e05d5a30","output_index":1,"content_index":0,"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_00e5598d16a351e30169b319aa536481979273eaee69058d63","logprobs":[],"output_index":1,"sequence_number":19,"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":20,"item_id":"msg_0f3ec5120e1249d801690fb6033aa0819db234a634e05d5a30","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_00e5598d16a351e30169b319aa536481979273eaee69058d63","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"},"sequence_number":20} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":21,"output_index":1,"item":{"id":"msg_0f3ec5120e1249d801690fb6033aa0819db234a634e05d5a30","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_00e5598d16a351e30169b319aa536481979273eaee69058d63","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}],"role":"assistant"},"output_index":1,"sequence_number":21} event: response.completed - data: {"type":"response.completed","sequence_number":22,"response":{"id":"resp_0f3ec5120e1249d801690fb5fecea8819da2de394f03b31ace","object":"response","created_at":1762637310,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[{"id":"rs_0f3ec5120e1249d801690fb5ff2974819dba13ad28975c504b","type":"reasoning","summary":[]},{"id":"msg_0f3ec5120e1249d801690fb6033aa0819db234a634e05d5a30","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":80,"input_tokens_details":{"cached_tokens":0},"output_tokens":214,"output_tokens_details":{"reasoning_tokens":192},"total_tokens":294},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_00e5598d16a351e30169b319a3a0bc8197874d8782f3f32ed7","object":"response","created_at":1773345187,"status":"completed","background":false,"completed_at":1773345194,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[{"id":"rs_00e5598d16a351e30169b319a411c08197b734b9940390d5b8","type":"reasoning","summary":[]},{"id":"msg_00e5598d16a351e30169b319aa536481979273eaee69058d63","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":80,"input_tokens_details":{"cached_tokens":0},"output_tokens":314,"output_tokens_details":{"reasoning_tokens":256},"total_tokens":394},"user":null,"metadata":{}},"sequence_number":22} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 217.170041ms + duration: 296.034458ms diff --git a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-o4-mini/complex_object.yaml b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-o4-mini/complex_object.yaml index cbea589d66064547e3ff3b4f8148cc7d286d8996..98fbf60254ecd0550a9e73c691ee15f1f5416178 100644 --- a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-o4-mini/complex_object.yaml +++ b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-o4-mini/complex_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_017b2c309fa6f10301690fb622abf481a0a85dad143f87cc57", + "id": "resp_05ec23e6760348680169b319c85f708193a530450b951622fc", "object": "response", - "created_at": 1762637346, + "created_at": 1773345224, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345230, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -42,12 +44,12 @@ interactions: "model": "o4-mini-2025-04-16", "output": [ { - "id": "rs_017b2c309fa6f10301690fb623133881a0b253929605c93041", + "id": "rs_05ec23e6760348680169b319c8e4b48193a5077f5366ff8cd6", "type": "reasoning", "summary": [] }, { - "id": "msg_017b2c309fa6f10301690fb6269d6c81a0abb3acf886a1efe0", + "id": "msg_05ec23e6760348680169b319cdb3d881938d81458bb166d538", "type": "message", "status": "completed", "content": [ @@ -55,13 +57,14 @@ interactions: "type": "output_text", "annotations": [], "logprobs": [], - "text": "{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"English\"},\"genres\":[\"Fantasy\",\"Adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}" + "text": "{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"English\"},\"genres\":[\"fantasy\",\"adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}" } ], "role": "assistant" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, "prompt_cache_retention": null, @@ -137,11 +140,11 @@ interactions: "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 431, + "output_tokens": 434, "output_tokens_details": { "reasoning_tokens": 384 }, - "total_tokens": 569 + "total_tokens": 572 }, "user": null, "metadata": {} @@ -151,4 +154,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 4.660075375s + duration: 6.283059s diff --git a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-o4-mini/complex_object_streaming.yaml b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-o4-mini/complex_object_streaming.yaml index a33dac621c0b9379af7938a15e260928bf9a5042..4a3a1ccf75931bc3e330c11db203dd41506af58e 100644 --- a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-o4-mini/complex_object_streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-o4-mini/complex_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,152 +25,158 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0feabf3ec12ead7701690fb62757bc81a09ca434178fe08235","object":"response","created_at":1762637351,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_09379b2c44023f740169b319cea32081978d4b27b8eb7553b0","object":"response","created_at":1773345230,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0feabf3ec12ead7701690fb62757bc81a09ca434178fe08235","object":"response","created_at":1762637351,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_09379b2c44023f740169b319cea32081978d4b27b8eb7553b0","object":"response","created_at":1773345230,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_0feabf3ec12ead7701690fb62796f881a0b162227941dc79ef","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.added","item":{"id":"rs_09379b2c44023f740169b319cf536481978880227e1adecdd6","type":"reasoning","summary":[]},"output_index":0,"sequence_number":2} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":3,"output_index":0,"item":{"id":"rs_0feabf3ec12ead7701690fb62796f881a0b162227941dc79ef","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.done","item":{"id":"rs_09379b2c44023f740169b319cf536481978880227e1adecdd6","type":"reasoning","summary":[]},"output_index":0,"sequence_number":3} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":4,"output_index":1,"item":{"id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":1,"sequence_number":4} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":5,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"{\"","logprobs":[],"obfuscation":"UKrPeS79BSa2RR"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"{\"","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"RMTDXuWF9vAD83","output_index":1,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"author","logprobs":[],"obfuscation":"4HYFJNddaM"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"author","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"0ogtlLMAcc","output_index":1,"sequence_number":7} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"\":{\"","logprobs":[],"obfuscation":"KxfmMUbv6rSi"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":{\"","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"fd7mj59O7xwb","output_index":1,"sequence_number":8} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"name","logprobs":[],"obfuscation":"hK7kM7NKGjH6"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"name","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"IYUb5lp4RUcN","output_index":1,"sequence_number":9} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"6wHz01JjOsAH0"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"c1aqD4EhmLJav","output_index":1,"sequence_number":10} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"J","logprobs":[],"obfuscation":"bNKD05FCk2HtePG"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"J","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"leVcmDUrGUCTAMg","output_index":1,"sequence_number":11} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":12,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":".R","logprobs":[],"obfuscation":"cut8dbqMYbhOnj"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".R","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"OTuEJOUz56CkLh","output_index":1,"sequence_number":12} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":13,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":".R","logprobs":[],"obfuscation":"nvA4l6kpG3sJEu"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".R","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"qSUDidbf0trFTj","output_index":1,"sequence_number":13} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":14,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":".","logprobs":[],"obfuscation":"QrOGoNp8B9iFZL4"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"QOxty01oFyY9fJM","output_index":1,"sequence_number":14} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":15,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":" Tolkien","logprobs":[],"obfuscation":"IH7RJtC7"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Tolkien","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"lyTCrByl","output_index":1,"sequence_number":15} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":16,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"\",\"","logprobs":[],"obfuscation":"Js54Ii28VMaYR"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\",\"","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"9n6tPteqK0Epn","output_index":1,"sequence_number":16} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":17,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"national","logprobs":[],"obfuscation":"7nLZE4t9"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"national","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"7j6I0vio","output_index":1,"sequence_number":17} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":18,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"ity","logprobs":[],"obfuscation":"5vI2FTTXwlAOy"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"ity","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"AIqZp0pd3fKpm","output_index":1,"sequence_number":18} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":19,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"wUMHr1ru5bQtE"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"cmIXjf8AuLND7","output_index":1,"sequence_number":19} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":20,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"English","logprobs":[],"obfuscation":"lsI0ms9i1"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"British","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"uzFbjFLr3","output_index":1,"sequence_number":20} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":21,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"\"}","logprobs":[],"obfuscation":"aRrNa6GpujOaaO"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"}","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"LPSgtXRIeE3sd0","output_index":1,"sequence_number":21} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":22,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":",\"","logprobs":[],"obfuscation":"Kt3i52uXhZ03Mf"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",\"","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"nYnDs29YHKi98G","output_index":1,"sequence_number":22} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":23,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"genres","logprobs":[],"obfuscation":"G1WDFmbb9Q"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"genres","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"YYQGYwDORi","output_index":1,"sequence_number":23} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":24,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"\":[\"","logprobs":[],"obfuscation":"6O7ClIrlzRhF"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":[\"","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"8hO2en1Q4bkK","output_index":1,"sequence_number":24} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":25,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"Fantasy","logprobs":[],"obfuscation":"wkIXL8F1U"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"fant","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"FLH19LThIW8b","output_index":1,"sequence_number":25} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":26,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"\",\"","logprobs":[],"obfuscation":"dKXLAcp4XePv8"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"asy","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"6L8mo5wyqahVT","output_index":1,"sequence_number":26} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":27,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"Adventure","logprobs":[],"obfuscation":"WqXwtaT"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\",\"","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"NFWIqyF4ZXmBL","output_index":1,"sequence_number":27} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":28,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"\"],","logprobs":[],"obfuscation":"TdJkB47ahMYzw"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"ad","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"CDE64bmss2IwCG","output_index":1,"sequence_number":28} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":29,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"\"","logprobs":[],"obfuscation":"IMl8aiOGDVVszW4"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"venture","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"5dlQ844TX","output_index":1,"sequence_number":29} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":30,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"published","logprobs":[],"obfuscation":"epu511F"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"],","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"ZLMOZk51aAMlx","output_index":1,"sequence_number":30} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":31,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"_year","logprobs":[],"obfuscation":"nQ0Lilgt6ou"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"UTzNaQnxkIuXVMn","output_index":1,"sequence_number":31} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":32,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"\":","logprobs":[],"obfuscation":"PSA5xVUFXYVr6g"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"published","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"MHXMtw3","output_index":1,"sequence_number":32} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":33,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"195","logprobs":[],"obfuscation":"UNVN1tMqPGaBa"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"_year","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"XGNO4moyeq7","output_index":1,"sequence_number":33} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":34,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"4","logprobs":[],"obfuscation":"RoUacQkG36iqsQT"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"9cKCY6OneneiBL","output_index":1,"sequence_number":34} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":35,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":",\"","logprobs":[],"obfuscation":"WoGTOtmNLBtcdp"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"195","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"8rJ9gsi2qi813","output_index":1,"sequence_number":35} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":36,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"title","logprobs":[],"obfuscation":"tdpLqHv2M45"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"4","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"W7Qztg88L9PfPu8","output_index":1,"sequence_number":36} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":37,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"2H1pTP6cRXFKQ"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",\"","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"qplxBH36KDlz9v","output_index":1,"sequence_number":37} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":38,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"The","logprobs":[],"obfuscation":"XyHCviQ1pz0nu"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"title","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"y6T09dDJXbL","output_index":1,"sequence_number":38} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":39,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":" Lord","logprobs":[],"obfuscation":"ZJPCj7Z7IG0"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"m5kTD7WW5gpxU","output_index":1,"sequence_number":39} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":40,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":" of","logprobs":[],"obfuscation":"t8V077vZPcKp9"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"The","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"EdFAXoiEgz3k1","output_index":1,"sequence_number":40} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":41,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":" the","logprobs":[],"obfuscation":"UuQWm1gxDQnK"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Lord","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"uSG5za7OicE","output_index":1,"sequence_number":41} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":42,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":" Rings","logprobs":[],"obfuscation":"UYyiAtjL19"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" of","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"1BbnGxsVuVVmH","output_index":1,"sequence_number":42} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":43,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"delta":"\"}","logprobs":[],"obfuscation":"fFubIsqj7lUp0g"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" the","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"UMucEaZ88nfA","output_index":1,"sequence_number":43} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" Rings","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"TGevl6gaFu","output_index":1,"sequence_number":44} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"}","item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"obfuscation":"Bfqw8s14IA6kPG","output_index":1,"sequence_number":45} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":44,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"English\"},\"genres\":[\"Fantasy\",\"Adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","logprobs":[],"output_index":1,"sequence_number":46,"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"fantasy\",\"adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":45,"item_id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"English\"},\"genres\":[\"Fantasy\",\"Adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"fantasy\",\"adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"},"sequence_number":47} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":46,"output_index":1,"item":{"id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"English\"},\"genres\":[\"Fantasy\",\"Adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"fantasy\",\"adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}],"role":"assistant"},"output_index":1,"sequence_number":48} event: response.completed - data: {"type":"response.completed","sequence_number":47,"response":{"id":"resp_0feabf3ec12ead7701690fb62757bc81a09ca434178fe08235","object":"response","created_at":1762637351,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[{"id":"rs_0feabf3ec12ead7701690fb62796f881a0b162227941dc79ef","type":"reasoning","summary":[]},{"id":"msg_0feabf3ec12ead7701690fb62cbd0c81a08295b29b09eeda24","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"English\"},\"genres\":[\"Fantasy\",\"Adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":138,"input_tokens_details":{"cached_tokens":0},"output_tokens":431,"output_tokens_details":{"reasoning_tokens":384},"total_tokens":569},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_09379b2c44023f740169b319cea32081978d4b27b8eb7553b0","object":"response","created_at":1773345230,"status":"completed","background":false,"completed_at":1773345235,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[{"id":"rs_09379b2c44023f740169b319cf536481978880227e1adecdd6","type":"reasoning","summary":[]},{"id":"msg_09379b2c44023f740169b319d3835881979465947b6365959a","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"author\":{\"name\":\"J.R.R. Tolkien\",\"nationality\":\"British\"},\"genres\":[\"fantasy\",\"adventure\"],\"published_year\":1954,\"title\":\"The Lord of the Rings\"}"}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Book","schema":{"additionalProperties":false,"properties":{"author":{"additionalProperties":false,"properties":{"name":{"description":"Author's name","type":"string"},"nationality":{"description":"Author's nationality","type":"string"}},"required":["name","nationality"],"type":"object"},"genres":{"description":"List of genres","items":{"type":"string"},"type":"array"},"published_year":{"description":"Year the book was published","type":"integer"},"title":{"description":"The book title","type":"string"}},"required":["title","author","genres","published_year"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":138,"input_tokens_details":{"cached_tokens":0},"output_tokens":452,"output_tokens_details":{"reasoning_tokens":384},"total_tokens":590},"user":null,"metadata":{}},"sequence_number":49} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 257.810458ms + duration: 261.198875ms diff --git a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-o4-mini/simple_object.yaml b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-o4-mini/simple_object.yaml index 731fefffbd3a224b08d160a364a903e7b49e8757..0535955c341e615de8d29680dd546992f39f7822 100644 --- a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-o4-mini/simple_object.yaml +++ b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-o4-mini/simple_object.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_098f453613ad314501690fb61bc6e0819382952362bbb4e647", + "id": "resp_0b8e7fbe916f887a0169b319c0e72081959f3678e0d01d94c6", "object": "response", - "created_at": 1762637339, + "created_at": 1773345216, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345219, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": 4000, @@ -42,12 +44,12 @@ interactions: "model": "o4-mini-2025-04-16", "output": [ { - "id": "rs_098f453613ad314501690fb61c869c81939eea265ba983fa58", + "id": "rs_0b8e7fbe916f887a0169b319c154c48195909e62b0bcf16793", "type": "reasoning", "summary": [] }, { - "id": "msg_098f453613ad314501690fb61f8828819389d543a45e07bc0b", + "id": "msg_0b8e7fbe916f887a0169b319c318ec819599c017171a4ac949", "type": "message", "status": "completed", "content": [ @@ -62,6 +64,7 @@ interactions: } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, "prompt_cache_retention": null, @@ -115,11 +118,11 @@ interactions: "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 342, + "output_tokens": 239, "output_tokens_details": { - "reasoning_tokens": 320 + "reasoning_tokens": 192 }, - "total_tokens": 422 + "total_tokens": 319 }, "user": null, "metadata": {} @@ -129,4 +132,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 4.174928125s + duration: 2.714006208s diff --git a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-o4-mini/simple_object_streaming.yaml b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-o4-mini/simple_object_streaming.yaml index e802239e8b7c38656e9fe8b16d979b9b81dee79b..70808853eefa4bd24bc654bebdb769824a0754f8 100644 --- a/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-o4-mini/simple_object_streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesObjectGeneration/openai-o4-mini/simple_object_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,77 +25,77 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_092dac14c3675a9901690fb61fee90819f92f6cd6a5129655b","object":"response","created_at":1762637343,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_0b69c2ef880a0e3b0169b319c3a3748197af3d57302463dd25","object":"response","created_at":1773345219,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_092dac14c3675a9901690fb61fee90819f92f6cd6a5129655b","object":"response","created_at":1762637343,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_0b69c2ef880a0e3b0169b319c3a3748197af3d57302463dd25","object":"response","created_at":1773345219,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_092dac14c3675a9901690fb6206d14819f8e540e484376b314","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.added","item":{"id":"rs_0b69c2ef880a0e3b0169b319c5ccf88197b8746b7e5dbaa616","type":"reasoning","summary":[]},"output_index":0,"sequence_number":2} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":3,"output_index":0,"item":{"id":"rs_092dac14c3675a9901690fb6206d14819f8e540e484376b314","type":"reasoning","summary":[]}} + data: {"type":"response.output_item.done","item":{"id":"rs_0b69c2ef880a0e3b0169b319c5ccf88197b8746b7e5dbaa616","type":"reasoning","summary":[]},"output_index":0,"sequence_number":3} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":4,"output_index":1,"item":{"id":"msg_092dac14c3675a9901690fb6224a44819fa81dd0010f806bce","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_0b69c2ef880a0e3b0169b319c7d8508197bd0cf822572a00b7","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":1,"sequence_number":4} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":5,"item_id":"msg_092dac14c3675a9901690fb6224a44819fa81dd0010f806bce","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_0b69c2ef880a0e3b0169b319c7d8508197bd0cf822572a00b7","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_092dac14c3675a9901690fb6224a44819fa81dd0010f806bce","output_index":1,"content_index":0,"delta":"{\"","logprobs":[],"obfuscation":"RaOJnqjM3VMFeX"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"{\"","item_id":"msg_0b69c2ef880a0e3b0169b319c7d8508197bd0cf822572a00b7","logprobs":[],"obfuscation":"ZBzXANfysVNmg1","output_index":1,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_092dac14c3675a9901690fb6224a44819fa81dd0010f806bce","output_index":1,"content_index":0,"delta":"age","logprobs":[],"obfuscation":"CHzhDPf4XW2LQ"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"age","item_id":"msg_0b69c2ef880a0e3b0169b319c7d8508197bd0cf822572a00b7","logprobs":[],"obfuscation":"TIjFa45s6bEDf","output_index":1,"sequence_number":7} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_092dac14c3675a9901690fb6224a44819fa81dd0010f806bce","output_index":1,"content_index":0,"delta":"\":","logprobs":[],"obfuscation":"aPilRCMMML2n5Z"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":","item_id":"msg_0b69c2ef880a0e3b0169b319c7d8508197bd0cf822572a00b7","logprobs":[],"obfuscation":"DrNTKHfthdlVO9","output_index":1,"sequence_number":8} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_092dac14c3675a9901690fb6224a44819fa81dd0010f806bce","output_index":1,"content_index":0,"delta":"30","logprobs":[],"obfuscation":"WCYnVeEqYrabrv"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"30","item_id":"msg_0b69c2ef880a0e3b0169b319c7d8508197bd0cf822572a00b7","logprobs":[],"obfuscation":"fA1htxWS1BCk8p","output_index":1,"sequence_number":9} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_092dac14c3675a9901690fb6224a44819fa81dd0010f806bce","output_index":1,"content_index":0,"delta":",\"","logprobs":[],"obfuscation":"8TEJwUIK3jbPWi"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",\"","item_id":"msg_0b69c2ef880a0e3b0169b319c7d8508197bd0cf822572a00b7","logprobs":[],"obfuscation":"DAkz2zTyhX20Sj","output_index":1,"sequence_number":10} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_092dac14c3675a9901690fb6224a44819fa81dd0010f806bce","output_index":1,"content_index":0,"delta":"city","logprobs":[],"obfuscation":"vJNJD3fm6lN3"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"city","item_id":"msg_0b69c2ef880a0e3b0169b319c7d8508197bd0cf822572a00b7","logprobs":[],"obfuscation":"6GO0d5V8ljqe","output_index":1,"sequence_number":11} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":12,"item_id":"msg_092dac14c3675a9901690fb6224a44819fa81dd0010f806bce","output_index":1,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"jHpf1NTinBnYc"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_0b69c2ef880a0e3b0169b319c7d8508197bd0cf822572a00b7","logprobs":[],"obfuscation":"g1gA6mt0LN6tG","output_index":1,"sequence_number":12} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":13,"item_id":"msg_092dac14c3675a9901690fb6224a44819fa81dd0010f806bce","output_index":1,"content_index":0,"delta":"Paris","logprobs":[],"obfuscation":"2CDW692CQMC"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Paris","item_id":"msg_0b69c2ef880a0e3b0169b319c7d8508197bd0cf822572a00b7","logprobs":[],"obfuscation":"nxKXFJQZzPi","output_index":1,"sequence_number":13} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":14,"item_id":"msg_092dac14c3675a9901690fb6224a44819fa81dd0010f806bce","output_index":1,"content_index":0,"delta":"\",\"","logprobs":[],"obfuscation":"Tu4CGFL4JfOj1"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\",\"","item_id":"msg_0b69c2ef880a0e3b0169b319c7d8508197bd0cf822572a00b7","logprobs":[],"obfuscation":"E1FeAGaCuPYb1","output_index":1,"sequence_number":14} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":15,"item_id":"msg_092dac14c3675a9901690fb6224a44819fa81dd0010f806bce","output_index":1,"content_index":0,"delta":"name","logprobs":[],"obfuscation":"RfV3CrSjJYW6"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"name","item_id":"msg_0b69c2ef880a0e3b0169b319c7d8508197bd0cf822572a00b7","logprobs":[],"obfuscation":"g1xnOvB6gmrs","output_index":1,"sequence_number":15} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":16,"item_id":"msg_092dac14c3675a9901690fb6224a44819fa81dd0010f806bce","output_index":1,"content_index":0,"delta":"\":\"","logprobs":[],"obfuscation":"aQM4HvXYeHWW4"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\":\"","item_id":"msg_0b69c2ef880a0e3b0169b319c7d8508197bd0cf822572a00b7","logprobs":[],"obfuscation":"NP9uQva5YZH7M","output_index":1,"sequence_number":16} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":17,"item_id":"msg_092dac14c3675a9901690fb6224a44819fa81dd0010f806bce","output_index":1,"content_index":0,"delta":"Alice","logprobs":[],"obfuscation":"TBbzJB26w73"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"Alice","item_id":"msg_0b69c2ef880a0e3b0169b319c7d8508197bd0cf822572a00b7","logprobs":[],"obfuscation":"vn9Zga6iGfY","output_index":1,"sequence_number":17} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":18,"item_id":"msg_092dac14c3675a9901690fb6224a44819fa81dd0010f806bce","output_index":1,"content_index":0,"delta":"\"}","logprobs":[],"obfuscation":"PIppQ9A3zqutnN"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"\"}","item_id":"msg_0b69c2ef880a0e3b0169b319c7d8508197bd0cf822572a00b7","logprobs":[],"obfuscation":"5E2Qz4X1iBBBAy","output_index":1,"sequence_number":18} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":19,"item_id":"msg_092dac14c3675a9901690fb6224a44819fa81dd0010f806bce","output_index":1,"content_index":0,"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_0b69c2ef880a0e3b0169b319c7d8508197bd0cf822572a00b7","logprobs":[],"output_index":1,"sequence_number":19,"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":20,"item_id":"msg_092dac14c3675a9901690fb6224a44819fa81dd0010f806bce","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_0b69c2ef880a0e3b0169b319c7d8508197bd0cf822572a00b7","output_index":1,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"},"sequence_number":20} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":21,"output_index":1,"item":{"id":"msg_092dac14c3675a9901690fb6224a44819fa81dd0010f806bce","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_0b69c2ef880a0e3b0169b319c7d8508197bd0cf822572a00b7","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}],"role":"assistant"},"output_index":1,"sequence_number":21} event: response.completed - data: {"type":"response.completed","sequence_number":22,"response":{"id":"resp_092dac14c3675a9901690fb61fee90819f92f6cd6a5129655b","object":"response","created_at":1762637343,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[{"id":"rs_092dac14c3675a9901690fb6206d14819f8e540e484376b314","type":"reasoning","summary":[]},{"id":"msg_092dac14c3675a9901690fb6224a44819fa81dd0010f806bce","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":80,"input_tokens_details":{"cached_tokens":0},"output_tokens":214,"output_tokens_details":{"reasoning_tokens":192},"total_tokens":294},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_0b69c2ef880a0e3b0169b319c3a3748197af3d57302463dd25","object":"response","created_at":1773345219,"status":"completed","background":false,"completed_at":1773345224,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[{"id":"rs_0b69c2ef880a0e3b0169b319c5ccf88197b8746b7e5dbaa616","type":"reasoning","summary":[]},{"id":"msg_0b69c2ef880a0e3b0169b319c7d8508197bd0cf822572a00b7","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"{\"age\":30,\"city\":\"Paris\",\"name\":\"Alice\"}"}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"json_schema","description":null,"name":"Person","schema":{"additionalProperties":false,"properties":{"age":{"description":"The person's age","type":"integer"},"city":{"description":"The city where the person lives","type":"string"},"name":{"description":"The person's name","type":"string"}},"required":["name","age","city"],"type":"object"},"strict":true},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":80,"input_tokens_details":{"cached_tokens":0},"output_tokens":245,"output_tokens_details":{"reasoning_tokens":192},"total_tokens":325},"user":null,"metadata":{}},"sequence_number":22} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 191.94075ms + duration: 382.20475ms diff --git a/providertests/testdata/TestOpenAIResponsesWithSummaryThinking/openai-gpt-5/thinking-streaming.yaml b/providertests/testdata/TestOpenAIResponsesWithSummaryThinking/openai-gpt-5/thinking-streaming.yaml index 5c9da36e56222fb8131673759b274102115f0612..86801a4fe10e12767a774f6a4039b3696cfff371 100644 --- a/providertests/testdata/TestOpenAIResponsesWithSummaryThinking/openai-gpt-5/thinking-streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesWithSummaryThinking/openai-gpt-5/thinking-streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,329 +25,362 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_00564a370f8761470168f239a3f90c819492eb21bd9b25c369","object":"response","created_at":1760704932,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_0ccfefab56fc1e6b0169b3197f938081919413a2656e175d4d","object":"response","created_at":1773345151,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_00564a370f8761470168f239a3f90c819492eb21bd9b25c369","object":"response","created_at":1760704932,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_0ccfefab56fc1e6b0169b3197f938081919413a2656e175d4d","object":"response","created_at":1773345151,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","type":"reasoning","encrypted_content":"gAAAAABo8jmkhn3gO_TMlHP7zrmqSQK6e2YwCe3YftZKY9Y9Am0N47nufS0EOe2c40Ie_ULjJ_I4NfuJMK2z4f-hl32bIn-6n_VLQtWy0JNg5qIiYspMtmsGPDKY0PqVj8rmYPrrH6UBrnmjOIwiBy-owTkt4-iRe7p39ooEi23aAg7edh9Cus926ptNWnCyRd5LBxp_pLeUBbjcnyZKbN8sHpHkYBXi-d3tKM1w5RKtWwNk1iYZeSpMnFeu-0Rh6ybotX-rx9IRZceu-zOBPpk0Be52EqZGZNZtB7mmsfX9VainX3PHsAviBrwTJH5dSBMpRft_Mw0YE-rVBCcCRk-aDqJbxDgxndIFci_GHsu-iPuwV-kyIGiIMT_m1n_DSnQAkdY5Ur9gLMu0x91oug9mePtyoUf5SEIw4HLUVRESBhxg1pZr-QR1dv-qTjjyaJnRVQFEFcaKxUxRbKUEoMP3T1sg72LBP2kh6t9GtwNjPD5S63TjWBGogzHfOlc2WmiMzG6B0kY9xFh7wIM9XqbRvggxnNK37ltLB57lL73RckCP_4A2rLypjDmeewnDF0xLsKjVh_KHMMMrcMro__2EDnCIMpyWn5PFlEqHoAn1XcL81NSSxqgc12LYfTy4AddcrLUyNY0TDoV7J40oprdDPmD7SdTPcg9j4NXyQcDwcs_rsa_mtY4XH--Qd7EdCCOETDAaHi8uzz1Ig1gHGE-2sivK_NCqIUjX9IifDBZ_EycsiRhvoqKK58aE6ZxAKMzuvQZSGid9avuGUzO_bSvuCLVfYMeLsR2twj__CX6yXLvkHy3WebfqsABEFbklAp1A3ZAn17FJ","summary":[]}} + data: {"type":"response.output_item.added","item":{"id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","type":"reasoning","encrypted_content":"gAAAAABpsxl_yV8A68uHGe_5NFByLGg0aQFfiez_MlTK4CqH7M7ggUstkIPpnHaMbPFVdcobD1ZZy2MYigBVV-8Zornn3d3wHBC5_vpFlyy1O1veu1vqKpwD2W7ndqH3J2hdiV_BspR6q3LrY7ioEU_-vs0lCcJxPkf8mtwdflfiB99foqC5MM8s53paHZSQF3XjLHPOkAfD6xstcU6nHMM00NGcD0iG-OcUZVD_92mPPaIZaehoZpSmD2_m4U3NPR7xoGCuHwvFcA4y7qhzjUvkCSb0onjtTTpmePp38fhPzxEOQwZblNmdcseRA5-mMCzm7j67K03Ieftkj7T6m_JFY86XOdeMn0SyXKq3U3v3tWyXuLdQTRRE_70kZTBLoK4cR2JG-TkPHTYg33o9VYn2ePv6hKFFCBu1DcSfGWz0MU-40W1CccKvHh_xoHlmdNxfWychcekNA42EWGYRH3R6LPCeFINWfmy7Hbej_q4lH135At4_VdE6gkTwZPWRgV6KnK_wcTgGmNkW6oY8qwFb4dmZYb4QgFH8_jPsacvIWHv7zIqJeJFs3bvJt-7ZcKOeBWmHpUUyWuGjxID36HH3LSwDPc2Scc1iJOfdcszxmCnLHIiu9Br-90u9n_BVvwxl88SQO50t4yu5P-9fX1JFeHyfHTu_c1n8xBqO1ZgKMu_Z-bhZ63LpsXClx20W4vDKgfUZRYa3HKhmEjttDY0YWeEAsUsgJyJGDqkcel_0AgRyUaSCx-xtP6mQOoNQA8H770UbZLtShb7otktAc7M5FUM3pTodAp_Xr2rdAD4OAIpqgvyPPvT8-ma2vrGUdQr_NIKj9Z58","summary":[]},"output_index":0,"sequence_number":2} event: response.reasoning_summary_part.added - data: {"type":"response.reasoning_summary_part.added","sequence_number":3,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"part":{"type":"summary_text","text":""}} + data: {"type":"response.reasoning_summary_part.added","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","output_index":0,"part":{"type":"summary_text","text":""},"sequence_number":3,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":4,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":"I","obfuscation":"7DRBaSVGkoaUAGo"} + data: {"type":"response.reasoning_summary_text.delta","delta":"**Retr","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"JLhrY7VjCa","output_index":0,"sequence_number":4,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":5,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" need","obfuscation":"1X0SoR7ISWG"} + data: {"type":"response.reasoning_summary_text.delta","delta":"ieving","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"yL7MJBzPLS","output_index":0,"sequence_number":5,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":6,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" to","obfuscation":"rthsd0jwgCyFz"} + data: {"type":"response.reasoning_summary_text.delta","delta":" weather","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"1x51m9v3","output_index":0,"sequence_number":6,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":7,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" remember","obfuscation":"ovHzzWZ"} + data: {"type":"response.reasoning_summary_text.delta","delta":" for","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"QpCpn7NqBSel","output_index":0,"sequence_number":7,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":8,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" that","obfuscation":"uFz4k3UMlvC"} + data: {"type":"response.reasoning_summary_text.delta","delta":" Florence","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"rT7kl4t","output_index":0,"sequence_number":8,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":9,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" the","obfuscation":"ltZlzfZ0yU6l"} + data: {"type":"response.reasoning_summary_text.delta","delta":"**\n\nI","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"1NS2I2dzdYE","output_index":0,"sequence_number":9,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":10,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" system","obfuscation":"8E6OkTKuV"} + data: {"type":"response.reasoning_summary_text.delta","delta":" need","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"TPv7B0VWpQv","output_index":0,"sequence_number":10,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":11,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" indicates","obfuscation":"gTEV0Q"} + data: {"type":"response.reasoning_summary_text.delta","delta":" to","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"wJComQ4Jy83KZ","output_index":0,"sequence_number":11,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":12,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" today's","obfuscation":"fpcWImre"} + data: {"type":"response.reasoning_summary_text.delta","delta":" answer","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"T8qudhXf0","output_index":0,"sequence_number":12,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":13,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" date","obfuscation":"XYRrFEZomsM"} + data: {"type":"response.reasoning_summary_text.delta","delta":" the","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"CWMwHKY1tKkn","output_index":0,"sequence_number":13,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":14,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" as","obfuscation":"O3uyLbWk7Rkyf"} + data: {"type":"response.reasoning_summary_text.delta","delta":" user's","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"oIFZWUHLO","output_index":0,"sequence_number":14,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":15,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" October","obfuscation":"vqWPqbvD"} + data: {"type":"response.reasoning_summary_text.delta","delta":" question","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"tkVSYFe","output_index":0,"sequence_number":15,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":16,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" 17","obfuscation":"nJ0JxYcuYNPaP"} + data: {"type":"response.reasoning_summary_text.delta","delta":" about","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"CuSb3FRYjo","output_index":0,"sequence_number":16,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":17,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":",","obfuscation":"zoEdGGnU4ew1zgL"} + data: {"type":"response.reasoning_summary_text.delta","delta":" the","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"ARF2Yn0lqVqp","output_index":0,"sequence_number":17,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":18,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" 202","obfuscation":"YHWc9ZA6FhfW"} + data: {"type":"response.reasoning_summary_text.delta","delta":" weather","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"zwLnG39h","output_index":0,"sequence_number":18,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":19,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":"5","obfuscation":"ocF7ItddWql3cK8"} + data: {"type":"response.reasoning_summary_text.delta","delta":" in","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"hMC1jIIrE9DOL","output_index":0,"sequence_number":19,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":20,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":".","obfuscation":"OFEXxPmTEfDageA"} + data: {"type":"response.reasoning_summary_text.delta","delta":" Florence","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"UV4Y779","output_index":0,"sequence_number":20,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":21,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" However","obfuscation":"AuUibTSe"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"nJPI2ay0cQ8oAti","output_index":0,"sequence_number":21,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":22,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":",","obfuscation":"djJeFeKA9erQeeF"} + data: {"type":"response.reasoning_summary_text.delta","delta":" Italy","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"xluMuLKz2m","output_index":0,"sequence_number":22,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":23,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" it","obfuscation":"oOgKLlZwbAhf2"} + data: {"type":"response.reasoning_summary_text.delta","delta":".","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"7FAynvzZ5lbb2ZM","output_index":0,"sequence_number":23,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":24,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" seems","obfuscation":"ppPNCSReg7"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"eRYpaTH3Tj7As2","output_index":0,"sequence_number":24,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":25,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" the","obfuscation":"N1D0YyAZN45u"} + data: {"type":"response.reasoning_summary_text.delta","delta":" have","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"8m99E2mWhGZ","output_index":0,"sequence_number":25,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":26,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" weather","obfuscation":"gy2PjbA7"} + data: {"type":"response.reasoning_summary_text.delta","delta":" a","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"oMOxdMVpC46Teo","output_index":0,"sequence_number":26,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":27,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" tool","obfuscation":"ahaAH7nhXKw"} + data: {"type":"response.reasoning_summary_text.delta","delta":" function","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"7IE6GGf","output_index":0,"sequence_number":27,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":28,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" will","obfuscation":"fELLVUIuNhf"} + data: {"type":"response.reasoning_summary_text.delta","delta":" to","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"PMTtxErF1zihS","output_index":0,"sequence_number":28,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":29,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" return","obfuscation":"WJCOBWkkN"} + data: {"type":"response.reasoning_summary_text.delta","delta":" get","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"oRp4yx8NnNGy","output_index":0,"sequence_number":29,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":30,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" the","obfuscation":"HLJ5Lrkofh1F"} + data: {"type":"response.reasoning_summary_text.delta","delta":" this","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"eaBAHqZPK95","output_index":0,"sequence_number":30,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":31,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" current","obfuscation":"zDz8Xlwy"} + data: {"type":"response.reasoning_summary_text.delta","delta":" information","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"V1ul","output_index":0,"sequence_number":31,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":32,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" weather","obfuscation":"9sgtkxk6"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"0NDN1u1puHqtWra","output_index":0,"sequence_number":32,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":33,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" for","obfuscation":"perCAhVfTp77"} + data: {"type":"response.reasoning_summary_text.delta","delta":" specifically","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"X7P","output_index":0,"sequence_number":33,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":34,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" that","obfuscation":"IKnXSFx60T2"} + data: {"type":"response.reasoning_summary_text.delta","delta":" the","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"n1mfMguZs43a","output_index":0,"sequence_number":34,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":35,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" date","obfuscation":"wXTCiZMX0Yo"} + data: {"type":"response.reasoning_summary_text.delta","delta":" functions","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"JHwovh","output_index":0,"sequence_number":35,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":36,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":",","obfuscation":"OB0ZYz037xsGeqj"} + data: {"type":"response.reasoning_summary_text.delta","delta":".weather","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"56wItrr5","output_index":0,"sequence_number":36,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":37,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" rather","obfuscation":"lwAfwyfW2"} + data: {"type":"response.reasoning_summary_text.delta","delta":" tool","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"aNjUMkSuY0M","output_index":0,"sequence_number":37,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":38,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" than","obfuscation":"jtqrK627sv2"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"ms53f67wkgAA5o0","output_index":0,"sequence_number":38,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":39,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" needing","obfuscation":"4LIaWi4q"} + data: {"type":"response.reasoning_summary_text.delta","delta":" which","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"3owL62Hpzz","output_index":0,"sequence_number":39,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":40,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" to","obfuscation":"LjZd0BxFmKd5P"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I'll","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"tQ72LUFT26R","output_index":0,"sequence_number":40,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":41,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" compute","obfuscation":"ZY6FmwGa"} + data: {"type":"response.reasoning_summary_text.delta","delta":" use","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"kaMJcZmjRFJn","output_index":0,"sequence_number":41,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":42,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" anything","obfuscation":"GuLZ2Jd"} + data: {"type":"response.reasoning_summary_text.delta","delta":" with","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"6hJzKRLRlVH","output_index":0,"sequence_number":42,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":43,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" myself","obfuscation":"xqbdXPCfq"} + data: {"type":"response.reasoning_summary_text.delta","delta":" the","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"dknQbdLtftar","output_index":0,"sequence_number":43,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":44,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":".","obfuscation":"QgpXIz4jnu1hii2"} + data: {"type":"response.reasoning_summary_text.delta","delta":" location","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"VKlRK6S","output_index":0,"sequence_number":44,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":45,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" So","obfuscation":"wtUgYnlNPIOWc"} + data: {"type":"response.reasoning_summary_text.delta","delta":" \"","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"bbo5lNlrV18T0q","output_index":0,"sequence_number":45,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":46,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":",","obfuscation":"tinbfhauzusl6jC"} + data: {"type":"response.reasoning_summary_text.delta","delta":"Flor","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"pNWZV4XrFets","output_index":0,"sequence_number":46,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":47,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" I","obfuscation":"Pk3zXd2ujZwFvW"} + data: {"type":"response.reasoning_summary_text.delta","delta":"ence","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"K5aUlzprGjDI","output_index":0,"sequence_number":47,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":48,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":"’ll","obfuscation":"x4BYAA4LKTuDo"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"LZp4hD7kujTFY4t","output_index":0,"sequence_number":48,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":49,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" just","obfuscation":"BIoUZZ3HSrt"} + data: {"type":"response.reasoning_summary_text.delta","delta":" Italy","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"xSwBKWgqzY","output_index":0,"sequence_number":49,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":50,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" go","obfuscation":"K7O5Owrq7A9lp"} + data: {"type":"response.reasoning_summary_text.delta","delta":".\"","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"xkneODnoS1wH2R","output_index":0,"sequence_number":50,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":51,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" ahead","obfuscation":"is6hy5rFhR"} + data: {"type":"response.reasoning_summary_text.delta","delta":" Since","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"0MTVIVsd7w","output_index":0,"sequence_number":51,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":52,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" and","obfuscation":"huqqJhQunTsB"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I'm","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"7SfpNkM9DcQb","output_index":0,"sequence_number":52,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":53,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" call","obfuscation":"Bycx7BVhk4X"} + data: {"type":"response.reasoning_summary_text.delta","delta":" likely","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"Oj9lHbOT9","output_index":0,"sequence_number":53,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":54,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" the","obfuscation":"2iNIq7zihEyp"} + data: {"type":"response.reasoning_summary_text.delta","delta":" only","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"TOoUaB8ev8F","output_index":0,"sequence_number":54,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":55,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" tool","obfuscation":"z3ZmQv1NXDB"} + data: {"type":"response.reasoning_summary_text.delta","delta":" needing","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"VUwVOoaf","output_index":0,"sequence_number":55,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":56,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" to","obfuscation":"TKdYfVpKhKutU"} + data: {"type":"response.reasoning_summary_text.delta","delta":" one","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"8krdWEKasl3B","output_index":0,"sequence_number":56,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":57,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" get","obfuscation":"bo91thYZp7Es"} + data: {"type":"response.reasoning_summary_text.delta","delta":" tool","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"2ZQMShZTIfu","output_index":0,"sequence_number":57,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":58,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" the","obfuscation":"BW2g8qL8CH85"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"X5BfG8Ew3DWVBPE","output_index":0,"sequence_number":58,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":59,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" accurate","obfuscation":"9lc5Jgv"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"HP5e0CeeKQxPFI","output_index":0,"sequence_number":59,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":60,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" weather","obfuscation":"sInoioSz"} + data: {"type":"response.reasoning_summary_text.delta","delta":" won","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"z8nNtikoxddi","output_index":0,"sequence_number":60,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":61,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" information","obfuscation":"eDxt"} + data: {"type":"response.reasoning_summary_text.delta","delta":"’t","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"y4CgXO1xaenbGD","output_index":0,"sequence_number":61,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":62,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":".","obfuscation":"JYedg23ufi7gUtZ"} + data: {"type":"response.reasoning_summary_text.delta","delta":" bother","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"cwFul2HIJ","output_index":0,"sequence_number":62,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":63,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" That","obfuscation":"g1t1lfgXbYY"} + data: {"type":"response.reasoning_summary_text.delta","delta":" with","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"xhTRjROrm9X","output_index":0,"sequence_number":63,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":64,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" way","obfuscation":"Ep5o4rLfxcIh"} + data: {"type":"response.reasoning_summary_text.delta","delta":" any","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"jhbfUMo78m6H","output_index":0,"sequence_number":64,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":65,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":",","obfuscation":"TFbvXNdkkPBLVr1"} + data: {"type":"response.reasoning_summary_text.delta","delta":" parallel","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"syKklKk","output_index":0,"sequence_number":65,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":66,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" I","obfuscation":"LcYUPQWtuYhWe0"} + data: {"type":"response.reasoning_summary_text.delta","delta":" options","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"mTwwcjw3","output_index":0,"sequence_number":66,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":67,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" ensure","obfuscation":"cyf4QhE27"} + data: {"type":"response.reasoning_summary_text.delta","delta":".","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"XHV0n7jVkAVnb4x","output_index":0,"sequence_number":67,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":68,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" I","obfuscation":"pn0OngyYqOV7mp"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"koa83qZ8lZNIa5","output_index":0,"sequence_number":68,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":69,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" provide","obfuscation":"A92JWktU"} + data: {"type":"response.reasoning_summary_text.delta","delta":"’ll","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"1gSZcIZjKtbjD","output_index":0,"sequence_number":69,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":70,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" the","obfuscation":"nXnGAWZBV0kV"} + data: {"type":"response.reasoning_summary_text.delta","delta":" ensure","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"8UPXNRPiU","output_index":0,"sequence_number":70,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":71,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" user","obfuscation":"LIgDJRJ41DB"} + data: {"type":"response.reasoning_summary_text.delta","delta":" to","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"M6m19pwElusYf","output_index":0,"sequence_number":71,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":72,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" with","obfuscation":"yswEW2OEdl4"} + data: {"type":"response.reasoning_summary_text.delta","delta":" keep","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"ZUyINE3oaOt","output_index":0,"sequence_number":72,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":73,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" the","obfuscation":"X9UZPFhnozCc"} + data: {"type":"response.reasoning_summary_text.delta","delta":" my","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"B2ALgOmzxsXb4","output_index":0,"sequence_number":73,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":74,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" most","obfuscation":"FF37xAFgTkH"} + data: {"type":"response.reasoning_summary_text.delta","delta":" output","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"Tt0O5pnpo","output_index":0,"sequence_number":74,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":75,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" reliable","obfuscation":"lZjxdzk"} + data: {"type":"response.reasoning_summary_text.delta","delta":" concise","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"MqWwpsMM","output_index":0,"sequence_number":75,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":76,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" data","obfuscation":"DAev8Lq7rfQ"} + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"gnnEMhSMqeZVoh8","output_index":0,"sequence_number":76,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":77,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":"!","obfuscation":"HSi5SufVKPmqOiw"} + data: {"type":"response.reasoning_summary_text.delta","delta":" as","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"ZBhBhynziS0Zo","output_index":0,"sequence_number":77,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":78,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" Let","obfuscation":"TXlmZbtPAXTO"} + data: {"type":"response.reasoning_summary_text.delta","delta":" I","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"1etO5mQAf7aTpJ","output_index":0,"sequence_number":78,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":79,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":"’s","obfuscation":"ZLJc4VkP0brGTz"} + data: {"type":"response.reasoning_summary_text.delta","delta":" follow","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"7s52MOS4z","output_index":0,"sequence_number":79,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":80,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" move","obfuscation":"RVe9znybaPh"} + data: {"type":"response.reasoning_summary_text.delta","delta":" the","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"ZAqfLTVQYP5F","output_index":0,"sequence_number":80,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":81,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" forward","obfuscation":"yrlGbQ9b"} + data: {"type":"response.reasoning_summary_text.delta","delta":" instructions","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"3Qz","output_index":0,"sequence_number":81,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":82,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" with","obfuscation":"4TztdxQj7As"} + data: {"type":"response.reasoning_summary_text.delta","delta":" on","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"pPyxTk3kJVImH","output_index":0,"sequence_number":82,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":83,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" that","obfuscation":"6bxCZN3vOKW"} + data: {"type":"response.reasoning_summary_text.delta","delta":" formatting","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"NTt03","output_index":0,"sequence_number":83,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":84,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":" step","obfuscation":"XjgzqaaY7sM"} + data: {"type":"response.reasoning_summary_text.delta","delta":".","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"gce68jsjXa6alX7","output_index":0,"sequence_number":84,"summary_index":0} event: response.reasoning_summary_text.delta - data: {"type":"response.reasoning_summary_text.delta","sequence_number":85,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"delta":".","obfuscation":"qm9kF7pEPtNE806"} + data: {"type":"response.reasoning_summary_text.delta","delta":" Now","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"u7Pj8GDDHuef","output_index":0,"sequence_number":85,"summary_index":0} + + event: response.reasoning_summary_text.delta + data: {"type":"response.reasoning_summary_text.delta","delta":",","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"jnWnuN0d093p6vE","output_index":0,"sequence_number":86,"summary_index":0} + + event: response.reasoning_summary_text.delta + data: {"type":"response.reasoning_summary_text.delta","delta":" let","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"e1KUl7s9HjUy","output_index":0,"sequence_number":87,"summary_index":0} + + event: response.reasoning_summary_text.delta + data: {"type":"response.reasoning_summary_text.delta","delta":"’s","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"ke82DH6jHXRZfL","output_index":0,"sequence_number":88,"summary_index":0} + + event: response.reasoning_summary_text.delta + data: {"type":"response.reasoning_summary_text.delta","delta":" go","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"24Wnp2RV0vwNJ","output_index":0,"sequence_number":89,"summary_index":0} + + event: response.reasoning_summary_text.delta + data: {"type":"response.reasoning_summary_text.delta","delta":" ahead","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"h9lT050NBM","output_index":0,"sequence_number":90,"summary_index":0} + + event: response.reasoning_summary_text.delta + data: {"type":"response.reasoning_summary_text.delta","delta":" and","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"K5SZwaB5n8n4","output_index":0,"sequence_number":91,"summary_index":0} + + event: response.reasoning_summary_text.delta + data: {"type":"response.reasoning_summary_text.delta","delta":" make","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"Zmv2UCFNuG0","output_index":0,"sequence_number":92,"summary_index":0} + + event: response.reasoning_summary_text.delta + data: {"type":"response.reasoning_summary_text.delta","delta":" that","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"M8jdLQzvJG9","output_index":0,"sequence_number":93,"summary_index":0} + + event: response.reasoning_summary_text.delta + data: {"type":"response.reasoning_summary_text.delta","delta":" tool","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"z8UPCH74a9m","output_index":0,"sequence_number":94,"summary_index":0} + + event: response.reasoning_summary_text.delta + data: {"type":"response.reasoning_summary_text.delta","delta":" call","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"F9HFzqrEFPf","output_index":0,"sequence_number":95,"summary_index":0} + + event: response.reasoning_summary_text.delta + data: {"type":"response.reasoning_summary_text.delta","delta":"!","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","obfuscation":"bRQC7fQshfRp1Pw","output_index":0,"sequence_number":96,"summary_index":0} event: response.reasoning_summary_text.done - data: {"type":"response.reasoning_summary_text.done","sequence_number":86,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"text":"I need to remember that the system indicates today's date as October 17, 2025. However, it seems the weather tool will return the current weather for that date, rather than needing to compute anything myself. So, I’ll just go ahead and call the tool to get the accurate weather information. That way, I ensure I provide the user with the most reliable data! Let’s move forward with that step."} + data: {"type":"response.reasoning_summary_text.done","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","output_index":0,"sequence_number":97,"summary_index":0,"text":"**Retrieving weather for Florence**\n\nI need to answer the user's question about the weather in Florence, Italy. I have a function to get this information, specifically the functions.weather tool, which I'll use with the location \"Florence, Italy.\" Since I'm likely only needing one tool, I won’t bother with any parallel options. I’ll ensure to keep my output concise, as I follow the instructions on formatting. Now, let’s go ahead and make that tool call!"} event: response.reasoning_summary_part.done - data: {"type":"response.reasoning_summary_part.done","sequence_number":87,"item_id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","output_index":0,"summary_index":0,"part":{"type":"summary_text","text":"I need to remember that the system indicates today's date as October 17, 2025. However, it seems the weather tool will return the current weather for that date, rather than needing to compute anything myself. So, I’ll just go ahead and call the tool to get the accurate weather information. That way, I ensure I provide the user with the most reliable data! Let’s move forward with that step."}} + data: {"type":"response.reasoning_summary_part.done","item_id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","output_index":0,"part":{"type":"summary_text","text":"**Retrieving weather for Florence**\n\nI need to answer the user's question about the weather in Florence, Italy. I have a function to get this information, specifically the functions.weather tool, which I'll use with the location \"Florence, Italy.\" Since I'm likely only needing one tool, I won’t bother with any parallel options. I’ll ensure to keep my output concise, as I follow the instructions on formatting. Now, let’s go ahead and make that tool call!"},"sequence_number":98,"summary_index":0} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":88,"output_index":0,"item":{"id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","type":"reasoning","encrypted_content":"gAAAAABo8jmqx_GyKbRHioPoEL-6klOC5pRoqBX4gYCToNEaQc9LNoM1o07M4sIhkTEvihiIOoesa-F7MxiNod6LQde6QfWApwtdzIjNnK1zEkWI90NQACdYu6xLrT7Rpf5ejTGLlLjIFfkIn0o6RdE1e1zu_Eu8j-u7CU1QEAvcST9rK8LpSCfn-QzK4jJ0WxzUpom7G2AHv1G948BUBFgdDAianK4XURVE-kU0Aof0fAOOYzx1L7PPj9Oefq5sWcpmgReb3xjMbjnMcHu951YgQ25tiku8iarv8Iy4U02TAHzuT5kSuBWwbuKiyOc0kYSkMNJYryEDaA2ShOyDILrCCSCXWGiUq_h7FoF5vwX3drvI1Kb7A4FYBtZQyaOLjjIFVA6_0ZJZ4aqYhEn6_aq7gIjo0_A70hKuxFtTSBz5KK1sC3NANhNjVNIRZByg1WOEY6izDlcdUtyZNbQdutPV_Ow5wv2AI8TiBrFnk5RdZ18KSjCyJiTbVoxATGSwlO4246vfZJxajW40RjJKMPcEmZZJD0TEGrFe1xWIJ9pCMFXbR5bEUznw9uGHMbHlTf3GjRlcp31pOPA7YyUdP-6Zo-j9bbs60mW16Bc7SfkzJ1mzcOlkTwh0g-FTX7Ihi-6148aO1bE9FBDsR8TOZCMwXDmid2vWWdvnCW-Ez5EWPE_rKsTOboPnXM_yQZyPcwIC8a6Zo7YWi-xu8bjlguWCHEm9FcKL7m0IfmVyfW5FzhrOEycEJirwGxB5tjEvaTIYSx_mLjdZoGs8qxoRji4_V4-prgKruqtNSTTwRRdR7taIReeLQElJPNrofBNdO1PO6nx2nUfdHsD0e9RdiKtoIptc4niNl6-cfut9rBMNhtDzs0mb5oOBQfCqnccu7tgm7CUdPi8uiYvYr4u6ZA_Q6mdd-dFswhVHdMQAhQ6UtRkvS2O3XX-6C7R8-xH7IsgrBaiNB--8h89qQfbaptnHj5dv4mRyrnD1SviGwAldHZtSttZTxanxQXt-GrvL7Tk20QF6bcant0xvlZcLWJEVoVrUYgSjlCDqo_ipXIoJ1-_O6zYo-kiWHVJkEA4Se9bO7jfjXs9tsbM6ByZgNoyShqPcPqLunrGkfaEwQHl6s91wKPzTvJz5tUisXfJWDqU38Xch4tha2yTN-NfeyLsp9voLfuRHjW-Cge3I_cPR49WgthgtsmWZLJ4HKQvYruU48Asydnw5izlU9pZJo1eaTK3adjSTcLZtUGHQcCGN3455gbFuJhSH38JllGxR4yzGAxyzWtbV0mYvWRaVaSrJY_qXpc0mAzwzGoMnPOrQWtvuwqPwEFJz5bNwe4aGccePtdLaM18YkOFI-kPqDjiC8bpaxNQm_Pq2fz2RRvsySwL-N3pg32grZMTU6CcWednX-fG4SS0_-OWNPwm815zV8AcZcAlOPtIeiLBkV6xZ2D2BrQbTMfIg9zMHVS43U8e_Okicf9JhGR3ej1UrtiQ6fUsm61xsI6GWUL1z8H3e6hHmZJdQm3zx8hFgpjRhsjinndGOmarCYscraxlGAPx7XFx1dCp-_0gHjKuFp4cmbXXJm4dKWPrcTvhaMGRHf2YGTADM62oQdZvoT-PGb9e2f4wkaMZZbKv1kZsAGcbjAPGB6PNffM3rLCoJ4qkJJJtBVWP2oZLWCtSKeXpii5vQe4_D-ewtS2Dyen0USCPjPLaLVC46E5j9EmmAFsWwl0EFPziFN5tMWqiJtNQrpcWs10jlPse9FhmEeUVzSuGtmzzfdcysPsduMTlvF1BSuhtiWVYbrnJyL7hyWWgBKcBTYJokC4k2HNJjQBI1O-LKyP_yznnXPdzIFgzC3X3CmegTw1uxBFhQs2UpN-b02xgmLerFOuw-Xr1BXvLlVEALnT44yqJYgZ6eTBiMiCnXwqwHWWdoCzll_sxhuwqZDtqj_V5C9oroqNhUnfKNo2Y4ASp4fqh6AfNhZkiBSbOh8t7sjv0QMYCv84bTIt1bVaR5LMc2pJ1t9kHKTD72ey-hQZIfIpclCsfoqp9RWDLbi6-QPmmMlLzVZnx4sCrMl3W8Se0lToXc5xFwKm9sC-kaQIfhXaymGgSc4ra53yy9XBoDMYUZQhqDJwTy7QHCmXFKt3JuxsF0yqf0T1IA1vZ68DPtczKxRlBcUgXKllXH9DbZVvyoivKgKruV-QaKT5Pl4dq82JhJUAKuYMb2trxXfdAVflBNYt8-WnDjk8FAMZ8k5EDddssL9E5M_KDEN8X1HpzEwiE7KPeYXo4E6kgCqwXpIiSJ6lc=","summary":[{"type":"summary_text","text":"I need to remember that the system indicates today's date as October 17, 2025. However, it seems the weather tool will return the current weather for that date, rather than needing to compute anything myself. So, I’ll just go ahead and call the tool to get the accurate weather information. That way, I ensure I provide the user with the most reliable data! Let’s move forward with that step."}]}} + data: {"type":"response.output_item.done","item":{"id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","type":"reasoning","encrypted_content":"gAAAAABpsxmE8pxiNFPjRPq1RQB2wOdV9T5T-6EWRm7CxY0TSltXQ_Kg4gk3QfVV4e5peyuvMw2PLKJJEdD3Z-KsrEKJgc50f4fcjz9-ZvdtKATRA02OtV13_HxTB2praT6ihLBViaptWEe_twb-8i76R2es7M5Mtud0tDSCiEkBnpOdZC87kwrDoa8AlDw20gFZ_uQcO7PG-t0f-hdYoKqDW8yjoh3tshsARvq0o9wuLEbGlgSF5JGKdsaZeipjQEyYzmtB7zLJVepCj57gwpRiX74fepCbIrHtvGZzSD5S9NyYMrCCZSKsTdhiSTx6kSoQyGj1VcVKTKQ73U1zouVHz4PN2oc9iXgv9Zb1CaWuds0bWp_S6hcq82ZAcDAD7KtcfTIwdGF_Pfh89V8T62Ui7_SndLIScNJtdUVO-TyrW9KA3HXIQG-JwB2NVg8KSWF9gnoti0PAxaQbStNRz0nOwrSYNVa87JLlubucgr_cv3a6zczsb4CUEy7xaQuzq6xEEYLf-MKhzGwyEGDeZ8AmRnf5Az4tl0KhT5_niltGpIrUwlagskQgmGPpXZd8MfRm5o7r50T95KVPGmB5ekjE5cUzcUkPUbyRYuA9vFaJB-fNZBSY3CVJUwzfrY82m-K19pH-1HlbNJCWKAqp-4osIANkphl1vMrJ4ldWOsUM0j8mqZqgUFIrXhUYQqSlPqqLH4XfG6loroiq9JsyAxEEnVAvxFuEX-sK4i1dkn7BiV7Ko55okFGEWznC202nRO0wYM1FRhkcA2IIytVpDI4TVIemXJr03V6O8ahb2kCnyKSMNJPsanMW0knQl4paRndlWdRgUCVSK1Ezm9B4GK4op1kfOciaAGNQ2pnhtu-XWgw9vlgHoAPWrZ1XZ1-0Z4TcLQdeL2e_xWQiLbABMqEUGmtVHBh6yMHSDBn-GkZWBKDZ2YOE8wYwuodKlzJpHcINPUOhVCvwfC-hjs99QuHSVRIZkx8wp3I7AEzjIz3Vu6wsGwH6O3h6QKvs2JLNat3Fcrzx39zArbgfy9CupP1mvaPOP--dZDXD7tYIerLWkVudxqtibP-kRMIuAFmzfClLOqr_d53eRU_NGxTKgOLcHrfEPIYcAtjWTI0YFALxKlU_YaL-0FIToBqKmZ5lAe5BYpjjXR-tra0FdyNERqYIMRcqkwZIepMI2PdYCWofZEKr8x09cDkDHZJc-VBxdJStSlXQV0delM7DGc_4Vdm7r-aohKjNiOxSEuu6vOEw7TOC-jZmgAQ8kPXOimnHbA3adwG5-N3-7tjQz7f9AYJ-V3Kwr5aAChvEpZXOSTG4UrrtFywBC3suxwMhFyhjZxk0cKjreH8o4EPrqqRM9YatMd0tN_pN6Ew24COUvWoVaTjVAXvXyt_ouqb-saIVGtGsHVK5RapOq0tKN3AyR6YveksZ4iAGThs57GDJzoOEEyiwzV7wRhmzm0MwnsOK3wga5JaD9kQv4wFa8eCMYHuB2c5gZXKTWtNmBI_uoMpO62JdwRmX2fUx5xFXJ6hSOiUd7k2TKTErzvsK7CefeYMV74cUcZpKspPphe-v4Htoa3X5fVVhh5rziXXGk7lrGsA2pd5IacjTNcFhBCFcXgKWd1mECac60mEKTZwZVaIZ27n6CN42c5oJbC9GtUZLgw3MX9HaGT7QonjpPC7Dzl5ZZ9gEuK1zAcv-v3d6HR4tRg3GdBKbmf3TUvjarjkp_N4L2mNyqW0whudBBSKfKvCGxf4CQRWLcLOBCxd1WwjK375Pgt27ABo=","summary":[{"type":"summary_text","text":"**Retrieving weather for Florence**\n\nI need to answer the user's question about the weather in Florence, Italy. I have a function to get this information, specifically the functions.weather tool, which I'll use with the location \"Florence, Italy.\" Since I'm likely only needing one tool, I won’t bother with any parallel options. I’ll ensure to keep my output concise, as I follow the instructions on formatting. Now, let’s go ahead and make that tool call!"}]},"output_index":0,"sequence_number":99} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":89,"output_index":1,"item":{"id":"fc_00564a370f8761470168f239aa85508194bd45f6a7c8b4c721","type":"function_call","status":"in_progress","arguments":"","call_id":"call_8feZLXZajk3zUG5EkKIkQlwn","name":"weather"}} + data: {"type":"response.output_item.added","item":{"id":"fc_0ccfefab56fc1e6b0169b31984a6208191ae1afff5e00f3a41","type":"function_call","status":"in_progress","arguments":"","call_id":"call_vTqMwYdzvdmoeNyNdQOqI1uY","name":"weather"},"output_index":1,"sequence_number":100} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":90,"item_id":"fc_00564a370f8761470168f239aa85508194bd45f6a7c8b4c721","output_index":1,"delta":"{\"","obfuscation":"qPH2UN5JMBy1tg"} + data: {"type":"response.function_call_arguments.delta","delta":"{\"","item_id":"fc_0ccfefab56fc1e6b0169b31984a6208191ae1afff5e00f3a41","obfuscation":"XBWHQoTwNXeUNP","output_index":1,"sequence_number":101} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":91,"item_id":"fc_00564a370f8761470168f239aa85508194bd45f6a7c8b4c721","output_index":1,"delta":"location","obfuscation":"8o2cDMaX"} + data: {"type":"response.function_call_arguments.delta","delta":"location","item_id":"fc_0ccfefab56fc1e6b0169b31984a6208191ae1afff5e00f3a41","obfuscation":"gNjVnV7D","output_index":1,"sequence_number":102} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":92,"item_id":"fc_00564a370f8761470168f239aa85508194bd45f6a7c8b4c721","output_index":1,"delta":"\":\"","obfuscation":"atQHlPUQX3i0x"} + data: {"type":"response.function_call_arguments.delta","delta":"\":\"","item_id":"fc_0ccfefab56fc1e6b0169b31984a6208191ae1afff5e00f3a41","obfuscation":"buO4SQRRAJVIn","output_index":1,"sequence_number":103} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":93,"item_id":"fc_00564a370f8761470168f239aa85508194bd45f6a7c8b4c721","output_index":1,"delta":"Flor","obfuscation":"FyOWJCAJ812w"} + data: {"type":"response.function_call_arguments.delta","delta":"Flor","item_id":"fc_0ccfefab56fc1e6b0169b31984a6208191ae1afff5e00f3a41","obfuscation":"R112wF10E1hA","output_index":1,"sequence_number":104} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":94,"item_id":"fc_00564a370f8761470168f239aa85508194bd45f6a7c8b4c721","output_index":1,"delta":"ence","obfuscation":"LPVUL71dNKkj"} + data: {"type":"response.function_call_arguments.delta","delta":"ence","item_id":"fc_0ccfefab56fc1e6b0169b31984a6208191ae1afff5e00f3a41","obfuscation":"JxMI48h5iX5W","output_index":1,"sequence_number":105} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":95,"item_id":"fc_00564a370f8761470168f239aa85508194bd45f6a7c8b4c721","output_index":1,"delta":",","obfuscation":"k3kZKdaocYlen8a"} + data: {"type":"response.function_call_arguments.delta","delta":",","item_id":"fc_0ccfefab56fc1e6b0169b31984a6208191ae1afff5e00f3a41","obfuscation":"OyvAFdEIr6Gs1tL","output_index":1,"sequence_number":106} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":96,"item_id":"fc_00564a370f8761470168f239aa85508194bd45f6a7c8b4c721","output_index":1,"delta":" Italy","obfuscation":"gD1hqivGgC"} + data: {"type":"response.function_call_arguments.delta","delta":" Italy","item_id":"fc_0ccfefab56fc1e6b0169b31984a6208191ae1afff5e00f3a41","obfuscation":"WeIDEOnrsy","output_index":1,"sequence_number":107} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":97,"item_id":"fc_00564a370f8761470168f239aa85508194bd45f6a7c8b4c721","output_index":1,"delta":"\"}","obfuscation":"HYSCdXOWhvBzKy"} + data: {"type":"response.function_call_arguments.delta","delta":"\"}","item_id":"fc_0ccfefab56fc1e6b0169b31984a6208191ae1afff5e00f3a41","obfuscation":"sc6E7805HejQEa","output_index":1,"sequence_number":108} event: response.function_call_arguments.done - data: {"type":"response.function_call_arguments.done","sequence_number":98,"item_id":"fc_00564a370f8761470168f239aa85508194bd45f6a7c8b4c721","output_index":1,"arguments":"{\"location\":\"Florence, Italy\"}"} + data: {"type":"response.function_call_arguments.done","arguments":"{\"location\":\"Florence, Italy\"}","item_id":"fc_0ccfefab56fc1e6b0169b31984a6208191ae1afff5e00f3a41","output_index":1,"sequence_number":109} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":99,"output_index":1,"item":{"id":"fc_00564a370f8761470168f239aa85508194bd45f6a7c8b4c721","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_8feZLXZajk3zUG5EkKIkQlwn","name":"weather"}} + data: {"type":"response.output_item.done","item":{"id":"fc_0ccfefab56fc1e6b0169b31984a6208191ae1afff5e00f3a41","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_vTqMwYdzvdmoeNyNdQOqI1uY","name":"weather"},"output_index":1,"sequence_number":110} event: response.completed - data: {"type":"response.completed","sequence_number":100,"response":{"id":"resp_00564a370f8761470168f239a3f90c819492eb21bd9b25c369","object":"response","created_at":1760704932,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[{"id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","type":"reasoning","encrypted_content":"gAAAAABo8jmq8ZgK6_R2_mBtj66EaDbh24YJ4IzeZ8ry7g2vxl6uWYZxXWaiq0s0n6ynJc10mtSY1K2nLDwlcpxs3tahcZMYiwh879zVkpQfoH4ze1LFLRQ5MYJ7R5qvj8vLVXz7rFqKbCXWSXKpbCnqyRiURV8SG9f9rRLZ30IYDJHJPsSWJVD4e-ROkag4B7TnYTsPDfzga_eKKL7yi2AmVLpetADp7l_MBaLpUeqmOUUWp5ieyLZ-b8Cu1AovW2nnh79yNw5RiBuUYZeGyIRkjbUuTEohG8t2CIL4S2cUy60kia557RDbSZ0wscjY0M6ZkPwWY1kf08OSvcbKypyDOmwZdhYH_ABgTXFUDCUvSoCGAg9OGS4kqOOePY3wgmhPBK2Ufj3a1phYY7X53Rxb90CR4oueX5JI-HjhwV6Vzx1cia9XeGCTbPuyOAcd9k62z8bCKGPd9OAxLzn63u-o_NG1GvRIFtdOqOEpFo6hpfHR81nUzporv-Tfv2SXVlo8bKSWjOrHuYE0usqRXYB3UmZxEdXHcafOVDOUjJ49JrL3uutVQWXGCQnMqhjiefwzBvIa4BeelANG6GkfNNeGyD2mf0hn_5cUd6v__umQmBXIx1NkbG2iFwtbpaOD-BSU9DMOHBJ4PqUGDT6A4geVUrXBb6NwE11JHXHPBVZMVvc2pDERJciTxNTbNpqIbHPKkKmfcXBoxGCn6LMZVZaVygaGmlkkhAf5NfS4O5hPZMFyEDA0-PYzEEZ3IRA7V1rvIgNI5zv0wC2TyENiUIHsZcOwE7mA0Wnn_uapgzC8gI-D400m-3bi2JiXij8WvEL-_t09K5O7CWcewE5yClFVHSnSrWjyYY_U87aNX4gr4zdC2PP_vRKwE9DKqUXTgQpVQ73RMuXzbn37PEpZ0rappA-5cP2mjUUrhEiXl9_Ci3CbZ6Vt7qbCGrfAVwJ_Q2m7X2M1Rbbw2--JX2FRaxpJ0Mr90StSQI8cZ1H75VZXDZoUkmQv5BT2Ek17d9D-IF258u0PHykXiP7FAi4-HMsKToO3GPHqmuUvs7TAYvNXLBCRwOzP_Fv222dCbOnj7G3NNCSTuWwanayL1j2s0wYSqee5NIBoZHv2lhQzxWyTeNT1dw5eeuaLGgaBMFfgUjmh5vOxid_ablfG1hfp_a6sZ67uwA-_V8bUA8Hir1Binez5jjEXDLWXod3cjjx48kC2CiapP47L8qaeN2XPv4EcBO-iqdenpLKTQvtgUezMP2uuuXnXR6nIhrMJH_NxGyw7dcUyIq2j-WKBDHBkwMFuG9Pzpmbgx6jFgDZF_JDjnSwWSxp-sOr3Ofhmp9Ul8uS6hZtNeaOr4uKV80XhxjDyUiZOoNgOjdzD5sJFLU_xK3Chg3A61ujkSSkU-8gWkhGEbYF_6HkshTs3M-MmTUZ3FsIjYaW5EEJLcjN8Fth82FOK-28Oactl9gl79wMMXu3ORDbySgC10VVR_TFlxYX5moKLUDh5EheNBEAHG8PscCXxj1hro3uxXgJE3S_sYm9qV3kCU5XusY6Ql9M7CimpDvvUR2yf67ijxvh5gsVdxcAfUG9su6qLoXMUshs7MYP4sraKQ0Y4Awor6GrR23R_eHpLpzdlZ-eTNleoyuwZ_KmzgmHfr1Q4K4TV6GmSqhhm16bmjbCaeUmWagy7Ng0KL9JC1zeMgag1jh5ik4kCj0PB4_Z4fDFaM8cg2jScxIFo7CAAzYS2xBFmxihuBa1iW_P7E3gQjVwZyF7Qkjyhdb5HxsIXysmHOEc3ZBNK-cwWJRHYAHqWuIJ6z2iODE-4VBy29jHfieta0FRUeeWHT5mx5UQSB87sUJpqX1U_bIi315ZmVKwChSdKxBluLHkchpYt34f5eKtFpujzwMGQmSx1_ETIVCEUJG-MluiA2rZxQvtetLsVCUGXKf5zOgduI52skT_gxwGfG5QWYYgVxHiLICgTixgkDc6hQ9AJpw3YNZBmGXNMQPof9m5cXzj9Zni2_1SOKvez4RUujpD8g2cpn3O7t7qzK_-d-u3ZMNwTE-r6xToGEarAsoPSWSeNM_FSCqqsOFvr5yQc4NgTrQuY1NT0Zn-4WCyI9svGxdi8Y1kHIirZfBABsW-dDvFlnCU-LAFhz8K_Nv9-7LZGr--qEfuT9CjBtdQa3VD0UdN84uPOi-djuCEJLjTDPvcNc9it4Tkdc2zQJA_iaJ3-pNOzEP3clK-TD-jdNA9N_9kkpDhJtaHq1iyijEKBH1IGxctQsk3EySZGO5LiAgYoRXn5b8-6-EM=","summary":[{"type":"summary_text","text":"I need to remember that the system indicates today's date as October 17, 2025. However, it seems the weather tool will return the current weather for that date, rather than needing to compute anything myself. So, I’ll just go ahead and call the tool to get the accurate weather information. That way, I ensure I provide the user with the most reliable data! Let’s move forward with that step."}]},{"id":"fc_00564a370f8761470168f239aa85508194bd45f6a7c8b4c721","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_8feZLXZajk3zUG5EkKIkQlwn","name":"weather"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":66,"input_tokens_details":{"cached_tokens":0},"output_tokens":214,"output_tokens_details":{"reasoning_tokens":192},"total_tokens":280},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_0ccfefab56fc1e6b0169b3197f938081919413a2656e175d4d","object":"response","created_at":1773345151,"status":"completed","background":false,"completed_at":1773345156,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[{"id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","type":"reasoning","encrypted_content":"gAAAAABpsxmEKxC6TQfUmOYw1XzDon_RkJB6wSBQuVNjYx24Y-8Yjzd4x5vCvKEn5NpNMiF7JI7Lmh2zDDmQw2rkeYai_iBkV467cG-zqLOs-m7Vi5E5vY109QsexBS1r1VUcJrZt1fXIQEa6FmYzRWMCbX37QYUT8hyfz_dfRYk4BrDE3IOIeoWGE_lzcL-0eiPQumw6I2hDCgXSOCc-wb2TPhoudYFNQsFooh8VTOBtBjJ3lqYSKZSNuziAjRAJdBwSyIAP5InxPgO4REE4oc89jA2aQ3_McIs4RriIasXIQoYeEeT-cal6oU8JxNfA5isQoDlfGX6u_PyWno2KAKWotaoD24NvfMxXEdyXZudwZ78Li_sWnEIJpQfpMWTHZQjRNwW9Cfv5vrDfb0UrRdghUJQ0XavP-N4lhHQfIWNo8M7ojIPE3fhN1Ie7LabhTpRsOBJp3N26788mkWnyfgiLNRAcZBKJyeko-8yRNxS7BQzqiCn7X3UrnP2xZh6PuBwGcc_VdtbLWuGG4gn6LCfLVMSx-3Dcty-r-GxPpTZ1PzF-SP4LZMVEXb4MaDswyBjIWfUPct68xzcsS-Ww5TV6olA3W7lsZMLAlY__RsbmWl5CT2Qo9K4W4A8YLqCsg20O4pQRMGCPjcxEzDr8N_g9VG-exrRzPmsqQgPcDlOamnWDhNnTpzUlvxdwG9-Ui5sLBPrRCcsFq9h9tYRUmC4WKOpNQbaApxY6QjwtO3GY7pGXTKi0WySgw16jYZFeYLElnq4NVJYr800EZlyDQ6WshjIppiXuceSsN0Y2QTGMAWsEMVsJrAEeHCwCtWH0ox9QrXLFldZzQd5qqALyqAR_wR3cttKsqlZvgrcNDtsEaVnFXMPVSPB1cj6-wduF4OWbtWwgCtD7OauuoCxAe1Xf80kmvOpMBXwk5Fdvd2iA-YaXDrmZ-9IcbMUCRsJABp1kmr67Goq7P0EQD_0eblxGfanhP0oVZ9Gt-9c7I5Yj73YuwIFaqoy1_if5ciRHSFn0--XFh4uftFLJLkCV0SMIQEOy2z1mSTFrNEfa3zFJ_WVUnTgy2XR5Bz1Fk7rOPFERVYjoCfxNdgC3H_-quEbuL2lhHPqhj7jX-LHx2x8h_ZghHsgq7vwj2JMOyoEnNU7CSTaF6i2NhM9UeV1ZQ4uj7MN1B36yeNgX4rhvku2WPI7If8xTwFNbQjh0B-VH7dc01C3aIr53sbV7r_aF_s20hoVYYyDPURVKWcHugd3U1t4Czf6tPWeaITteDqV3R8P51B9YsYNXNLWBdvGgNYkAIDLiB9ZCyiLwgQB5wRDTtl758BL2rFU_oCikj3zNe5x3mb2O1Qfon72DtfXv-ZMEM52NtIvnmMAtIr1ceuwVrNePMvSAMx4CrPVMsdLnLfyiDDF5lMpMd-cVLZLBJ1N_GOUkev_mVy6OXa5eIkvXXtqpyBWf8K5-DiFqzEA0cB5wdNjk_7A8tQBxOnZWsc3-UMepVrrahA4KfxTygeuNcnA4IKg4q8k5HLjQrnS_VeGKMbD5bnEcbmZKfIC_8QrppPInRKeL1QWH_CQDNwHzJ3aTeIJfP25eNQBlV07LNKMoXnsxu-Zo0Cz5TGVIWGYb4077IUjDo1JuwPNMzW3wgh4pBg1eUt5hMbAqvL84u0Upiev15pqSsjglXHGtIkGrK3reVYS9wSTZx3o5P_M5uyIU-r7tmriDT9fpdSFT3nartII_VfgPBpBuMgysrqjwr9Wsxt20mBCt17ShBOrGYM69B6bibg=","summary":[{"type":"summary_text","text":"**Retrieving weather for Florence**\n\nI need to answer the user's question about the weather in Florence, Italy. I have a function to get this information, specifically the functions.weather tool, which I'll use with the location \"Florence, Italy.\" Since I'm likely only needing one tool, I won’t bother with any parallel options. I’ll ensure to keep my output concise, as I follow the instructions on formatting. Now, let’s go ahead and make that tool call!"}]},{"id":"fc_0ccfefab56fc1e6b0169b31984a6208191ae1afff5e00f3a41","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_vTqMwYdzvdmoeNyNdQOqI1uY","name":"weather"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":63,"input_tokens_details":{"cached_tokens":0},"output_tokens":164,"output_tokens_details":{"reasoning_tokens":128},"total_tokens":227},"user":null,"metadata":{}},"sequence_number":111} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 543.7015ms + duration: 420.316292ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2191 + content_length: 2262 host: "" - body: '{"store":false,"include":["reasoning.encrypted_content"],"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence, Italy?","type":"input_text"}],"role":"user"},{"id":"rs_00564a370f8761470168f239a4f2fc8194b38541e473cdb603","summary":[{"text":"I need to remember that the system indicates today''s date as October 17, 2025. However, it seems the weather tool will return the current weather for that date, rather than needing to compute anything myself. So, I’ll just go ahead and call the tool to get the accurate weather information. That way, I ensure I provide the user with the most reliable data! Let’s move forward with that step.","type":"summary_text"}],"encrypted_content":"gAAAAABo8jmkhn3gO_TMlHP7zrmqSQK6e2YwCe3YftZKY9Y9Am0N47nufS0EOe2c40Ie_ULjJ_I4NfuJMK2z4f-hl32bIn-6n_VLQtWy0JNg5qIiYspMtmsGPDKY0PqVj8rmYPrrH6UBrnmjOIwiBy-owTkt4-iRe7p39ooEi23aAg7edh9Cus926ptNWnCyRd5LBxp_pLeUBbjcnyZKbN8sHpHkYBXi-d3tKM1w5RKtWwNk1iYZeSpMnFeu-0Rh6ybotX-rx9IRZceu-zOBPpk0Be52EqZGZNZtB7mmsfX9VainX3PHsAviBrwTJH5dSBMpRft_Mw0YE-rVBCcCRk-aDqJbxDgxndIFci_GHsu-iPuwV-kyIGiIMT_m1n_DSnQAkdY5Ur9gLMu0x91oug9mePtyoUf5SEIw4HLUVRESBhxg1pZr-QR1dv-qTjjyaJnRVQFEFcaKxUxRbKUEoMP3T1sg72LBP2kh6t9GtwNjPD5S63TjWBGogzHfOlc2WmiMzG6B0kY9xFh7wIM9XqbRvggxnNK37ltLB57lL73RckCP_4A2rLypjDmeewnDF0xLsKjVh_KHMMMrcMro__2EDnCIMpyWn5PFlEqHoAn1XcL81NSSxqgc12LYfTy4AddcrLUyNY0TDoV7J40oprdDPmD7SdTPcg9j4NXyQcDwcs_rsa_mtY4XH--Qd7EdCCOETDAaHi8uzz1Ig1gHGE-2sivK_NCqIUjX9IifDBZ_EycsiRhvoqKK58aE6ZxAKMzuvQZSGid9avuGUzO_bSvuCLVfYMeLsR2twj__CX6yXLvkHy3WebfqsABEFbklAp1A3ZAn17FJ","type":"reasoning"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_8feZLXZajk3zUG5EkKIkQlwn","name":"weather","type":"function_call"},{"call_id":"call_8feZLXZajk3zUG5EkKIkQlwn","output":"40 C","type":"function_call_output"}],"model":"gpt-5","reasoning":{"effort":"high","summary":"auto"},"tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}' + body: '{"store":false,"include":["reasoning.encrypted_content"],"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence, Italy?","type":"input_text"}],"role":"user"},{"id":"rs_0ccfefab56fc1e6b0169b3197fec948191a5128b289bd3abd7","summary":[{"text":"**Retrieving weather for Florence**\n\nI need to answer the user''s question about the weather in Florence, Italy. I have a function to get this information, specifically the functions.weather tool, which I''ll use with the location \"Florence, Italy.\" Since I''m likely only needing one tool, I won’t bother with any parallel options. I’ll ensure to keep my output concise, as I follow the instructions on formatting. Now, let’s go ahead and make that tool call!","type":"summary_text"}],"encrypted_content":"gAAAAABpsxl_yV8A68uHGe_5NFByLGg0aQFfiez_MlTK4CqH7M7ggUstkIPpnHaMbPFVdcobD1ZZy2MYigBVV-8Zornn3d3wHBC5_vpFlyy1O1veu1vqKpwD2W7ndqH3J2hdiV_BspR6q3LrY7ioEU_-vs0lCcJxPkf8mtwdflfiB99foqC5MM8s53paHZSQF3XjLHPOkAfD6xstcU6nHMM00NGcD0iG-OcUZVD_92mPPaIZaehoZpSmD2_m4U3NPR7xoGCuHwvFcA4y7qhzjUvkCSb0onjtTTpmePp38fhPzxEOQwZblNmdcseRA5-mMCzm7j67K03Ieftkj7T6m_JFY86XOdeMn0SyXKq3U3v3tWyXuLdQTRRE_70kZTBLoK4cR2JG-TkPHTYg33o9VYn2ePv6hKFFCBu1DcSfGWz0MU-40W1CccKvHh_xoHlmdNxfWychcekNA42EWGYRH3R6LPCeFINWfmy7Hbej_q4lH135At4_VdE6gkTwZPWRgV6KnK_wcTgGmNkW6oY8qwFb4dmZYb4QgFH8_jPsacvIWHv7zIqJeJFs3bvJt-7ZcKOeBWmHpUUyWuGjxID36HH3LSwDPc2Scc1iJOfdcszxmCnLHIiu9Br-90u9n_BVvwxl88SQO50t4yu5P-9fX1JFeHyfHTu_c1n8xBqO1ZgKMu_Z-bhZ63LpsXClx20W4vDKgfUZRYa3HKhmEjttDY0YWeEAsUsgJyJGDqkcel_0AgRyUaSCx-xtP6mQOoNQA8H770UbZLtShb7otktAc7M5FUM3pTodAp_Xr2rdAD4OAIpqgvyPPvT8-ma2vrGUdQr_NIKj9Z58","type":"reasoning"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_vTqMwYdzvdmoeNyNdQOqI1uY","name":"weather","type":"function_call"},{"call_id":"call_vTqMwYdzvdmoeNyNdQOqI1uY","output":"40 C","type":"function_call_output"}],"model":"gpt-5","reasoning":{"effort":"high","summary":"auto"},"tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -357,143 +390,68 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_00564a370f8761470168f239aaf05c8194ae07775650318b6e","object":"response","created_at":1760704939,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_0ccfefab56fc1e6b0169b31984ef988191b502d872c2499f4c","object":"response","created_at":1773345156,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_00564a370f8761470168f239aaf05c8194ae07775650318b6e","object":"response","created_at":1760704939,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_0ccfefab56fc1e6b0169b31984ef988191b502d872c2499f4c","object":"response","created_at":1773345156,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_0ccfefab56fc1e6b0169b319859c508191bfedb302db1a61b3","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":0,"sequence_number":2} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":3,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":4,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":"Current","logprobs":[],"obfuscation":"AUMGN5Q3K"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":5,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" weather","logprobs":[],"obfuscation":"qLtTyxtr"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" in","logprobs":[],"obfuscation":"C66nAujPIMzSS"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" Florence","logprobs":[],"obfuscation":"SnIKR03"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":",","logprobs":[],"obfuscation":"UUiwNeLx1iroF0t"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" Italy","logprobs":[],"obfuscation":"SuLohkrWW7"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":":","logprobs":[],"obfuscation":"2cSrgMrh5XW968L"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" ","logprobs":[],"obfuscation":"SAQ3ByVC4tefn76"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":12,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":"40","logprobs":[],"obfuscation":"umc9EEXQok47sF"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":13,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":"°C","logprobs":[],"obfuscation":"NuJ1Rz9JIahUu2"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":14,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":".\n\n","logprobs":[],"obfuscation":"amqhasz75jUjb"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":15,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":"If","logprobs":[],"obfuscation":"04w1vFvjNUodA8"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":16,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" you","logprobs":[],"obfuscation":"oMzpQiGKAyFs"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":17,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" want","logprobs":[],"obfuscation":"E1O6WPWxSO0"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":18,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" more","logprobs":[],"obfuscation":"kxFb99oWpSs"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":19,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" details","logprobs":[],"obfuscation":"J3UJtyM5"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":20,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" (","logprobs":[],"obfuscation":"9iydpihu9hCwNH"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":21,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":"humidity","logprobs":[],"obfuscation":"DVhtywjq"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":22,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":",","logprobs":[],"obfuscation":"d0ehS04wmj1oojH"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":23,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" wind","logprobs":[],"obfuscation":"HgSFvj4A844"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":24,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":",","logprobs":[],"obfuscation":"AJkG4jtxZIlaBHM"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":25,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" forecast","logprobs":[],"obfuscation":"VLqVo3G"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":26,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":"),","logprobs":[],"obfuscation":"s9Bj6OgwIIDG8S"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":27,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" tell","logprobs":[],"obfuscation":"THWK3ZVjtpB"} - - event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":28,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" me","logprobs":[],"obfuscation":"Zk9eOpTLijZxG"} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_0ccfefab56fc1e6b0169b319859c508191bfedb302db1a61b3","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":3} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":29,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" the","logprobs":[],"obfuscation":"O2NrpsXiaxeW"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"It","item_id":"msg_0ccfefab56fc1e6b0169b319859c508191bfedb302db1a61b3","logprobs":[],"obfuscation":"d4vAop82iKJzKu","output_index":0,"sequence_number":4} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":30,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" timeframe","logprobs":[],"obfuscation":"NoqO6v"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"’s","item_id":"msg_0ccfefab56fc1e6b0169b319859c508191bfedb302db1a61b3","logprobs":[],"obfuscation":"kJaGYSAaOIKtVl","output_index":0,"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":31,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" or","logprobs":[],"obfuscation":"of77Q2mtoqU81"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" currently","item_id":"msg_0ccfefab56fc1e6b0169b319859c508191bfedb302db1a61b3","logprobs":[],"obfuscation":"hdnccA","output_index":0,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":32,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" if","logprobs":[],"obfuscation":"IHhYXuUnYAjr2"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" about","item_id":"msg_0ccfefab56fc1e6b0169b319859c508191bfedb302db1a61b3","logprobs":[],"obfuscation":"y9piFMXEwA","output_index":0,"sequence_number":7} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":33,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" you","logprobs":[],"obfuscation":"K97GCaBS1Brl"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" ","item_id":"msg_0ccfefab56fc1e6b0169b319859c508191bfedb302db1a61b3","logprobs":[],"obfuscation":"Q2RkLXsLRaNeRlH","output_index":0,"sequence_number":8} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":34,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":"’d","logprobs":[],"obfuscation":"hb5TGRL7gboaIR"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"40","item_id":"msg_0ccfefab56fc1e6b0169b319859c508191bfedb302db1a61b3","logprobs":[],"obfuscation":"a4F08v739YZJYR","output_index":0,"sequence_number":9} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":35,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" like","logprobs":[],"obfuscation":"YgNGCMS7ROq"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"°C","item_id":"msg_0ccfefab56fc1e6b0169b319859c508191bfedb302db1a61b3","logprobs":[],"obfuscation":"qKXfKjG7tOF7s7","output_index":0,"sequence_number":10} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":36,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" a","logprobs":[],"obfuscation":"XlQDpZWGWK97Y4"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" in","item_id":"msg_0ccfefab56fc1e6b0169b319859c508191bfedb302db1a61b3","logprobs":[],"obfuscation":"tnV9j0eLVCIdJ","output_index":0,"sequence_number":11} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":37,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" multi","logprobs":[],"obfuscation":"V9W0gT0VFQ"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Florence","item_id":"msg_0ccfefab56fc1e6b0169b319859c508191bfedb302db1a61b3","logprobs":[],"obfuscation":"tsXE1KZ","output_index":0,"sequence_number":12} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":38,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":"-day","logprobs":[],"obfuscation":"NGHw8w8mjRsX"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_0ccfefab56fc1e6b0169b319859c508191bfedb302db1a61b3","logprobs":[],"obfuscation":"Qaq2RKasMMLem5D","output_index":0,"sequence_number":13} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":39,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":" outlook","logprobs":[],"obfuscation":"sQ1V9LLI"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Italy","item_id":"msg_0ccfefab56fc1e6b0169b319859c508191bfedb302db1a61b3","logprobs":[],"obfuscation":"WB9wBWEySD","output_index":0,"sequence_number":14} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":40,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"delta":".","logprobs":[],"obfuscation":"i7Z0ECrIuVBjuoj"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".","item_id":"msg_0ccfefab56fc1e6b0169b319859c508191bfedb302db1a61b3","logprobs":[],"obfuscation":"yGRLy8fWPesJP77","output_index":0,"sequence_number":15} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":41,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"text":"Current weather in Florence, Italy: 40°C.\n\nIf you want more details (humidity, wind, forecast), tell me the timeframe or if you’d like a multi-day outlook.","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_0ccfefab56fc1e6b0169b319859c508191bfedb302db1a61b3","logprobs":[],"output_index":0,"sequence_number":16,"text":"It’s currently about 40°C in Florence, Italy."} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":42,"item_id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Current weather in Florence, Italy: 40°C.\n\nIf you want more details (humidity, wind, forecast), tell me the timeframe or if you’d like a multi-day outlook."}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_0ccfefab56fc1e6b0169b319859c508191bfedb302db1a61b3","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"It’s currently about 40°C in Florence, Italy."},"sequence_number":17} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":43,"output_index":0,"item":{"id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Current weather in Florence, Italy: 40°C.\n\nIf you want more details (humidity, wind, forecast), tell me the timeframe or if you’d like a multi-day outlook."}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_0ccfefab56fc1e6b0169b319859c508191bfedb302db1a61b3","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"It’s currently about 40°C in Florence, Italy."}],"role":"assistant"},"output_index":0,"sequence_number":18} event: response.completed - data: {"type":"response.completed","sequence_number":44,"response":{"id":"resp_00564a370f8761470168f239aaf05c8194ae07775650318b6e","object":"response","created_at":1760704939,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[{"id":"msg_00564a370f8761470168f239ac082c8194bbbce632ff854fe4","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Current weather in Florence, Italy: 40°C.\n\nIf you want more details (humidity, wind, forecast), tell me the timeframe or if you’d like a multi-day outlook."}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":102,"input_tokens_details":{"cached_tokens":0},"output_tokens":41,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":143},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_0ccfefab56fc1e6b0169b31984ef988191b502d872c2499f4c","object":"response","created_at":1773345156,"status":"completed","background":false,"completed_at":1773345158,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"gpt-5-2025-08-07","output":[{"id":"msg_0ccfefab56fc1e6b0169b319859c508191bfedb302db1a61b3","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"It’s currently about 40°C in Florence, Italy."}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":99,"input_tokens_details":{"cached_tokens":0},"output_tokens":16,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":115},"user":null,"metadata":{}},"sequence_number":19} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 672.35975ms + duration: 255.065ms diff --git a/providertests/testdata/TestOpenAIResponsesWithSummaryThinking/openai-gpt-5/thinking.yaml b/providertests/testdata/TestOpenAIResponsesWithSummaryThinking/openai-gpt-5/thinking.yaml index da73e32231e0bacefbf76de166632719ec0980ee..a84f4dbeaed569460b34ab81d973eb4921bd58ff 100644 --- a/providertests/testdata/TestOpenAIResponsesWithSummaryThinking/openai-gpt-5/thinking.yaml +++ b/providertests/testdata/TestOpenAIResponsesWithSummaryThinking/openai-gpt-5/thinking.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_0e319212d3811f510168f2398edbc8819eb99fffb643dfa9c3", + "id": "resp_075b435690aee51e0169b3196ee5ec819ea14e6d34ecdd4aed", "object": "response", - "created_at": 1760704910, + "created_at": 1773345134, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345139, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": null, @@ -42,28 +44,30 @@ interactions: "model": "gpt-5-2025-08-07", "output": [ { - "id": "rs_0e319212d3811f510168f2398f6140819ea426c36bb590abee", + "id": "rs_075b435690aee51e0169b3196f54a8819e9a33c038fdc1f932", "type": "reasoning", - "encrypted_content": "gAAAAABo8jmTBMurhS5oD-Y9cDAXlL496L8UQyznDBzW9nwpQfBEnXbCOU4m1NyS9wv5Q_u9-SJm8ge9KDN9YlxMjN9baf9xqGpkw3dNWkKNUgfB67evsG4asEPE6ODvJ2w8MfWiJyZNsGE414425cTxLw3RXBo5dQmx7gIsNj1XZoSRg8JOmxC9Wh2LeihVVY-_ilKi7-YrThT5KDGSJcHmCcT6gC-rIYX7XYjvBBsY3APQLEcGnRdGsWjIwUKVOZxyNMXUCTHkCHyBqnKRKkW_SIS2uuH-7qsFQ3Lx99vq6nRRxFsI9ITq3sYCPFAMYCNCguSVoXFNkB-xAMKczdtT9EKtocr781FYNgTWWC2SIu-ieuKqELsJ2JG46S04gEEhy4o5aDJ3qG3U57QSYOeNLXy9ePccJkMb0pzLwTCdVJy2Qbm4NVUk5976LEvgFV7dkZAsB4Gt3XPOUQT0pBAqOEwisubWMHn1JVdw0al0gyGzmXwYoxsJnPh3JLjsCsY2f4EyN-i41cMx3EzDEMEWiQxHT5BxYDRTAXg92L9Ryz1tyqrTZ29nxrcylvRB0lwa-zogOF_G4eTmxNfni3NeWAm1qlrO6ghO2xppEtp3w4dY--U-ZsV-WDMScu10TfBYyqw5MCgsUepm7zS6Vhoj4g7c17y-ebmhSOWX06pZQdlWJ1yBwiFs_rZ6Ta_1er5I7iQsHuTlfEdP55Eu3kOPmyoMfVyDZuFafGK4LwY2dgQtSoz3OpRZA4UGSJojD6tqmbK6HMmuVhgNqDMfGv7UfMJrURdoZiIQYo2qy556IgKckcXvJGLdWtsv-93Hef1uYSskR_P87E9FJv8mzZh0Lfh2aRRtqrG-wQKkMxesKLR8GeJKwhckJU9Rv__659Ci2LfOTIWAHHNZyKcZWiKqInUjkCvAXHzWUgxgP-RNMOEqstH10rvpf1UMpAKlGh47E1Ojo3sbCuO15FeYgiytOTo7KXMHDbcNI6CaHKiaq_QDhhstaelipfsNfvuPqaoU4suZ8-C1lYZzGK96yAuJzSbtdBxRkeMvlb0U71RBtOhPSG3YfPZ28W8kd17_iGUzskubjTSZUfSFlednoiRYOzDaMHV2uhbZhf160gxVKD4kSpZBfBZC4N4fVSoT8YtQwY91P1im6TVogfb1KwCoRPA-gk92-3fDPs2Vf7l1qKGGYR-6E35OG1Lbi5ni64Bjq-0rpNpJmw4wKQrgZYygbhLpL7e0UwJA71JQVtSb65AAc_Jxmk6MPiCakiUCrBD7ehtr3jv-E12XkybUiRbTFEcKEn-cIgbOhNgFo8ZHEjImnbpdMN9b8zrSjfWJ86sf7rpKrNf8l6EX-65Y2rdhrb_0feo0t9jbEuB9xkSa8e6Ldk1Il4dHIEpMpwwreeft7ozkqDzC87j97UTp4fXsXb6Aoh_Bb9OzMYK3f8Bxb5w6iu40u6JYAp4kNmFfPFWGfp4IDCun9RfM-elaqOD14VMnvOW-PyiMZrAgw4MQ9oRqeXU0TNRKKMtSyPPeGFeIsdBV8I23w0F0MdjeAqGnsYCiNpSPX3DxC5s7oQWfP92UDrsu9NwpGvyF6be9bP0lrBM-D0Xo3_T7LGznO71xytuLFA9tnUX0bw04SUvf2xdt5-teNooXaivERLiwlL_BCxZlN0A7TEo0LA6XnqEWR1LoifhHrb5KJCSzrkyFSNi6Rz3tyoLKKiERbY56PCZKcE255u3cLBf2NhN0ErR3K2DzOf6LHmsnrnG1S_BV61LZKlio7qQC_U0SvB_sP529mOCXGQ5JQ8YrXQ-M3mdkbAqsV0EF8QQ9qIxa0wiAa1eJ-u4GkdTy5jAYaEIRCXWCwP9NH0ho", + "encrypted_content": "gAAAAABpsxlz3zqwjvVFph3GpyCoNOUWPvEYHgvC39jVaRRd3SQ2K3vbO0ocwgzzM5dsBis4F8Ow3j5jcd3B8xKCqy7Wsxsfe2zz_DaERYO_bLZc3NjID8kelhxHKcuocSNx9tVQWpNTxUoYCveFyCyveaZ3lt0u4SZGWK_ZAkfIgmsGfddN-UeUH2lyheldZajgTPwa_PZQgTpcY7ERXCM_jh__IT1zibygPsb4u5G-XPvtkjA2oirQ8KbzaWqWhjj_hOJ43g_jePL0v1LHSNC9SiIVMmbifsBoQ6smsOYl3e_227AwvLspEWH10T1FtajmyfOPGYhRr1ZPfyx2eRDcP0vMPIejfDgLfKZklJUeErKVZrx785QR4ugWM7Qr2nggdM15H2rWQoZumX-RNQNtAVYTXmnyQPwoWbtL0fQ7oZDmEw9o0rQo987rawE2cjgrE9yic4wPw14g2fciUgluYaESuuJnNa4ebOawL2iIRWzrV6GNF6B6dkxmByHv8BGwZbZV3afroFwRc3C9-3M0wglbNlwyPiWWL0VMcaHUNlyk2cEFn-sgzBv2bYPtu3KSK0ww54r2iwxoPr7BvLf61HnPeiaWVxdcrhYWexAaUjMyAtDTWzwHKVwDVVCk-uspqH_PRxu5bxq6KkOjA6COUlwCEoGeopc5f6WdopbFlYekzY4hd73DiFJYfArUfcFyLf0kB475TTeLhCQtdlsAjwZyqk2rNKxV1D4Td0RsibuanFKcKc3WsShVypvNWd7WjByl13xUHXOFZ_LN6dX_ZhfDAW21N4Yp5XWHBT59xlvF7oeh6CvdgN21SJ0HfyurQBbI4TyhwX3xB9doC-Qhh-rDURnA3LZUCN3Iudg0Eo0RjJCbmT_Crv-PthflMMT95TR6M4LXv7puGvx94Xemc7H2BtFy9E3If0Zsf8uRksxr89Er23vwkaKTtRsMvX1wGPUgpcaxyMqV5FWwLj2-dennw2lDHTk2k46YeeaeSrn0lkV-s1-pQw9GwPIy-Mcmo6Aa_ncLETgyRGHLSTH28SElvWXgsa4oa8XypwNISTATjwzgM9yGhXbmA9CVbXCuhQ0uKzGgNzsYOwBqtxS8aVigdTPj9ktCZJD2Y4GziE-i7q4FLc511fiIMQZC-MUNMQO4d7A1kEveveZZntjiP-ZfBvdXMSb24fxfKWhAguFREzVm-7V8tbweipr5s950Ae7uJqjM_TJ4xGs66lg-TLTJLCCho4EnfYqjAmU-cR1o3l6A9RQXTzW4Okmh4oKyhlsWkL2LbMKU5UUfIfnWYM8vsJA75CPR633cGscm2Ku5SNdu5bY6cReO2YN8yRqViEUi4K04ORzaO9xNLnS3tf0FYsv7g2yM88eOEsLoCpHRsXdpvslmxKYb6K4Kjo24wvLuduTy19OzCsF4v69vcgUUOAwvPnJMfdYK9mQOTUmNyxqJ-wErLLn3FkUXylUvLDsb7bQtGZqwYh2e65YuQvOzRA2Djv_dUAaVquf3bl0TQAu0iQp9ddOSfwjfH96B1ZUH2KIP", "summary": [ { "type": "summary_text", - "text": "**Fetching weather for Florence**\n\nI need to answer the question about the weather in Florence, Italy. There's a weather tool available in the functions namespace, and since we only need one call, I'll use it directly. I'll request the current weather with the location specified as \"Florence, Italy.\" It's important to keep in mind that I\u2019ll need to provide a concise summary of the results, including details like temperature and conditions while keeping formatting minimal. Let\u2019s get that information!" + "text": "**Getting weather information**\n\nI need to gather weather info, and I see that the tool functions.weather is here for that. Since we only need one call, using multi_tool_use.parallel isn't necessary. I'll go ahead and use functions.weather with the location \"Florence, Italy.\" There\u2019s no need for parallel execution. It's important to use this tool and provide the output based on whatever it returns. Time to make that call!" } ] }, { - "id": "fc_0e319212d3811f510168f239938014819eaa6a95792d6049d6", + "id": "fc_075b435690aee51e0169b319730394819e92318d9404c5f97f", "type": "function_call", "status": "completed", "arguments": "{\"location\":\"Florence, Italy\"}", - "call_id": "call_NBDHXdWp4Qr78bSaUnyNgsh8", + "call_id": "call_1z70BexeUjpiAcqPgwQiiVRh", "name": "weather" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "high", "summary": "detailed" @@ -103,15 +107,15 @@ interactions: "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 66, + "input_tokens": 63, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 150, + "output_tokens": 128, "output_tokens_details": { - "reasoning_tokens": 128 + "reasoning_tokens": 64 }, - "total_tokens": 216 + "total_tokens": 191 }, "user": null, "metadata": {} @@ -121,22 +125,22 @@ interactions: - application/json status: 200 OK code: 200 - duration: 5.100496208s + duration: 4.511691209s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 3317 + content_length: 2916 host: "" - body: '{"store":false,"include":["reasoning.encrypted_content"],"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence, Italy?","type":"input_text"}],"role":"user"},{"id":"rs_0e319212d3811f510168f2398f6140819ea426c36bb590abee","summary":[{"text":"**Fetching weather for Florence**\n\nI need to answer the question about the weather in Florence, Italy. There''s a weather tool available in the functions namespace, and since we only need one call, I''ll use it directly. I''ll request the current weather with the location specified as \"Florence, Italy.\" It''s important to keep in mind that I’ll need to provide a concise summary of the results, including details like temperature and conditions while keeping formatting minimal. Let’s get that information!","type":"summary_text"}],"encrypted_content":"gAAAAABo8jmTBMurhS5oD-Y9cDAXlL496L8UQyznDBzW9nwpQfBEnXbCOU4m1NyS9wv5Q_u9-SJm8ge9KDN9YlxMjN9baf9xqGpkw3dNWkKNUgfB67evsG4asEPE6ODvJ2w8MfWiJyZNsGE414425cTxLw3RXBo5dQmx7gIsNj1XZoSRg8JOmxC9Wh2LeihVVY-_ilKi7-YrThT5KDGSJcHmCcT6gC-rIYX7XYjvBBsY3APQLEcGnRdGsWjIwUKVOZxyNMXUCTHkCHyBqnKRKkW_SIS2uuH-7qsFQ3Lx99vq6nRRxFsI9ITq3sYCPFAMYCNCguSVoXFNkB-xAMKczdtT9EKtocr781FYNgTWWC2SIu-ieuKqELsJ2JG46S04gEEhy4o5aDJ3qG3U57QSYOeNLXy9ePccJkMb0pzLwTCdVJy2Qbm4NVUk5976LEvgFV7dkZAsB4Gt3XPOUQT0pBAqOEwisubWMHn1JVdw0al0gyGzmXwYoxsJnPh3JLjsCsY2f4EyN-i41cMx3EzDEMEWiQxHT5BxYDRTAXg92L9Ryz1tyqrTZ29nxrcylvRB0lwa-zogOF_G4eTmxNfni3NeWAm1qlrO6ghO2xppEtp3w4dY--U-ZsV-WDMScu10TfBYyqw5MCgsUepm7zS6Vhoj4g7c17y-ebmhSOWX06pZQdlWJ1yBwiFs_rZ6Ta_1er5I7iQsHuTlfEdP55Eu3kOPmyoMfVyDZuFafGK4LwY2dgQtSoz3OpRZA4UGSJojD6tqmbK6HMmuVhgNqDMfGv7UfMJrURdoZiIQYo2qy556IgKckcXvJGLdWtsv-93Hef1uYSskR_P87E9FJv8mzZh0Lfh2aRRtqrG-wQKkMxesKLR8GeJKwhckJU9Rv__659Ci2LfOTIWAHHNZyKcZWiKqInUjkCvAXHzWUgxgP-RNMOEqstH10rvpf1UMpAKlGh47E1Ojo3sbCuO15FeYgiytOTo7KXMHDbcNI6CaHKiaq_QDhhstaelipfsNfvuPqaoU4suZ8-C1lYZzGK96yAuJzSbtdBxRkeMvlb0U71RBtOhPSG3YfPZ28W8kd17_iGUzskubjTSZUfSFlednoiRYOzDaMHV2uhbZhf160gxVKD4kSpZBfBZC4N4fVSoT8YtQwY91P1im6TVogfb1KwCoRPA-gk92-3fDPs2Vf7l1qKGGYR-6E35OG1Lbi5ni64Bjq-0rpNpJmw4wKQrgZYygbhLpL7e0UwJA71JQVtSb65AAc_Jxmk6MPiCakiUCrBD7ehtr3jv-E12XkybUiRbTFEcKEn-cIgbOhNgFo8ZHEjImnbpdMN9b8zrSjfWJ86sf7rpKrNf8l6EX-65Y2rdhrb_0feo0t9jbEuB9xkSa8e6Ldk1Il4dHIEpMpwwreeft7ozkqDzC87j97UTp4fXsXb6Aoh_Bb9OzMYK3f8Bxb5w6iu40u6JYAp4kNmFfPFWGfp4IDCun9RfM-elaqOD14VMnvOW-PyiMZrAgw4MQ9oRqeXU0TNRKKMtSyPPeGFeIsdBV8I23w0F0MdjeAqGnsYCiNpSPX3DxC5s7oQWfP92UDrsu9NwpGvyF6be9bP0lrBM-D0Xo3_T7LGznO71xytuLFA9tnUX0bw04SUvf2xdt5-teNooXaivERLiwlL_BCxZlN0A7TEo0LA6XnqEWR1LoifhHrb5KJCSzrkyFSNi6Rz3tyoLKKiERbY56PCZKcE255u3cLBf2NhN0ErR3K2DzOf6LHmsnrnG1S_BV61LZKlio7qQC_U0SvB_sP529mOCXGQ5JQ8YrXQ-M3mdkbAqsV0EF8QQ9qIxa0wiAa1eJ-u4GkdTy5jAYaEIRCXWCwP9NH0ho","type":"reasoning"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_NBDHXdWp4Qr78bSaUnyNgsh8","name":"weather","type":"function_call"},{"call_id":"call_NBDHXdWp4Qr78bSaUnyNgsh8","output":"40 C","type":"function_call_output"}],"model":"gpt-5","reasoning":{"effort":"high","summary":"auto"},"tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}' + body: '{"store":false,"include":["reasoning.encrypted_content"],"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence, Italy?","type":"input_text"}],"role":"user"},{"id":"rs_075b435690aee51e0169b3196f54a8819e9a33c038fdc1f932","summary":[{"text":"**Getting weather information**\n\nI need to gather weather info, and I see that the tool functions.weather is here for that. Since we only need one call, using multi_tool_use.parallel isn''t necessary. I''ll go ahead and use functions.weather with the location \"Florence, Italy.\" There’s no need for parallel execution. It''s important to use this tool and provide the output based on whatever it returns. Time to make that call!","type":"summary_text"}],"encrypted_content":"gAAAAABpsxlz3zqwjvVFph3GpyCoNOUWPvEYHgvC39jVaRRd3SQ2K3vbO0ocwgzzM5dsBis4F8Ow3j5jcd3B8xKCqy7Wsxsfe2zz_DaERYO_bLZc3NjID8kelhxHKcuocSNx9tVQWpNTxUoYCveFyCyveaZ3lt0u4SZGWK_ZAkfIgmsGfddN-UeUH2lyheldZajgTPwa_PZQgTpcY7ERXCM_jh__IT1zibygPsb4u5G-XPvtkjA2oirQ8KbzaWqWhjj_hOJ43g_jePL0v1LHSNC9SiIVMmbifsBoQ6smsOYl3e_227AwvLspEWH10T1FtajmyfOPGYhRr1ZPfyx2eRDcP0vMPIejfDgLfKZklJUeErKVZrx785QR4ugWM7Qr2nggdM15H2rWQoZumX-RNQNtAVYTXmnyQPwoWbtL0fQ7oZDmEw9o0rQo987rawE2cjgrE9yic4wPw14g2fciUgluYaESuuJnNa4ebOawL2iIRWzrV6GNF6B6dkxmByHv8BGwZbZV3afroFwRc3C9-3M0wglbNlwyPiWWL0VMcaHUNlyk2cEFn-sgzBv2bYPtu3KSK0ww54r2iwxoPr7BvLf61HnPeiaWVxdcrhYWexAaUjMyAtDTWzwHKVwDVVCk-uspqH_PRxu5bxq6KkOjA6COUlwCEoGeopc5f6WdopbFlYekzY4hd73DiFJYfArUfcFyLf0kB475TTeLhCQtdlsAjwZyqk2rNKxV1D4Td0RsibuanFKcKc3WsShVypvNWd7WjByl13xUHXOFZ_LN6dX_ZhfDAW21N4Yp5XWHBT59xlvF7oeh6CvdgN21SJ0HfyurQBbI4TyhwX3xB9doC-Qhh-rDURnA3LZUCN3Iudg0Eo0RjJCbmT_Crv-PthflMMT95TR6M4LXv7puGvx94Xemc7H2BtFy9E3If0Zsf8uRksxr89Er23vwkaKTtRsMvX1wGPUgpcaxyMqV5FWwLj2-dennw2lDHTk2k46YeeaeSrn0lkV-s1-pQw9GwPIy-Mcmo6Aa_ncLETgyRGHLSTH28SElvWXgsa4oa8XypwNISTATjwzgM9yGhXbmA9CVbXCuhQ0uKzGgNzsYOwBqtxS8aVigdTPj9ktCZJD2Y4GziE-i7q4FLc511fiIMQZC-MUNMQO4d7A1kEveveZZntjiP-ZfBvdXMSb24fxfKWhAguFREzVm-7V8tbweipr5s950Ae7uJqjM_TJ4xGs66lg-TLTJLCCho4EnfYqjAmU-cR1o3l6A9RQXTzW4Okmh4oKyhlsWkL2LbMKU5UUfIfnWYM8vsJA75CPR633cGscm2Ku5SNdu5bY6cReO2YN8yRqViEUi4K04ORzaO9xNLnS3tf0FYsv7g2yM88eOEsLoCpHRsXdpvslmxKYb6K4Kjo24wvLuduTy19OzCsF4v69vcgUUOAwvPnJMfdYK9mQOTUmNyxqJ-wErLLn3FkUXylUvLDsb7bQtGZqwYh2e65YuQvOzRA2Djv_dUAaVquf3bl0TQAu0iQp9ddOSfwjfH96B1ZUH2KIP","type":"reasoning"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_1z70BexeUjpiAcqPgwQiiVRh","name":"weather","type":"function_call"},{"call_id":"call_1z70BexeUjpiAcqPgwQiiVRh","output":"40 C","type":"function_call_output"}],"model":"gpt-5","reasoning":{"effort":"high","summary":"auto"},"tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -147,15 +151,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_0e319212d3811f510168f23993d900819e8554549fa904f584", + "id": "resp_075b435690aee51e0169b319736be0819ea63b2b27ecbb91a2", "object": "response", - "created_at": 1760704916, + "created_at": 1773345139, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345151, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": null, @@ -163,26 +169,18 @@ interactions: "model": "gpt-5-2025-08-07", "output": [ { - "id": "rs_0e319212d3811f510168f23994f608819eb5076ad513ad1579", + "id": "rs_075b435690aee51e0169b319741a8c819e9ddb8e4886799617", "type": "reasoning", - "encrypted_content": "gAAAAABo8jmjstHHULLsMGxy2E3-Xo0O0cUVNx6b8OSavmNWeweibhRqRuP7buLPHMcHqUXWMBtPsr5yH8B-jgFp1pOlLqCMYqu-_Zs7Y0i_vbCM6Qt0uimhYDddVqAw5Fy59--GAHN96mZOeIn0wfxfTqemDmMl1B2YpyM9uly7eQOUsja8oXMvb9ITk8r2DvQYPJ0L0JKxLV-_xC-bdb2GFJxv1eQ6kaHGvsozk5noabtZ9p0Ebj0_WHdtDqmU6RCsyaDWC3JvSEsJiJN2bVkWHu6MN71ufXGZUn6_m4_-8TiUVFQHNP-3iqbnn5gjt9MTunXDbjRGbgOifw8H7FXnW2n41lCF7N3eA59gcQ1rljRzCZtcrLZzW8UV0NWO74opKQOKn8e1En76A6kWVaDspeCQoFFWv-aYWY6i9CoBCerp_zKYbwEyqRgdj-lGg94R3KVGvVilAU2LwRt4btMU7HeeITiRObvcfxxiNGfr1ymt1bwo5aapEDMaf9Ahx16Aq_hE_AGLP_zSwpydNbLGeBSmXjDszP7BjFcsvkacVAZJjD4d2eaNg994g_kuqGmcinoKMJDPL4oskQidWG-KWBmb76Gr8kR8497T3j9X1PwRjKt24hDQGhuGB_EPUtVZpXOxrwSFeogPKJKK2sYIT8Z6_HpJfCchzxVHPpOt8n3GWpy3OvDkE21ZHXPt-d_EWRltCE_PUndIrGDcmj-7Wf4vV_Y_c3OKFNv_9jPIzMniYf-RfLCCkVR26lmZ8KRaqv7ijaTiqqiZ6MfG2YCBhMOeyb-3ZLYkJvd0neY6PZdx2v36TkVhdt545BCyB07ZPzrghYe2sJENnvzie5nc7yn5eDWkT6G7z0KI_6LcG2bGnlTEj2NnJ8SZORO0DY3DNd9j9M84emBySsnLQoEEGjfIpgR2FB_8M1XvN2JQM17m3R4rth-XsWToVJikou6VPV7eho39qnEsiUoksPgsElFoXC1ChXgJA64uuoPQ52zf-y4ctjayMDfyTUikOCDO64j3xT1xxKI4N6m25pzC__b7urRIUOxHd2MrrGaVMax9Tmep3NHwuWa9Zsa0-QDSW0fNOxCV5xcFczkSZxyA01UdiV-6wsFAn_Bjstd2F4kIPLcwpO7yYJUI806VlghIH0LZbQfbGuAkm3b9Pi424KVV9v1UcJ3vxD8c0-D9vu0qGxmXeS0UqF0VhxDZYwj2kVoINHZUf8OEZNnfuWNicbjjBGRjH_iYvrl0iQ3kdu6apBJuY27s7rv5ShqXSdUjMdIeAj7AznPVRB3w-tSW1Yg7pAUIjogr2BfmifBSy7sZA1ePjTRQnXb9-7x7z4fLs0FkatnRAaOnulb2X0sRucI38CZz6j8RuJomuSkI7LF7W5jKFHcaOe0N0kI0777XDFeDop66K5EN83MJ6jG3U4Fh8Fe-TtoTmuMHrs-zAo6u_8OgcsblF4YBc1Re-X0s9q2KSpLIie4z1sA0Cu6-PAPK12cu0aywx7hWe9Xk4tGkKJa2OAzJCUw0ResTn4By2iQxcLHMviw17J-M5ti4uZT7lLu2vNa_fJit2oB9pAN4uEvNHEN28HDK_xm_vJO1G-Mo8pDEOK4kR2SYMUOIq7HrtANeh5q-4IONCtDH_tC94xJxphnXO7Wo4oo9_iv88s6-BM614L_SHL0-sfU8ud26td__zDrVI5HM7-RsoyTFcovUA1SqtF0sfs2WNuCrImEy6Od0sneYzAbrHbdHiq7UL-qnohYSf-ki9PJ6yUrtrNQ9HT5J0dpVDjKRwoAt2g5cYRhxVBzc7zY6_amRwn4RI9oJNvYah8hiQlKaTRaLiuqqTGTKVxU3phLU5oSR9aWlk-Cqp0Fm1tdAQ8mSjC_VLWCZ8EyNIrt8FWfub6pQecfH9FJ2Tdd-2cwFGstI7YXTRiiFHHPluR8VYnRPySS6SEfQH-g3cUgMybM4BkzEbhf9Fqa-btIWfAItNQsZ63Lgd8xUab3Dd8N0BijFdBWC3N7jMg3rzJwqH3KFPiBClWQaOy9f5vim05Wd-TnUb1_PtYxTyDbSCy0fb9AJBZOGcHyg_VTuAGPjvE6AeQSUXixSWwALyTsGQUKqGKo-sltdenOR3fmwQsTZ3w1EAh5qrVnnpfDf2I1PkSKWG6SS7VmYmS3cf7RkzNm73ZBKZPBEFRNI5X1ZnZ5lt5CjGMSQJN63bGqAjuEYG7DJhRJJf9shh5afz4Jp3zbvaYxnnUVpXkm5FPdksn3KEq-DDOOD59dwoetWCzaNw44nY8ndpUiNn_dwtQb7VEQz55h5tc0NaPBaIaUTlMoPnEKOLnKEb5AgCNwSR9hu6fMRGucSrnoh3IBJhw_aP4pUyfJEMRqQsHG-H6kvjfVQogWDw0utrHSaWmubfpnmIKgbKIFNC0IP1ubTxPok9LQoHRwotesZ6FjneMfN_EGunqT6XhzTsU6SGW1fx_ov0NLN4o2ifovbc0hoTdZMedYvomGzY5Mw4euVEzbSNPlmGHU2ATXW9bb0uDM2TtCRVX2Hldy2ZJS6P_gxovrofW1u9Wb9Bv8K1jW4W5zKr_24UCGWfZoq5Th5qDoNB_iskRyBAlMRtFSXhmH7RPunaGjep3aV9r5L_gnfJaMS4MZmRdEU4YOxKevHoSvnxAGYJWh4sp4z87IczKoFi2uWDQtgOkKdP8RDbKjc_henAHcsJnDKfnnIrsWvrIuzpjGLrtQuAA3Dj28AaxbNw1K_wtTZFjaThRF7firN1LEn6WxCBAblULVwOEPJmf01vIVXGI4Me-ID57AgTEf9nBm7TeWDLLhAcWBWNepchyhIxiFjKS4wmzePThI6bf0Ny9TvD85kXG2LG8dl0v2cNo9k2yP7emoxbOHkATVkPxYBblIciIl3bzbTNCSL63K_2uu7sLJo1OXAYWqfzB2iIiTmKGvkd4PQdpiDdpYAGVWUBX5mf94sRryFIGkmGw7qKb7tyHcdh5Ox1hkaR8RUFCYit9lgTW883KxrbZoriWDhOEP_EPmdkBa6NRyEHP_jXL7lk_XO07C1vjtchS6CagBGh_yGOaL_plSNQ08sE127DtsQrnxnTFFxD5slH34NxHSShGRwonaNafyquj1z_D0ajQG1mD9LUz6d_Jdr6OvqsV7Mr5x5XiA_-Gp0MGreWK_vgRlsxDQnWTVC19EXWiliG3BGjW19z_7mwfwqYXO12lYq608pGLlPj7SK3US8PNVaS8CgiIzHHo95mFUfiRFHv1gguCuGRwMKQKUxpUC7XfvPabxGKHfo2ipHfVfiYNxz-78lpF5h3L3LAvBRCxSOd7iVaXFf6xn-wffhvfx4oIkW1lwZdMTASG1o5mixSQ38GRmg6cs8piag6h8BsDkhKWdr5w6WML6dlSQwQCjR6trVRJygUaOSP3ibyNrVt7TMY-gM60gtQkJVgXQHkJt5jK7lMJNQ18ODYRugXU3dbwliXGIKxFiEfie_Sm_U2FXTN-Ai16a_V5-xEidZC8y0WHpvfqQiBQbUcXYXBRsFnGpflsAccY5aP94R_2Dql40ZqfJ9bMPoXYI4eTkoUXqWTYh_u7ePFRaKsoDxsYKt0kJ4FLD5YWkRQYXLwZVTYtQOdMc6hnTqJSoJ6rPc8ag-z3eFJhenwwrtOee1q7vwJvQ-iEfcyM72NIraXHVR5TGNR359rWVCtl1jXagqGxdOfJP3b_yeZ7IBEX2dL2CR2NoOp3CN0KGimELQEXx7jtoOzHzL5JK3hI_FocKLivAYbWv-InE7vRsXfFGGOIuEDp1ErPtQ8hpQV5FB8TJzPmhjMEH_btjArfiHt1h8okUmperS-P2XCgAukmJUSRgFp-65q1noZjx1WgQJjSGm9dSVFcd7deepR2yS1HLG3UJNTUj0SmWUuWIowTWyY5ICr4ps5nuvqF4xKNZ4liSaBqKtQluc65ICFOhC4Mdt3JzxsYdA7uurIHg7PPmxSX2zYT_egt1PPl2GcqjEiA==", + "encrypted_content": "gAAAAABpsxl_jPfSWqxtyp8aqpWzeHLs-fmW8jdC7aCqvNYybxg4Ak0bpb1vy_YXoPoRThh25H6aM4URRDaMxHPduZ3osUmb4HRdgSaiKsw1I709PL44HxeHqE6fXbUmiGeLA5iJhg_kF4W_UN2zwrFzRZjFTnS13nKCK3AS5_fqbcSpVQ0RXSL5jM_hSk0J36IPJuTa7TB-J0KBgO1VwzHC_WeKjG-nXeejNb31312q6Fje8BP-YOeK_lYlT9GWeOxQ5K2ZTV49UGr_qhx6z2WpWfvETvCDmIHzy9P6oY5SA-J5xBly2ould4sfaxCM2c6eEX8g8SMdpvB6pERZwDN8j3MRLlgje6dAM90b6KlksvOpXCBBCYBrDS8-GbNejTZ_8etg7wVtgBtMnfEpLv2DarDZ1nS3naCFrcJuAqOPzfyxDEmREJhAN5pwUrKIHzkhQzfYQ2eVdJYOPANjGL_T1j6D6MSNcBDLjRwpjsC27Wer_XhsD-wKCAf1P-ylTuLwMRMiSLqhcicbt2yzW8OrPkqi8-Rxqa_nYqHmfHq7hZZ5s6FfjEeh-iK1vWBcgRlzPgFOM9a2DdpIB1WqXHb2ysCACImyqrxY6OY3J5YDN6cE8N5K4gC3simNtBLiNDae3_dbt9233ituqprv9j52u5BUbvJhqUUShKYQDLX9bP3qEi1TOcwAGI6X5JmckFz6obUWaoWZgjhM3-88Z_d-aY-oJFy2CbltjM3JVw9xM9E5VyfvmrLkLJEl0Nb5ImiH48_ICoGd2PFJl3OyjpuxVferrVtOz9ngJxju9ENha4UqnpGBmyaIqokrynH0FgUcil7Vb0BC1IWtg5Cou22i7oOW1khuOLr9bsTcmabDaQ8rIFZXITBA1Wt6Rk2FC3t1-OAWwB27RLrSbvRt5PfuBIu7J9kgGYt4jJPLDl-_vw3YHQBzDGj3t6miz_JyrAOVw0UBwuLcQgW_7sLHE6LMUXdIPX3mjqxhdAvS0WY_HUoxFznrhUCYIRWpcOFlGiUSujic8usPtXZIJDw79NSZph0e2B-WTIueFU4iYE2FAMG3PW3QKHUCib49z_YCBYIGzPfENFGJSCO8eKH33WB4dKNc7AoBsZ5WPLvDf3qHJvqNDnkMc94voQ9bf-C7syDSeTaC37H1Pb_YOk-d5oWlcruBgo_4n5Evh24tAj-U7i86VHhlmWXu0itarRB16XeRqbIDT28o_pBtCVJxhTEyJtGYwp91azDWC18V8HeIM1q9eTsyWuCKBUEb2wTxH36wIoGKiwhPpyIvj-ZqckI9-qqI4Mb5HRSp8HG6_flICJL8ukp5-idrLfVEP2YelTMYeR3af4me3fdproSWXHUWU_k6tXEaeh6O_sR9ppdYQvUeGNL5Oja3mN156PSnvImqnmisu5sWe17AcqnIGx1CV-wmIBXtgSusphHf2cs9H8d5VBHotWtdJAzlG8ZKYvWlAZZxYWmsGeWW0u55h_nzy-ubHxPs3OfHTtpvZ3zGVxq4hliWsQFHqIcV-PU9KQKU_lGV4NFIecV1Z_EpxVme__vpskB3nDWwbH_y0Y_XPiUYljC3M7sEuJqs5xGlYTeTQKHnJZh8DduFnim5f72Zh-M-pKKd7AjO7w3TkfC8mAnUEShiH4of5mX5T6x4aAQqWOrKzgM231J0QTL9kFyo95wI6ttjLSvwLvo3W0PavUuHQcRgW6uQ7RWzFoBr1GtZn521pKsCZwzuHAEQCm527jUinRAPkSm4Qq37wkBPQMpa3NS4h-S2OwFccdxCTP4fvBFqP7maapwJ6vdqOH2R-TBp-2Bc6nmRun17y0TxoRm2IQ3uDT5nzpkbVYzfGiN1Q-RXw4Tf8H0QBJdAerbpUIdpmUVkwoORRxGNmL_P_emhQX3MtAdQHIxZat31Vqvge6B3uvV40vqB4wWSgi9O055dEr_kla5ZSjuCxhR42N4Zf3OwV6bongH9gMsQRdLEGOhDWI_QEGEYTpktr_6xDmsrEuAczwLo8d6F24NDCYITLG8h3g572EfxAGvgN5XbFwwbTq2ma_sq5xmouepK824sX08s6uNo1YlQbmp4SuBpgWzSHQ_WiZxiUuG9hKuSQ_J30vdrhVFCLDc4CWMKs-m89fZY0GuawduDnTN3pGsIUwXywAegQWbTkcQobxmbtDgaHAJ8-6P9TlrsLBhGykIgtxIgcdaCdo-slzY7bmXb0AbGQpE9WSaAYFoHRW0Y4WyKVhTc_pE0mXkjJLWrW5AtivxYi-KxfwLMLc9E5bnPEXkrXf48MSzKbhrtt4pYI9NbnZv42x88G3KGZR-PznUOoslqvX7I_hqyySKW303-AYJQrDeCVHIImZ4P4YCrHs0aGfnoZpW2uy5waYJXNCpWgruAbDl4xr8bds2MfGVoFyiyA9xpNnrJ2yyyZ00iMvcO3NHqL3dti07xUon26HZ7mclCFBTmhIYqDv_HFXtyZ8yuy3qHm4t_UtO856U1kkQNztsYb4BGXglw_mTB4ktLStV8UfjmNK2PAyJFNOeQ2dod9NHD1SmsxJ3gRZd9zglvodYBfVmKrSot0ftLCvij3sAr505QaFQcQ6Hxh4TY8781dn8xdMHjZ8HTofpsZLz5itt9ec26jjbyAL5FzndJuHREWqzTvQrwgiWGkKkGdNswPJTBKSG2CoFJaDpQYfeC2STqQwLU9Xfxc33GrOHyzcGjQF4SbMErSrqFf5rMxBO3QqkXSKtxWwweD0cnWysjJwBMRal3K-8gBqMIAcJwMjwt0djQfYxdqvpCfMFNjH3MYui_jjPDmpgHYPXw2Z6u7YZ_Aw4nM2ae94soQ9AoHKVJ-nz9wUXbw-zj67nxGe1KqtCaxXtx5ua9FY_XlEZqm2lSb6RDjzrKP8Uy9hLxwoL_jD4IVdYisHzofLLBzvnyBpS6ebrj30MzpownlhlJ5UA9qvbaUKFhqLiGalwnEUA7L4maXxe_8ZnXFnwM8d3KxLDJ0mnfomZMTNgDy6ELYWrI5pOuwO4pee844EbMEnJnwzGL94RVPp69RkZivRxzg8AWn16OlrqIjjutMXg1ig8y3cL7ijv5jzHx60ys7_tvRMjIVmcCR5sbeVY_TTBnDQ3Mg5NpxWfakFwHLSL_B25z19VdIq3fctvhFVGIS_mN-eXyTTmDrNL2YizGIzWGBxy4y4TPWufSvu0O1_IS3nlSz5V1ivRy6zdZIuAtSLTOlOQpjxVfq-Dq4w66wo5sGGTwzrglQmjyj30gv8uIcODqepNtVlV_DSK3hfEymnZlWlH0ec6Akv2pF_QQWl4r7jH0Zk-oS2gvyrgUeyn7EAWUs_UrfS4059Ny77HXJ_8L4jod7SLubwBl_2IvgxvtgvOca9zMv020ceNVrW7x_kR1y3eM30XIXDRr4QyL4-sAYJ0sODI5KrTSS6jIbHrtC__5jaeLFypAFkhofVJL59Kf", "summary": [ { "type": "summary_text", - "text": "**Interpreting weather data**\n\nThe tool returned just \"40 C,\" which feels quite minimal. It lacks details like conditions, so I'll say: \"Currently around 40\u00b0C in Florence, Italy.\" I wonder if I should mention hydration since it\u2019s so hot. The user's question was clear, and they might expect more info. I shouldn't invent details, so I\u2019ll keep it concise and offer to check for more specifics if needed. My final output will be: \"It's 40\u00b0C in Florence, Italy right now.\"" - }, - { - "type": "summary_text", - "text": "**Providing weather details**\n\nI\u2019m considering whether to offer more weather details like the forecast, wind, and humidity. Including a temperature conversion to Fahrenheit seems helpful, so let's convert 40\u00b0C. The calculation shows that 40\u00b0C equals 104\u00b0F. I should phrase my response clearly: \"Currently, it's 40\u00b0C (104\u00b0F) in Florence.\" I also want to keep it minimal, maybe just one line, and follow up with a question about whether the user would like more details. Keeping it concise is key!" - }, - { - "type": "summary_text", - "text": "**Creating a concise weather response**\n\nI need to keep the formatting light, so I propose this output: \"Florence, Italy: 40\u00b0C (104\u00b0F) right now. Want the forecast or details like wind and humidity?\" Timezone disclaimers aren\u2019t necessary here. I could also suggest heat safety, but let's keep it minimal, just one short sentence is best. Since the tool only returned \"40\u00b0C,\" my final phrasing would be: \"Right now in Florence, Italy, it's about 40\u00b0C (104\u00b0F). Want the forecast or more details?\" That feels concise and clear!" + "text": "**Providing weather update**\n\nOkay, I need to give the current weather in Florence, Italy. It's about 40\u00b0C, which converts to 104\u00b0F. I should ask if the user wants a forecast for today or the next few days. It might also be helpful to remind them to stay hydrated since it's very hot. But I need to keep it straightforward and minimal. So, here\u2019s what I\u2019ll present: \"Current weather in Florence, Italy: 40\u00b0C (104\u00b0F). Want the hourly or 7-day forecast?\"" } ] }, { - "id": "msg_0e319212d3811f510168f239a37318819e83590ffd0bf41e31", + "id": "msg_075b435690aee51e0169b3197f2a24819e815e6689dfc4d1e7", "type": "message", "status": "completed", "content": [ @@ -190,15 +188,17 @@ interactions: "type": "output_text", "annotations": [], "logprobs": [], - "text": "Right now in Florence, Italy it\u2019s about 40\u00b0C (104\u00b0F). Want the forecast or details like wind and humidity?" + "text": "It\u2019s currently about 40\u00b0C (104\u00b0F) in Florence, Italy. Would you like the hourly or 7-day forecast?" } ], "role": "assistant" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "high", "summary": "detailed" @@ -238,15 +238,15 @@ interactions: "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 261, + "input_tokens": 202, "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 544, + "output_tokens": 471, "output_tokens_details": { - "reasoning_tokens": 512 + "reasoning_tokens": 384 }, - "total_tokens": 805 + "total_tokens": 673 }, "user": null, "metadata": {} @@ -256,4 +256,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 16.104320209s + duration: 12.040060083s diff --git a/providertests/testdata/TestOpenAIResponsesWithSummaryThinking/openai-o4-mini/thinking-streaming.yaml b/providertests/testdata/TestOpenAIResponsesWithSummaryThinking/openai-o4-mini/thinking-streaming.yaml index 897d1665146aa2f5832dd342eaca400cdb5e7624..6ff391e974c2bb2461398d2ed341b5ef5c46c59a 100644 --- a/providertests/testdata/TestOpenAIResponsesWithSummaryThinking/openai-o4-mini/thinking-streaming.yaml +++ b/providertests/testdata/TestOpenAIResponsesWithSummaryThinking/openai-o4-mini/thinking-streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -25,59 +25,59 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0d54375cbcd869820168f239bca94c819cb1dd488b92e67279","object":"response","created_at":1760704956,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_0f5967458d374a400169b3198a8ba8819296ec831ef38577b8","object":"response","created_at":1773345162,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0d54375cbcd869820168f239bca94c819cb1dd488b92e67279","object":"response","created_at":1760704956,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_0f5967458d374a400169b3198a8ba8819296ec831ef38577b8","object":"response","created_at":1773345162,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_0d54375cbcd869820168f239bd1e6c819cb857543cb0e2660c","type":"reasoning","encrypted_content":"gAAAAABo8jm966Ab9kxmDUu8vgpyqAPTcdexRXmAuzGq9I98ODGUbEphdXO5ikWTpzGh9YeGP_IkNo-9JsD1yJGbxWtqOGdDjTEs3QmNHUfa3UR-xqTzcjOvmq3thRE2DEQ5_-EXkPfYSAHkPn5lQXBECz6vkzRsncSK1EcTyGDrVXvnkRpiMdD3BWeA7wofiiZzcyk7j5R-BzDWH3TUE2ix3kqzCBY7dQJDHaLCqv-SSiIcmvqYNOxPmujSY_6O0PqJ6Ze5VzFs9pX3RLL2akYYKMjJF4gb6u7S_ZHKzjWWJcuywcn6t_b3l_PF3SL2MKPZLEGbHWIp8fCMo2FJbmHyJTI102X8rTLikr4qStE6oF0PzEHsbqrgXXE8BYDgGjF5dUbn_3Hm9yDJUWqZ4qoo8RuKLgBweNkaFOU_M3GC5vWHVSaAp5vNTwXZoWHm4sEa1Hp8tORuPFn-_Y-Tp6BuFViCZ86K9QIUcVRaTGYH_yFyqIKV7FhpQIbnp1p7GOEHUQksfk29ZlboKbylbOpTlt5sqgLY_MPUUiwJortZHikNr596BBhrGgylHBq57FK3hkIGYqBQ0XZQ9WT5jhNP3NmUDdjwNRfuh_nOGeRcXyP2otI9Cu_iWJF9lUBi4-1iwwEiTFrFc62WNGubgvYSd6nf4DcdDiO5VebGSrkdDKNt2lfV99wtHiVykHMtt6eNosHMdnmK1AVBNQhqEP94J-DnYEQeNgTzRsAUgjhiVG0UC5Gep5kYRA5oKlGZxIrmL9DD8kyCO7ASWltyv4y5sczvkQjS0LlulePcPPDofKaLZV8BzD7_alBKyeg1DrTxK0TRJWEP","summary":[]}} + data: {"type":"response.output_item.added","item":{"id":"rs_0f5967458d374a400169b3198b5c3c81929593ebae4f73c5a1","type":"reasoning","encrypted_content":"gAAAAABpsxmLfnaOVal-y1QoHC_f-xrEAHfOq_qqSPrfAeXEWaMIRDyeacLClp6l-Vn-sNI-IuHFPaXqQ-ouC_xjew1q9ZitVbGtiDoECwwahI7c8YMTsT7HO-tinnZ-q5XvaKzf9LdE-xJjN5_PQijx-EquAQWmJjD7v0FXxY7YMhsek1xazkBcHHDNRme7_Khg-PTGmEqbKhFpnZe7fRd9_yP96iiVv4sE9wOz7jLzFP9-0Tjd6nb3zQyhFf9FD0ybIfskuaTOcWh194gVuedscufgzUxngb8Ana5RtYCt8kPrq6qczQ1V9A04DLzy_my-Ldj1Wx5BL-ttfi3xSONVQ4w_3e8CJPllUx0lX3ptyE3aobZYBmKJpaYcy8Mxv05jty-7eWujTVwn2a5WESDG8GvftqElgQ5Kk-2yyjCd_okXg4xeMGPsPINn7wtJTS1KQZr1IvS5dlI6sOvX74ImepjHAxJ2Fzo2Jbw-NYccd3sq8YBdKbtFo8ACByATsHL9_nMISTSsX0QwPzpoavFcj84O5d4-c38_SSjzC_iS9r2kZpOnwfhuVCRIsBpVETxWHMrCCsFwcvhh9uUX7OQ9kY3zLplvlNwLq45JcXgB2oaD3yayLv9SCffO4DutwTv8Aaxptj60fSUiE-33N1QlWjn3j8h-B5KjQWX7YoTy-iFDqmuG4I8S6x0whxP4pC3wPXAduVS-hsuYX25j-OKKJgtQwrWfuNd5s662lddwrLrCtYsocuA2kAgqrihUewYcYLARsdJuVud52nenSWov7F6UXHN8sHIgB9q9J16chB2WH_gOWnhsUtdigDR78hjpafKLlQKJ","summary":[]},"output_index":0,"sequence_number":2} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":3,"output_index":0,"item":{"id":"rs_0d54375cbcd869820168f239bd1e6c819cb857543cb0e2660c","type":"reasoning","encrypted_content":"gAAAAABo8jm_BRor21c1_tpxofq0vEOt2hnSz-KCJ6Opk0hPwYerfQOLqqDHRdvwI3i3kLTktso_kTh_2aTATZ8AOH05mJb_FjIjolDK8B4Rn8S4FAaM-nDjjBhiewwF_ssPYQiYSIS77kTHBCbhLFtQ5ke8EIk3Srnqj7QQoq3ibgxMpqsPcvQL1M5o4k2Iuk5wAc7TrQJVhowa4fXZom_UVcRk2k4TSMshd53M9vfINB5usceSHnhuUameDySH2OAMNGzL1WTnCHnoPz4pXbBRbaFRThkBwWJbFr3me-WYbXdf1w3c-HgcgdPcKu77yuqqIEn6Y4nD_G7duS9aRNZemTUp3azMxdXXROGHTRnlCJhsrlu3UNyagxF0kWq5nvDPBA_Fc_EUOkK9TOS4pzxow001dwlkfvCSH-aoeTGqL3WBtMs2uvWpR_z_jZ4X4uX4OdiCUNcSTJ5BNUB6A3r8K1XcFLDqbOXDcbnpz04d_loHMWmwcHLr2sXuKvAdc6t3LTxnprsyMCbkuBSNljvaLWD3BMot1v0tTkpuhYnafqCt9IM2OPVoVUcRewiuCHe9XDsiahpou2Q2vnJjbcOSZOjJDbpQQBnZ5ITsVz1ZkQTPL8LOQROfsN04q4PRIIQgd8qLcdl2NSO8UqYK6dQmyLbx26Qk07X3Q7nWamBPaaxRjjvryqgminDl6Cd-Hw-pMaWlwMxaeDZnrBLm6fVWFQJ71LE_2InuuZJoqcxYaaYsaeMAcWIaRrvjyL_7-F3YNDV4mSwfzmGr_XcE1DAX73l6OcwjLMMEQifxC-cl6xxFSXno5oXCKFiKDy_GFE52KXAahkORqpilPyALeE6H8VDnvOze-pWVUDaPBuWg3PcpIrmv56jcxf2VOIgyH2TweXzxwuZo4DIGKs3cTlc2xeWQhWtBOYPRMNx0RujyheKg1wygRMAiYrBWksSfXJWdWSjmjiXDOfIbYpscdZRpJK3rVs2zWbaPhpQasuLCHpama25lvCCHPqyGB5MVzaavk-17qqhBOejF7qbnfHcE6XpWWYQuOxNXffD-7a-3_p9Gljp8mzGHZl06o1_SE18eQU30ViNDQMnilAlQvcr99w7eBhlRRacUfdqkYdfbuQckZh5Q9Mo61nARmAtRtxNrJvmTr2K67QPehOd2i7whVWN02bRvKu_AuWCbJzwFD-x81p3K9tOdxND3blvq0PBCWWAPnYc4E8hMQcOrnU9te9zmfRDyJpt2dPYO2S1s_fXAjxPdeuMNe3gHGtbrnedbv7lXhgyR5Lka0Pn1lw0iGusfXW_kg4x7yW9y928GBLFpdMEjBgbsH8Mtddh8bjIyMKOjKoH1ZnoMikkm4A5C4CdSgSfj4UFeFE5teBLT4Gm0Pt2GFtjE8hs6fpEA5eaE2YG7U9Vz7TaxJQ90k2B2p9GmUInojbjQG4T6ZKxr7vHB62QsK_GA_NLINY9gIEzO_qrjqOayXmnm3fnhCXt7DYAG2FdQ5Ujbkaq5a5XlmKIFylV-1vqkZ77K7VbWxOf2ZW064-_onREmRQOU9IhjDzQ8M_bmOHWZkbZP-_a7Tj_fSbb_pFKfpEdG3DXAOrnA69yYfJuNx-TboGuca_EeNvZQlxkNjw9ufVCYgAHCo76-Vn9sjzXd51gM2YutpGondKE-as3L0a2PU46kQGI0LS-54v2ZLVhKx-qfIVzxLTV4dKOfzQZ9Cxpw1ce3mlo1QAPLm3W4pYCuuMbW2U1jBmcnzTTI39fiG5adZ8HC1CzoaUBKTd5E4vIId4Sidmif7QOVxw1bDegdRbuA51ft2irW1O0X8w==","summary":[]}} + data: {"type":"response.output_item.done","item":{"id":"rs_0f5967458d374a400169b3198b5c3c81929593ebae4f73c5a1","type":"reasoning","encrypted_content":"gAAAAABpsxmNq391WiqEa9VknUKZSqMO7_4N-dqE_moo0lodMuMYwnyjCZwI582xnw8B_MfoLm6nnYxzr57R8c4CeDegwbH6SW15-0SXrDZ-IFgFh-etTH3A3AeJi_Z0sUEft160Bdkum9fmjouS2KKSFnIJ43UZ82UH2F34xT5ApBB0PrxzydwOIZOdXJ1yMrJdE5Z1dsRMOSc0qn_iWoMUjlkFKzFg0gAiYj6OrOuIpk-Gjgcr7HkVpAgdu94Q0eLyFcpDcf4egfuDB7Zr4H5eBSncDVm2JnMI2CGfKzHHc0Y7Y8UYu3wknh_S0Kc0DMnu39zM6PAgXI3nnFsiOGZWdXztrCh_T6R73AAjS2_2FObG9D8_KpzNkwmOc-Hfp4l08QCeiMw87k_JSVXKd21BvKSoK5F-oVDBg3ZCyECeI6ZRteWSMB15ypKSQX8nLwTCIUAJsJ7Lw7yACnjDChGcQIQfxeWVlpaPbLhzaD4cGPIp331fXwfegrHk5msyn7BSHhQamUF6UHS8w4L9Mt7JSLfgi4gJgDd7ZPA4rCGRPX1g0KgAB5EWHxrb3m2ASH3F9ROg83d1F7NMOVdFc0ngwqoMsDbPJyzKijJYwHPFJpf1xxKxYWFfiX-IgvVhRU7c60yIoEY_r2YjNyFrmz9Lhp4-Rw7zp0EE1Nfoem2MRqxE8RqGjRztPX8Q7eMdNlpC8bdI-w8EaELnqO3LOGZHSSI_B0nlF-ebKFUkITHKRe9Nhx8PqUGZhQPWchzPEzDEvhX7oGyYPMtxCU76TY0wFOVN8Q9_o-4quiEIPzqnQQwOY0SETrbpKJllucPB3ul58sNAEvYlp8im1nxCUK8lLixH56QIGuYJtqahMeyEAdkEUJrNjQ8Lp50M5vZlSPNNQHbdG8mCaXkTFDu3ELxwjTM-rvKp6Cqs0mjhz0xV6ITLmAHLkNa9dOXI89tebmXWPleiJwyzscOdFXGs_2639efr-VyMVunEwM8pkZeBDKZhR1bCVlFwdYBHVT-vR_6eyWZKkbM8STeKFybcraSMsTOtw6DqxHu5MWMyD8dlNx_-cu1PGZRTSgALwGhqIMTpyB3r0Ub2PcanqGhk9U2YtTJdl0y64MAFDJviBNQ-BuSNYrdygGRYVtOJqYAonNtItgGG2dTefF0N3WLftlyyz2H0bsB2bRdlpFFR70noxf8MMCb1Jr3rt4UeV5JAKnzZeF8bKCGzi42D7ESVPb9KBaFdvUItE0PJQ_SMOOj-4fHl_2vO8qy3XZ6F8z4vY4mMiS2lIU-fF3cGlf5JxalEVQF3rmalFbv8NgnYYxDy5Qm04h96eJmSwLNDT2VXywgX1zF0iDaH8bnnrD4AbSfaglAQny-QyP4OxGekvGCVByvukNW3Blbjm7yf--30aN5_ezcYrrUHtUO__Ua-QjvEZObGZhj-J6a0lidhTZgR8rPtApPfMg8CMCC_t8U6EGAtBUErdRGFg0cTm3hfazCFACEBTrgZCtm7HXYNV5VtuPa4mZOrRQcTLqT2CKkgequMteu5l7CxWspN1T8cHmTVA0fQmK55UAZrdP6dcAuNS5SxMSQQYb5O7zifWYu2tke9pP0XSaWdx2QpD-KKswqm3cg9WwI1LPUu124J9DX49gqWUsfevcAwUevdZ-2VfTUgYUX03wgkC2RaIzpbDcT3Rc7RbRbvrdJnI3mKVyaEQGYeXELkoCjAEAnsej65AKR7GSvB3peGVRMJ40yy5KlqQKJ96NDh59J2HLzMQGxj---3o0AFCdz5XR4nLehrLt9lQ2c8NfYegjSPhwAnhiMFbw_vNxDE4dJfN6EvMUPiHHmE_67lGTifDXPNayLtGTuPzGG-9t-OK-HfeO_cZK0TTcexT2LH32noRtA-aAt7qE0yZJ19NFSCsCTTYgIzG_vzFYrDxKBQecO1b4T6kN2MIWRxW9xM2ic-Ll9SCH14b2AlNEanxVytQXDJ74dVFjTyTZd8q9XrNHFZcxgaWkTZ1Ea__CajoN2XJeaMKL8AynTZ4Pt0nQUL_rHx2qjdIJ2cPw6QM5CP36BaIfmd0HLaxCmyGzjttc2Cx8TiutWb2KLhwrLEPiOT-I91oPKw4isjzWcjRg8_","summary":[]},"output_index":0,"sequence_number":3} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":4,"output_index":1,"item":{"id":"fc_0d54375cbcd869820168f239bf07c8819c860ab0101d690dd0","type":"function_call","status":"in_progress","arguments":"","call_id":"call_xtoGn5KFzCOsLyeQv0INLRP3","name":"weather"}} + data: {"type":"response.output_item.added","item":{"id":"fc_0f5967458d374a400169b3198d3a7c8192bd4fc65dc0923068","type":"function_call","status":"in_progress","arguments":"","call_id":"call_OC2f35aKdph1vnwdji5XnSu3","name":"weather"},"output_index":1,"sequence_number":4} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":5,"item_id":"fc_0d54375cbcd869820168f239bf07c8819c860ab0101d690dd0","output_index":1,"delta":"{\"","obfuscation":"7BtlAO7Mx2o6Z6"} + data: {"type":"response.function_call_arguments.delta","delta":"{\"","item_id":"fc_0f5967458d374a400169b3198d3a7c8192bd4fc65dc0923068","obfuscation":"2SU7gmR6VqpXg4","output_index":1,"sequence_number":5} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":6,"item_id":"fc_0d54375cbcd869820168f239bf07c8819c860ab0101d690dd0","output_index":1,"delta":"location","obfuscation":"WF29iSKj"} + data: {"type":"response.function_call_arguments.delta","delta":"location","item_id":"fc_0f5967458d374a400169b3198d3a7c8192bd4fc65dc0923068","obfuscation":"ZrNJylLh","output_index":1,"sequence_number":6} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":7,"item_id":"fc_0d54375cbcd869820168f239bf07c8819c860ab0101d690dd0","output_index":1,"delta":"\":\"","obfuscation":"6ZfrxGCQGengB"} + data: {"type":"response.function_call_arguments.delta","delta":"\":\"","item_id":"fc_0f5967458d374a400169b3198d3a7c8192bd4fc65dc0923068","obfuscation":"Lcvv8lSS7nn2O","output_index":1,"sequence_number":7} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":8,"item_id":"fc_0d54375cbcd869820168f239bf07c8819c860ab0101d690dd0","output_index":1,"delta":"Flor","obfuscation":"5kXd27iNahFd"} + data: {"type":"response.function_call_arguments.delta","delta":"Flor","item_id":"fc_0f5967458d374a400169b3198d3a7c8192bd4fc65dc0923068","obfuscation":"m3cOnHhdTgNN","output_index":1,"sequence_number":8} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":9,"item_id":"fc_0d54375cbcd869820168f239bf07c8819c860ab0101d690dd0","output_index":1,"delta":"ence","obfuscation":"XWKU2l3KEWcH"} + data: {"type":"response.function_call_arguments.delta","delta":"ence","item_id":"fc_0f5967458d374a400169b3198d3a7c8192bd4fc65dc0923068","obfuscation":"PbnJ4bu7yK44","output_index":1,"sequence_number":9} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":10,"item_id":"fc_0d54375cbcd869820168f239bf07c8819c860ab0101d690dd0","output_index":1,"delta":",","obfuscation":"GY2UWsg8JTCe0zY"} + data: {"type":"response.function_call_arguments.delta","delta":",","item_id":"fc_0f5967458d374a400169b3198d3a7c8192bd4fc65dc0923068","obfuscation":"Isq3ubXRYBZGCPr","output_index":1,"sequence_number":10} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":11,"item_id":"fc_0d54375cbcd869820168f239bf07c8819c860ab0101d690dd0","output_index":1,"delta":" Italy","obfuscation":"SOOx4hbvX7"} + data: {"type":"response.function_call_arguments.delta","delta":" Italy","item_id":"fc_0f5967458d374a400169b3198d3a7c8192bd4fc65dc0923068","obfuscation":"48nky2hUKN","output_index":1,"sequence_number":11} event: response.function_call_arguments.delta - data: {"type":"response.function_call_arguments.delta","sequence_number":12,"item_id":"fc_0d54375cbcd869820168f239bf07c8819c860ab0101d690dd0","output_index":1,"delta":"\"}","obfuscation":"XHTX3DFoWYoYuA"} + data: {"type":"response.function_call_arguments.delta","delta":"\"}","item_id":"fc_0f5967458d374a400169b3198d3a7c8192bd4fc65dc0923068","obfuscation":"1uOMb2wWBLuuEI","output_index":1,"sequence_number":12} event: response.function_call_arguments.done - data: {"type":"response.function_call_arguments.done","sequence_number":13,"item_id":"fc_0d54375cbcd869820168f239bf07c8819c860ab0101d690dd0","output_index":1,"arguments":"{\"location\":\"Florence, Italy\"}"} + data: {"type":"response.function_call_arguments.done","arguments":"{\"location\":\"Florence, Italy\"}","item_id":"fc_0f5967458d374a400169b3198d3a7c8192bd4fc65dc0923068","output_index":1,"sequence_number":13} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":14,"output_index":1,"item":{"id":"fc_0d54375cbcd869820168f239bf07c8819c860ab0101d690dd0","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_xtoGn5KFzCOsLyeQv0INLRP3","name":"weather"}} + data: {"type":"response.output_item.done","item":{"id":"fc_0f5967458d374a400169b3198d3a7c8192bd4fc65dc0923068","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_OC2f35aKdph1vnwdji5XnSu3","name":"weather"},"output_index":1,"sequence_number":14} event: response.completed - data: {"type":"response.completed","sequence_number":15,"response":{"id":"resp_0d54375cbcd869820168f239bca94c819cb1dd488b92e67279","object":"response","created_at":1760704956,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[{"id":"rs_0d54375cbcd869820168f239bd1e6c819cb857543cb0e2660c","type":"reasoning","encrypted_content":"gAAAAABo8jm_AGutqoL73fW2d0o9tLvHVjgEVOuAmdXp5TeNZFZFEMSdvxcpOzSdtd6yO0lEEb4PTvUcM994h_d4knd6Gz4-Iko3UJMnvBf4k6gEgtbuW8bRIHkVz1m9psGGU6BLJ-w44uNoLkA_Hly6eu7LUYLP4Gq6FVwGIeMhtCRxsuOMAyKbZRc1_-Keo7E_pK7V48KWSfZN5JrxhG5ddgtFJsGXd0ELhcv9tkh_bNrXsJS8ao3OeOq_oA9c2SqtUCiLzqfkTNwyvS1k6W0nGBoHQbz_y0YO8QUIvZLkbTBBu-axHjl_aLwFfo52e97hS_XnvDwPp4u718QWOkVtfr7OZgDOGJLO5PXPrnh2mSwDPYI73s6X_j4fA776FF4tiDLKkie35mUF8fixgwgPmZ9yyHtIJIDaNVYSYx0fy4P0-c_p7kTjIP8IiTxZl3aKmUa72mTYAk4Qhiby5ys5l3WtuBz38wjNg-yZPlY5xszPZe2y8THCr4viOqsbSh7mytEvjx7Kbe3OumVayR4nBGf2t4q720vsYm3gb9WPyjhjB_5qBZUoK7C6kItlF_wuwExIogZKLtNB2fmqHGye5h8KdZmEnnduqetRXSOAystOZngHwOJOyL4nJr5QbdIaWp5sv8UNxQaJLjokRV_LCjSB007SbpMOTWiJgblKlpTBWVjAxnmbyRF0qXQvMO-XfXOrMwPXdjq23EVhTmNDRkC8JCtjV38oVdoqe07_nfXBXtby55oxqjeOs98AJF6Ch_lQkWK8KelZ8NzpVBeJqD5tcnGNeDD8qxvSk-SOYkiyAmYyXlMLUNRHU531hLyfCoo7Yn07oVmEIwmwLvV7qqLTH_W_pQI84lCp0M1dgoQewG7xiyd8RfGgySii0C3yBaKGcWrNJjQ_9876SgfY3ZMA5ArN9X612ixck_5L0Ff9OzAPwzpXzRI_j1SzG_so8h3yFm0-hs8RWSkGZU-kuMOubfkon7QjDP_NGyDFREDGLxK4n_NxbXx86TzuoRXAJNcdGeRG-5L1HRqkOgBHMKSSnPCv0gY3UvbAwy1kOYmqLSOubZ685WbbNOMyJTx-qXQ2cGdnE0oqEmL-WKVmOv8iDVWZ52iHgFfSOOzR88zeDVBjdb96uZBcysIMMwkFEvfmHLckN48HXKqEDRV6RbTsSgBp1bC8oseCWhxdBBNnSjXFJ7hBub_ACEMM-N227mQIhdURYfIt06IZOCgBscApwMkSOexzxDD-sXszF6GtXQToPjXDEv9oRvciRq-QOaTg2-KwjCaEDsf3KcpF0MPHkoZxmQKGd1MlyLo2ACjmb-N4KCqITw0h9V7GQFYEJK-zNa7ksveM4nfVFkU52ygZSv-yBz2onwjbY_g5jZRZWxLApb1R6gNAuf-gv_6b-6rNfqskQpdlwFZInqHvZWsZ-MFEw35Ea2dgQgKjlE6fWP6RKrGRO23gYAWf47jxOFTNbc3TrvXQCfXC_lqDm8v9gEIYIePJx3u4tf8RaPQ7CiJfTBWP57npDVE2QvHIugPtUMr3GtJSMwYVnAAwLbhKTugCPl48K4EV7tMb8KHER7jxQibyvPzLg8UE_lbrKQYm30-eN-FVUJIo-wx9xFT3eYMHfu25NJKf1QGFoqJQQ5bE2tlwP8bzMxnJt4StLxrWWxVh3pByhEfq68r0ge7gqa-SQO34vJK8UYs_8YMhjnAz0lJu6D6MVOuBRxrXG_-q65LQZz2JK64EOl7zuogJI2LitaZ15MB5qjyOOyjNLLIj-SsZrNkk9vMc_EGabOSDxVYlAVmuJY1x0ElswJS2nX2gHg==","summary":[]},{"id":"fc_0d54375cbcd869820168f239bf07c8819c860ab0101d690dd0","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_xtoGn5KFzCOsLyeQv0INLRP3","name":"weather"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":60,"input_tokens_details":{"cached_tokens":0},"output_tokens":150,"output_tokens_details":{"reasoning_tokens":128},"total_tokens":210},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_0f5967458d374a400169b3198a8ba8819296ec831ef38577b8","object":"response","created_at":1773345162,"status":"completed","background":false,"completed_at":1773345165,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[{"id":"rs_0f5967458d374a400169b3198b5c3c81929593ebae4f73c5a1","type":"reasoning","encrypted_content":"gAAAAABpsxmNqS1BdNeuGCGkyQdrxdeoO9HPbTffHEFYmHXM7vx9NZFWU6lvrZC32qk23AOcrXCM-Q1OMW9XfWNdTu60bnxBJ_bbWAiq86SaKs1pT68Hh7vr5dfGi8t2tNwa-p8ytI4hQlfRqf8lu65qIonohkTclPrlFVSfOGmnlvU4HiWso5ZvDPuL01MrisaK2GSyeV8ddDBWYuiMkJveXRuL2FhOQGeWrFgMZ3-IN5eZuTxrJntTIZ7gNlvKWihYj83RxXl0WaIkz9dpSDnWLAeQD2cFvrnfOzGknIQ06eiyFd6kOKIzE5QG8d6zcfIax6xvZeje7fCcaxGQXt407GbHGMUG6IZf21NEhVv8TOYhFg3YBd8e6xbaJrPozxD6caYO5tpC9pGxSMpo53U6WTg1XPCMDA1WxKWneoRUElg86Rx7rXZIl2fnCCCUHTbD5xUiYH_eKcHL98rGtbPz0R19EqPe7hkCFHbagblmx07N--TRcPcDFb26Z4ueN5R1jgS-0a1epg7GgZoF0X1-ht8g2jGTw0GitxmQyHL5lQYy6GwzROcozQ-0jla4ARNobVRpAGElk-_Ml6gdvSK8K_rFna2xsRLl1JUmSoSHJSza_aJjlHT_LvJsO_JBp0BBUFYs3uWY4q8kdnb0O1QA1n8dH9xc1FU2G23RWg2NT4iXRjZ59snEWrNHNTY3KfnXdwXI8f7EcuqhJbVRHk7-q52E0TgjpQUBx3NtwKZckMXtTms4NlBGsqBgTFggCIXenK62DSTkr170-EqGbaWpixdjB-lHXD2DcRJlWcNla6xMwxLLXQf_JFIfl4AavGplLB2rOThLoE9iCrsq1CscrBTUFQjHOlWr9lJlxU-Fx0zg9wU6IHbGYnpJRX2T2Qdid8DBIkrlEaD0ctyO1xNO80UEktaRVXNwr-Lp9qjWfF0iUTDBQgB1DlMpAPC2mSpKkycH2nt_pohXzWbDcq_taajdSV-ZluQrhGg36-Lkc8GVi_LkWvn48_aVi18NCFpCWNgWYuEQ-RcBCHM9Ojnrj0TLIJtoFe9ajREk1VsuqM8CHSNMkcv72OZ0CK-I9NxxNBMCI-4_TOQA-1k224bMjqRF3ZR8FWRa64KU-k0C_z5qjut-lgx3NyegUT6sQDl16NzrkfLuAIb0LetOajPtoKVFqskUPTTUPscyGEb5K_ZgX-EPw5aCyoWyoaof7FDjFG7_xZQpNpn0ibq-E72JBUgFtgAWLJj9DBYrefb1EmPhzeb82_R5Uk0pLJRGTB3qiesOyOMESMnj7zuSRZFGMJolBOyCnQE-hpnvJD7u4twU3Ob1404G2QBB7jlQyh6KClS1kVczp2HQYa-PIZITW4bWY25HhG1bmx-OxW9hYG99ECGnkM6vh86NnIK_64OAkpGSI_Sm1rWMvDNu2y6QoyVcMh7TFjGYEVCM9ZzJZD4ds1SvqQhOndAKFYzyv_1FtWKJQU04MohejM5CNW4sytdQdQdOeInum98rmeD8W07bGphnuCJahCGeTaTCKgey-75M3cf7VtNj38zReUfhdQ4H_DpAgqWggNRV3SFDKH5wlYTamxNv1dBQB6zAZSgO6x5PrVoQgZluH1dxD3CJWsHoFGbSKhlLFpE3F0RW46GoHsLrBG64ka-xY6Wr-ObBmtfrIa1k5tZOkO4Xqg9i4u_JI5DQaCckfpb-jARDZcgFqgwNEj8ZkzU_U3QfWktnPGgs3lC223kEde-DUXEjfTV8pN6fGXaxWFIu1yyf7ek4VxxitrURlusJR8ctE4YPZwAcwa2ZqESHix39D_-04a_jqkBMRtJFRCMFybvnKrriTgjBCpXZm7UUFTYQ-s8gUzy40wKIrBssf4bfudJz7_wX9uv5gHInFZFZVN3GrIZlP28cTjhVBmR85MbhMUB4-RC9JuvNs5K-gRBovk74hjoV5Jyb-nbWPlHbr9KQAlKmq53dKYBRc0l3Be_-VSJQLZC8vuGdeP4O-lfRXouceUDRQYjsDr6kk1vauMg5Kp6_LNGtr_5uLmuRwYQgi-nrORMedH0lF8_0ijxhqiHg4L8OymIFfV4tZ3qd0mefZd21gpX7DDdHgpsUgdymMzIHUNi2ctNr","summary":[]},{"id":"fc_0f5967458d374a400169b3198d3a7c8192bd4fc65dc0923068","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_OC2f35aKdph1vnwdji5XnSu3","name":"weather"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":60,"input_tokens_details":{"cached_tokens":0},"output_tokens":226,"output_tokens_details":{"reasoning_tokens":192},"total_tokens":286},"user":null,"metadata":{}},"sequence_number":15} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 294.551333ms + duration: 309.979125ms - id: 1 request: proto: HTTP/1.1 @@ -85,14 +85,14 @@ interactions: proto_minor: 1 content_length: 1764 host: "" - body: '{"store":false,"include":["reasoning.encrypted_content"],"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence, Italy?","type":"input_text"}],"role":"user"},{"id":"rs_0d54375cbcd869820168f239bd1e6c819cb857543cb0e2660c","summary":[],"encrypted_content":"gAAAAABo8jm966Ab9kxmDUu8vgpyqAPTcdexRXmAuzGq9I98ODGUbEphdXO5ikWTpzGh9YeGP_IkNo-9JsD1yJGbxWtqOGdDjTEs3QmNHUfa3UR-xqTzcjOvmq3thRE2DEQ5_-EXkPfYSAHkPn5lQXBECz6vkzRsncSK1EcTyGDrVXvnkRpiMdD3BWeA7wofiiZzcyk7j5R-BzDWH3TUE2ix3kqzCBY7dQJDHaLCqv-SSiIcmvqYNOxPmujSY_6O0PqJ6Ze5VzFs9pX3RLL2akYYKMjJF4gb6u7S_ZHKzjWWJcuywcn6t_b3l_PF3SL2MKPZLEGbHWIp8fCMo2FJbmHyJTI102X8rTLikr4qStE6oF0PzEHsbqrgXXE8BYDgGjF5dUbn_3Hm9yDJUWqZ4qoo8RuKLgBweNkaFOU_M3GC5vWHVSaAp5vNTwXZoWHm4sEa1Hp8tORuPFn-_Y-Tp6BuFViCZ86K9QIUcVRaTGYH_yFyqIKV7FhpQIbnp1p7GOEHUQksfk29ZlboKbylbOpTlt5sqgLY_MPUUiwJortZHikNr596BBhrGgylHBq57FK3hkIGYqBQ0XZQ9WT5jhNP3NmUDdjwNRfuh_nOGeRcXyP2otI9Cu_iWJF9lUBi4-1iwwEiTFrFc62WNGubgvYSd6nf4DcdDiO5VebGSrkdDKNt2lfV99wtHiVykHMtt6eNosHMdnmK1AVBNQhqEP94J-DnYEQeNgTzRsAUgjhiVG0UC5Gep5kYRA5oKlGZxIrmL9DD8kyCO7ASWltyv4y5sczvkQjS0LlulePcPPDofKaLZV8BzD7_alBKyeg1DrTxK0TRJWEP","type":"reasoning"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_xtoGn5KFzCOsLyeQv0INLRP3","name":"weather","type":"function_call"},{"call_id":"call_xtoGn5KFzCOsLyeQv0INLRP3","output":"40 C","type":"function_call_output"}],"model":"o4-mini","reasoning":{"effort":"high","summary":"auto"},"tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}' + body: '{"store":false,"include":["reasoning.encrypted_content"],"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence, Italy?","type":"input_text"}],"role":"user"},{"id":"rs_0f5967458d374a400169b3198b5c3c81929593ebae4f73c5a1","summary":[],"encrypted_content":"gAAAAABpsxmLfnaOVal-y1QoHC_f-xrEAHfOq_qqSPrfAeXEWaMIRDyeacLClp6l-Vn-sNI-IuHFPaXqQ-ouC_xjew1q9ZitVbGtiDoECwwahI7c8YMTsT7HO-tinnZ-q5XvaKzf9LdE-xJjN5_PQijx-EquAQWmJjD7v0FXxY7YMhsek1xazkBcHHDNRme7_Khg-PTGmEqbKhFpnZe7fRd9_yP96iiVv4sE9wOz7jLzFP9-0Tjd6nb3zQyhFf9FD0ybIfskuaTOcWh194gVuedscufgzUxngb8Ana5RtYCt8kPrq6qczQ1V9A04DLzy_my-Ldj1Wx5BL-ttfi3xSONVQ4w_3e8CJPllUx0lX3ptyE3aobZYBmKJpaYcy8Mxv05jty-7eWujTVwn2a5WESDG8GvftqElgQ5Kk-2yyjCd_okXg4xeMGPsPINn7wtJTS1KQZr1IvS5dlI6sOvX74ImepjHAxJ2Fzo2Jbw-NYccd3sq8YBdKbtFo8ACByATsHL9_nMISTSsX0QwPzpoavFcj84O5d4-c38_SSjzC_iS9r2kZpOnwfhuVCRIsBpVETxWHMrCCsFwcvhh9uUX7OQ9kY3zLplvlNwLq45JcXgB2oaD3yayLv9SCffO4DutwTv8Aaxptj60fSUiE-33N1QlWjn3j8h-B5KjQWX7YoTy-iFDqmuG4I8S6x0whxP4pC3wPXAduVS-hsuYX25j-OKKJgtQwrWfuNd5s662lddwrLrCtYsocuA2kAgqrihUewYcYLARsdJuVud52nenSWov7F6UXHN8sHIgB9q9J16chB2WH_gOWnhsUtdigDR78hjpafKLlQKJ","type":"reasoning"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_OC2f35aKdph1vnwdji5XnSu3","name":"weather","type":"function_call"},{"call_id":"call_OC2f35aKdph1vnwdji5XnSu3","output":"40 C","type":"function_call_output"}],"model":"o4-mini","reasoning":{"effort":"high","summary":"auto"},"tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -102,131 +102,221 @@ interactions: content_length: -1 body: |+ event: response.created - data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0d54375cbcd869820168f239bf6a9c819c801b36862f6e7a61","object":"response","created_at":1760704959,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.created","response":{"id":"resp_0f5967458d374a400169b3198d90008192ab373708b985eeb4","object":"response","created_at":1773345165,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":0} event: response.in_progress - data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0d54375cbcd869820168f239bf6a9c819c801b36862f6e7a61","object":"response","created_at":1760704959,"status":"in_progress","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}} + data: {"type":"response.in_progress","response":{"id":"resp_0f5967458d374a400169b3198d90008192ab373708b985eeb4","object":"response","created_at":1773345165,"status":"in_progress","background":false,"completed_at":null,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}},"sequence_number":1} event: response.output_item.added - data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","type":"message","status":"in_progress","content":[],"role":"assistant"}} + data: {"type":"response.output_item.added","item":{"id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","type":"message","status":"in_progress","content":[],"role":"assistant"},"output_index":0,"sequence_number":2} event: response.content_part.added - data: {"type":"response.content_part.added","sequence_number":3,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}} + data: {"type":"response.content_part.added","content_index":0,"item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""},"sequence_number":3} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":4,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":"The","logprobs":[],"obfuscation":"cvpjFBvoJARCV"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"The","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"ONr4uSmBIKwBc","output_index":0,"sequence_number":4} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":5,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" current","logprobs":[],"obfuscation":"r23DC7HG"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" current","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"Zc3AWWFQ","output_index":0,"sequence_number":5} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" temperature","logprobs":[],"obfuscation":"vw5U"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" temperature","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"p6gN","output_index":0,"sequence_number":6} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" in","logprobs":[],"obfuscation":"g51yWh34TxVhZ"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" in","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"cfOIUpArSSsOS","output_index":0,"sequence_number":7} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":8,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" Florence","logprobs":[],"obfuscation":"B8h9Wg6"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Florence","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"TSCgdt5","output_index":0,"sequence_number":8} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":9,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":",","logprobs":[],"obfuscation":"LH9ks9NYw3Q65KG"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"4I9V6IN3uvtGivp","output_index":0,"sequence_number":9} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":10,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" Italy","logprobs":[],"obfuscation":"KZ7KqLPvqg"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" Italy","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"MrEjnNTU2C","output_index":0,"sequence_number":10} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":11,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" is","logprobs":[],"obfuscation":"hZ0HxwBJjNUPc"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" is","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"70CEgLpK0HcuC","output_index":0,"sequence_number":11} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":12,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" ","logprobs":[],"obfuscation":"kHLsqD2S27DYjTo"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" ","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"fLFo8UsEVoAz5C6","output_index":0,"sequence_number":12} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":13,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":"40","logprobs":[],"obfuscation":"qaVfQmMbDUPiGs"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"40","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"G4XFp9RRyAcRGY","output_index":0,"sequence_number":13} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":14,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":"°C","logprobs":[],"obfuscation":"KQr2dtLUTz416B"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"°C","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"hJ9vF0eSbEJbjf","output_index":0,"sequence_number":14} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":15,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":".","logprobs":[],"obfuscation":"5KwC7kdIdFYdnJ2"} + data: {"type":"response.output_text.delta","content_index":0,"delta":".","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"J4At1vWlr1PphtH","output_index":0,"sequence_number":15} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":16,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" It","logprobs":[],"obfuscation":"XfIwteIiWTMyO"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" It's","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"npYaIwptxbW","output_index":0,"sequence_number":16} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":17,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":"’s","logprobs":[],"obfuscation":"8yRZZfbJxgatfU"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" quite","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"jmMw6IZ4yh","output_index":0,"sequence_number":17} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":18,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" quite","logprobs":[],"obfuscation":"ZF2PkVf3Pk"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" hot","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"n6Gv3TYQn3x5","output_index":0,"sequence_number":18} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":19,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" hot","logprobs":[],"obfuscation":"pkyDzfoOhyQk"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"EGfgOfTNqiYHipr","output_index":0,"sequence_number":19} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":20,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":"—","logprobs":[],"obfuscation":"OqqqjEzO8fLvvSu"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" so","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"zEEIPCe437By0","output_index":0,"sequence_number":20} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":21,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":"make","logprobs":[],"obfuscation":"3jf5lV3C84Ck"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" if","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"uvwsiGnrMY9Gx","output_index":0,"sequence_number":21} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":22,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" sure","logprobs":[],"obfuscation":"6dFqxVXpm8e"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" you","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"pgLOCp3ZkLFv","output_index":0,"sequence_number":22} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":23,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" to","logprobs":[],"obfuscation":"4OusNjUQ4vIrW"} + data: {"type":"response.output_text.delta","content_index":0,"delta":"’re","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"9pfWgoEbmLia1","output_index":0,"sequence_number":23} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":24,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" stay","logprobs":[],"obfuscation":"5EejczIY03X"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" heading","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"6hlfru7B","output_index":0,"sequence_number":24} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":25,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" hydrated","logprobs":[],"obfuscation":"Rd1Fv9i"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" outdoors","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"MGGcHby","output_index":0,"sequence_number":25} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":26,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" and","logprobs":[],"obfuscation":"jMUvUMm7IENg"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"C34ol21zirWTlPb","output_index":0,"sequence_number":26} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":27,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" avoid","logprobs":[],"obfuscation":"fmsDpQ3bzl"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" consider","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"P0V6Jhj","output_index":0,"sequence_number":27} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":28,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" being","logprobs":[],"obfuscation":"fbE6ah2tDh"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" staying","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"ot09qFTe","output_index":0,"sequence_number":28} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":29,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" out","logprobs":[],"obfuscation":"RkCDBQ4hjbJD"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" hydrated","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"5kr63tm","output_index":0,"sequence_number":29} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":30,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" in","logprobs":[],"obfuscation":"IZErEJhaQEKoc"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"tmr6uS8z09L6why","output_index":0,"sequence_number":30} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":31,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" the","logprobs":[],"obfuscation":"hqvyeJZJz4rH"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" wearing","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"DLok2f5m","output_index":0,"sequence_number":31} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":32,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" midday","logprobs":[],"obfuscation":"FJSIzJ4WT"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" light","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"2ansue0Ppc","output_index":0,"sequence_number":32} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":33,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" sun","logprobs":[],"obfuscation":"G8x1ix01cpoz"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"0cO7Ntq05vymUbW","output_index":0,"sequence_number":33} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":34,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" if","logprobs":[],"obfuscation":"BwsVzUaVVuLUv"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" breathable","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"4l8Zn","output_index":0,"sequence_number":34} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":35,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":" possible","logprobs":[],"obfuscation":"fxhEfn5"} + data: {"type":"response.output_text.delta","content_index":0,"delta":" clothing","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"rfgv4zM","output_index":0,"sequence_number":35} event: response.output_text.delta - data: {"type":"response.output_text.delta","sequence_number":36,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"delta":"!","logprobs":[],"obfuscation":"HHcABqGoEgJfqI4"} + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"T6QWfZxA80oTjIk","output_index":0,"sequence_number":36} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" and","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"vJ6ZgFoyq5cq","output_index":0,"sequence_number":37} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" seeking","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"o2hP0xaJ","output_index":0,"sequence_number":38} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" shade","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"FYhcueAAcT","output_index":0,"sequence_number":39} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" or","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"HkpzX4cyRiHZC","output_index":0,"sequence_number":40} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" air","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"qd2UeFhVFAWx","output_index":0,"sequence_number":41} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":"-conditioned","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"CSg6","output_index":0,"sequence_number":42} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" spaces","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"tyJeuMTo2","output_index":0,"sequence_number":43} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" when","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"wmJtIM2cQ5H","output_index":0,"sequence_number":44} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" possible","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"Zfj3nAa","output_index":0,"sequence_number":45} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":".","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"0THGPWMaBEYYSpG","output_index":0,"sequence_number":46} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" Let","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"JQAKbv2z87AF","output_index":0,"sequence_number":47} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" me","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"ivnSborJuB9vI","output_index":0,"sequence_number":48} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" know","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"oFJ8WeKijZM","output_index":0,"sequence_number":49} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" if","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"WaInxNtOXCnYz","output_index":0,"sequence_number":50} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" you","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"QDzU0aZw25b4","output_index":0,"sequence_number":51} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":"’d","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"srcyXarzaxbYzG","output_index":0,"sequence_number":52} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" like","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"cHnkCxyP949","output_index":0,"sequence_number":53} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" more","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"u7qG8BHDQP9","output_index":0,"sequence_number":54} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" details","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"G08bJXRy","output_index":0,"sequence_number":55} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":"—","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"robkwdicftaRgGx","output_index":0,"sequence_number":56} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":"like","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"wCIPLRkJbK2h","output_index":0,"sequence_number":57} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" humidity","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"4YPc5bD","output_index":0,"sequence_number":58} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"Dt7iL7ey31cNvaL","output_index":0,"sequence_number":59} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" wind","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"n5oiaCKrLUE","output_index":0,"sequence_number":60} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" conditions","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"dWIu1","output_index":0,"sequence_number":61} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":",","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"EMbPz5kuNHPLP6L","output_index":0,"sequence_number":62} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" or","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"mnK49w7Ej1698","output_index":0,"sequence_number":63} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" a","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"icxFx5GViv6z51","output_index":0,"sequence_number":64} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":" forecast","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"eOwSpec","output_index":0,"sequence_number":65} + + event: response.output_text.delta + data: {"type":"response.output_text.delta","content_index":0,"delta":"!","item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"obfuscation":"PTKmmbXwRG7zDm7","output_index":0,"sequence_number":66} event: response.output_text.done - data: {"type":"response.output_text.done","sequence_number":37,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"text":"The current temperature in Florence, Italy is 40°C. It’s quite hot—make sure to stay hydrated and avoid being out in the midday sun if possible!","logprobs":[]} + data: {"type":"response.output_text.done","content_index":0,"item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","logprobs":[],"output_index":0,"sequence_number":67,"text":"The current temperature in Florence, Italy is 40°C. It's quite hot, so if you’re heading outdoors, consider staying hydrated, wearing light, breathable clothing, and seeking shade or air-conditioned spaces when possible. Let me know if you’d like more details—like humidity, wind conditions, or a forecast!"} event: response.content_part.done - data: {"type":"response.content_part.done","sequence_number":38,"item_id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","output_index":0,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C. It’s quite hot—make sure to stay hydrated and avoid being out in the midday sun if possible!"}} + data: {"type":"response.content_part.done","content_index":0,"item_id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","output_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C. It's quite hot, so if you’re heading outdoors, consider staying hydrated, wearing light, breathable clothing, and seeking shade or air-conditioned spaces when possible. Let me know if you’d like more details—like humidity, wind conditions, or a forecast!"},"sequence_number":68} event: response.output_item.done - data: {"type":"response.output_item.done","sequence_number":39,"output_index":0,"item":{"id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C. It’s quite hot—make sure to stay hydrated and avoid being out in the midday sun if possible!"}],"role":"assistant"}} + data: {"type":"response.output_item.done","item":{"id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C. It's quite hot, so if you’re heading outdoors, consider staying hydrated, wearing light, breathable clothing, and seeking shade or air-conditioned spaces when possible. Let me know if you’d like more details—like humidity, wind conditions, or a forecast!"}],"role":"assistant"},"output_index":0,"sequence_number":69} event: response.completed - data: {"type":"response.completed","sequence_number":40,"response":{"id":"resp_0d54375cbcd869820168f239bf6a9c819c801b36862f6e7a61","object":"response","created_at":1760704959,"status":"completed","background":false,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[{"id":"msg_0d54375cbcd869820168f239c05098819c88648f5c1c886e75","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C. It’s quite hot—make sure to stay hydrated and avoid being out in the midday sun if possible!"}],"role":"assistant"}],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":96,"input_tokens_details":{"cached_tokens":0},"output_tokens":37,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":133},"user":null,"metadata":{}}} + data: {"type":"response.completed","response":{"id":"resp_0f5967458d374a400169b3198d90008192ab373708b985eeb4","object":"response","created_at":1773345165,"status":"completed","background":false,"completed_at":1773345166,"error":null,"frequency_penalty":0.0,"incomplete_details":null,"instructions":null,"max_output_tokens":null,"max_tool_calls":null,"model":"o4-mini-2025-04-16","output":[{"id":"msg_0f5967458d374a400169b3198e0a188192b4ea23b03f3a9c9c","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"The current temperature in Florence, Italy is 40°C. It's quite hot, so if you’re heading outdoors, consider staying hydrated, wearing light, breathable clothing, and seeking shade or air-conditioned spaces when possible. Let me know if you’d like more details—like humidity, wind conditions, or a forecast!"}],"role":"assistant"}],"parallel_tool_calls":true,"presence_penalty":0.0,"previous_response_id":null,"prompt_cache_key":null,"prompt_cache_retention":null,"reasoning":{"effort":"high","summary":"detailed"},"safety_identifier":null,"service_tier":"default","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":{"input_tokens":96,"input_tokens_details":{"cached_tokens":0},"output_tokens":67,"output_tokens_details":{"reasoning_tokens":0},"total_tokens":163},"user":null,"metadata":{}},"sequence_number":70} headers: Content-Type: - text/event-stream; charset=utf-8 status: 200 OK code: 200 - duration: 545.923042ms + duration: 284.378709ms diff --git a/providertests/testdata/TestOpenAIResponsesWithSummaryThinking/openai-o4-mini/thinking.yaml b/providertests/testdata/TestOpenAIResponsesWithSummaryThinking/openai-o4-mini/thinking.yaml index 99c58f066b0843d9655e7719c164130ae74e6d61..f165a85942c2feb8e38afd1d050ed6b6b0e53a65 100644 --- a/providertests/testdata/TestOpenAIResponsesWithSummaryThinking/openai-o4-mini/thinking.yaml +++ b/providertests/testdata/TestOpenAIResponsesWithSummaryThinking/openai-o4-mini/thinking.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -26,15 +26,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_00f45739b037a2600168f239ace760819697f5959cb071a64f", + "id": "resp_07143e0d7cf2d4a90169b3198740e48195bd0ad4784a508ade", "object": "response", - "created_at": 1760704941, + "created_at": 1773345159, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345161, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": null, @@ -42,23 +44,25 @@ interactions: "model": "o4-mini-2025-04-16", "output": [ { - "id": "rs_00f45739b037a2600168f239ada3208196b9f9ec02572cc644", + "id": "rs_07143e0d7cf2d4a90169b319885cb88195a1bb7a952052db4d", "type": "reasoning", - "encrypted_content": "gAAAAABo8jm7xqIpOPbNnX4taz-HWeJL_L229xxdawa7BOkJxAeAguZU9nRYIQSTsFCLW2EzdVhj6SlCTbGTuOzEr_CvqREKlQ1IrSfW4e2-guPg_G3krEKwWcOrm3K8dIg_BWJe5Y-ogjUn30m0wU_IoaS7iJhtoiX5xbwBB4m9pymDyTF3otHTPLpkUeHI6zGJyETZYQ32bjQl8PKqortMp6JmUdRAEnVfGnbuG1SNOVkXvkk-j47eS0kkWnk4ioNvAWZaY6iWSETR80gx5eP3gBVeo80v3-PiuxoZIpIs31C8Y0ISSwC-cTlSvs_KFwzbnpkAiORU_mJ1DFQ6O2GatOy4sZvVwYxdUX3LIZs0tKbMJSbOoNVHDuq7PiiX8FZEno40og2M7YxE0uKhd291GhqY20vEvDA2f1lM2ILTHWm3r-TePkSy3XNcT60jieAhHoztL8u6GzOvkM_y96qVQebbsi8_dhzljZj2LETiV_VcnjKB4hjnA_9KULZLlD06sWJDCj2ePdeH383jcFZfp-ikum-8bC0JjW690R3GKFfCvY8RZb2UqTTj84mZuPsZ1rrB9onA3tXRbn77iYPds6pAKE2G4rc09FMh6RBFTRP5RRhkHpHO5uDpsR66UUKLhnv81ndbwuovwlDy4fqSSiJ7WTWdsu8zjUFWc5VgGFewQhMfV4pS5ue-y7YYqNVYzAx9sMw14FvWF6SZBnfcpgepOcCGnulaOOFFUe75H3voaQ5EJ38pE0zAXcgUtiSx_YdhVEPIAf7BGbDjZrE6dAns0d7PIhSqXYsV6c34DMwh0HmfQkQPx3BupQaMgfDMKsDovFLW3GsXe-YVk6d01UnMYEsIIMLByF5FpGCuc9bwGpgwljNf42HPaARLdWCGY6WW_ysxFebewRqSGMkMWVAZuR6khBJ89YnNThLWWR64nTwr_32OO2cTStvcn1YLP4jKhgz0YBu2EJuBJIYeHCP2xNEY-zL4_8Uld0bZDKaE3W54GK-eHwEJ1hEQqHhheCbFTYRzQWQEWYqjMG4pQlMboJrcJAfd4QF3tWwp4lCwLr6WGBUPwK9J0chjILV6Ry78Z829dPl2YI_lBmOtG1FsmtKBCj-tXTOfN0_lhhy57upsu9M2oH5Mb8iNj1M-LXlsQdsFqLjBkssagUQFjlMmXJiF2LbUdVvjFMAbMyWmEJLV5UzqsaLClYA6sSun8dDpml4Z0FfxLysfmXUdo1NGYhrN166U_kC8779mREHTkGBvtHwsW_5CTQLIRbZtixV0yK0giOuUuVcxfnK6x0_Gcvu_frnUWji_FD71sa02y_1-3wrzyCckhzNhvb4nZEliu2DcuYk9LGrhbNZZRhBDKFwP2CMm4L3HLaPbThc7WCIaYa_pmoLGRQaWHjUoyU8yakbR3z8km1YEMHoxLIp2furli6y7S9KYSfO3ewh8AHrDf7JKesHEAynvYZp6qS3wehOIFwfewwZJhI09HOgpgRPTLc9PQcuEDSGj0BRzCAX6Iom06x-adsHrnJS9LtH1WcR8OOF4D02R9pjnXwvoSsWiUoSKbM3-b4HPdnupqq7FAQsvwlUy7n8yE8Mz0nIlejbOTCsg1nfJ2enzLD2JcdtPdG1bQI-GNGmBabPWt_YHolQ6pMlfhx8QZSn0gLgrL0nJeB5nZiP06xsEflkcVUXfiu8spA1tkxu8VYH_HuamCJlnr-BYXsiOuUmCYq5LJLB2dcVYoH_7HrQHE0m4vgl3abTNwBIsHyb-tomHiVQZoET9MfTYaNckcGQ-WAYjd5Eu37Tu13dfde_Nx7Wz0pRRPDonmBGRFuotdaL7Ey6WnzcDinRbqNke6tF1pIN9fjN5U5yYa0uvpbKVAVAO7kBdO7-Ns6MsqI21CdS0A6SS9C4n6sjCdiJ4vDzDJWXpH4PAytK6dLcW1KoRV9GXjYl5wfd2xcQeO0AVx9xfDHuQwk7i_CvDaaqqFq4tKCzKvOdc7bULf7xKyHxzrGbXoiH1EEWfrzIP8P7xZdPHNDPj9LS5iKDHM9SJX6Nfefnmjr6PX3C7imyiKebGT7Ap0sNjXsvpMRBtHNaVji29qjFXhXKBQSRnIjfng1bFboSpgqLUEzT8Z_K87cGkb4M8QcJgeiBOfAs0GSV5fE6OY-u1vOfuivmqjzxjWpstxrsUSnPPQtNk9NfJERLzhvUZmeZBExiN7O32_2iwExbFwxMCPn3XShR92CIHB7-rIeZV-gVPLcKJUy4EueclfHDFDZbbp5Pj37hZr3Q2dqarGyDcnMXIss_bsFHH73wOKiusvX5GR1LDFqKnTkDXwhkCUMIPwET9h6N9VaS_cAjFUwIfXc4KsbNCws2s3N8ZIGaQR1R1gIGxG7O0lfEA7kwDff76CT11G9I7De5GLCev5sJiZtT5qxjKUckKlM8WkfvwjhDHnhwV_rmiodeU5YnodTMHdzzd7FNBopEr9sOv2p9iiaxrVq0xcjw7sY3zd6yFnDPg4P5KEz2SieNYZi-KefO10KtjnaiqNnxxWmL8_wJhyRru_bwiU4X35Ajob7uYrV3yuo_IK_AJ49KuXsS8ISiSmFPiOyQPIhTPqbm1fN6o8WfAhVVuIcZ5xIOIzTaXLyHp7m3JkzXEbwTIZvJSKXXGyhj0XRZSCraQVj1MRYdhHBARORP0VrgQ7Nrg5ymIM7v0NFDSkSWDAVtIbvZIbQFzHkfiUh8W3CBe2XJNpsvyUAEi_yxCfEWOBdVuqqXQPwWFDI1dbPSmqq266JS4bJ9yBONfme0RZK1fFKCGtRFQQygHlF7NJMirCvYqKV4aZRA-mF36HlGRdSkDioZAyVHpMpZ4QVr2bUW0sx7wJMi3VhtLlCEzP5o2syZHPl5VaU70iyNkt9L5I3dIZVQ1z8ejV7Fh8oDjBoPcEhf8510ykm-wXgiqz9Kanb_fgQZX_PS66EY7EFTbGVmoDNlbwTg6XzjNYa8qPIP-rLL-sGkXubNT8l2xRZcehu7QQ4bG5X3sy6QA9lpGGD5sPk3aa3_F84FEclxIlmQOUy1Ng5bWgnzPRDWU4Bx4M6k6empXQZvOawobsA9EZOVoem0yB9WfcoVLVzFaGqUpZ00477PeLb37ARxN94hCo6z7Z39hbd3tHWji7Dv632im-S36nJIGLhFkR1idC0BtdDBRtG-RcCzBv2iPFflnmXe7f_j8TLyBcOZ0NoIcwpycD3ry6FWrYNlQuioNDZeqmBspShklQvfmeX7BVU9vJA3N1tdhjR4Go7uitaccWBSIEYPbnPe4rYBlFQ3iUaWKAf-_aszAArg8uOyKACBGltCzWWJjQsoivdMplSUtV9n7ZpcNcY3JZcSdWlkuDa6xFx1RnMKTuwbZZ7SuMcv9XX5Kp1tXbIdo1PYnECKHvkqICn5xSJyB9FP3XXoBmr1dpNucd4F288y0KuwTuDigViZnec_X4g81_tClm5634xyyH5-4Ew46hqre_UQULwnOtYjFIfnSmSwzmgLNGibE_h577aRO57miyAr05j-asTnpoOnDMIcw6yzQRdgToiiCmf4ZKRjKsKYCzYBLdobjxewLdF4BdeYIlbwyVy56nyn0fxo9ALvW_JRnEnWmkA_lvzn7qAlCm3Z1gWma2HGoCmnCGxTRSYc1LxLrSkR1-T17PiL-0uLVU_z7eve2d8FJ9x6HU4euqpeV7bcf2TIWsYXhiDbBO3UnU8OhkVlKpEMsQEX2-aljJvsz0StYaDpgU1ivBVW389ZR5No5YiE6_SVYxjAzL7JuONFbxrxZiurlZRsL966JEGUdjXQHgVd2R3NU7bfkNPHinLwb-31IYCxHccmW8xxHd8Gw0cSlZq2iMPQ4LVm7vLhexwuvqWfoV5agGmU8Oebxjbffm1f4QCIsc-AcdkEZ0OO1mAZUpvFI5XVUUF9xtCmFA06ML3VcGZi-j7I4bxJ6A70-S0Gko5vJW7s7obQGVrBqY9TINilJrUKhSGu5vqiQ_8uyfCk96pqFGSVi-jT1bKlUBbyrXcjqjMOgeiw3jluzDND-GM31wK7V-DzICcBNaGq9dws1HZXThm6-nwnEe6VxTTNidlr2NKkiGXufdGDSqb2MrwXca_-j0d1Y048QswFa5DJ6HRF-Y7vI6Td_3hjlXGhfo0XWKY00J6jFdnjEVAzcYF7rcruXQzHfT8FPp7SWgQeu6arM3VrIp4y1aFim_zypRRXs6HxRzPwf7gH9aaZ1-l2UpVOGRKtUUKIreWNlkZCFTifYEoxYrSAuxI53exaHN-y1fVthU5XD7oEf2rLrb1zRF8aqFf-v9bq_5ymWTDTkUjheS_qql-SWtvg1-yvNHjQSiljS4BN2GUUnmX69BxsuC31aTi0off6fgOB8oh3M9FvhkwlaP16oLvghsLMT8fiB8xC8voPXhxAAz8tsTWRDLihKqR7F4l7bmRBbi5dqIftL_UyzTiScRITUl1NMElID5Nu6nJI78rwpTDyj9cD9E7C8nxkqZ4xSlClwWkAfnl19h3jAvcoVamuayGXEdzUYQiQ9ZndH4Loi1MIPkcdek7VOJKbPFet9IwW1hYdH3KClVCbwzTgkIpwPVuAQnqY1wbe--wepgI-4n5EOn7UwN86EpMZ04V7tUw5VwTpEWKDvXaUdjcy8n91M5AOFAXP5PnhZwPGPUCzF69a7cvhSxlm3wwqqeUWEvQECfO37QjQ0kCgnXH6u66JooCvfw7gXau5ipfQ2sVXwCetc96R7QYA3eDNod7kWOYQFqJf98wnrXxM1mvuSo7pNcWoYH2yBOt-QEt6fPr_eGl0bzreAcW92SBwS4KNkFQCYyfM_5f2kvZO0-VoOYCIZJK_jfByWYLPaDGmm0q1QuziP4GvCaM2wIz8jnRSJCZct4scxZLv4zyzqwyALgXccUFMlpiSb_W6YNft7L0vUNNVCIW_o64dj7vrmmsu96qnK83TOK3QsPq48S1-C4bTB3eGgjFCs8aKh47u4W2EfJLNv5o_zEymCutj5cHRpIM-vvVfiVPAfaLp4uvHhPDGs_Ef2z980447hoqzIjlf5Dt8f-1P_oRFbhIJjH8QlkRXfHKYcpqw_Pj16bbPNRpybiVDndKVUH5-Bl9xRUeYlv5cWnoL9eqZaQMJuj8yzXLW-EHQtJzZxkc5ZpKAzxWHa6C2-yeC0ysjurv8dS8Toz2ADzaS0_q_jJTTUBTQLnzY2iKXgL8ieyxM6GeRrR3e9JzoIvR8mb-v6i8Mho4d1y8iGuEcPBuB9BXXdKNvI_QZY2s4j8Tot3WZszT7IeiD8xlRL59bSYMlZDubIEhrZa88g2UETPqWK8hQlPt4Faa1YfuU1O7PZr0pa82BJWZHxeDGDbLxbSzDg39cngXcKpaE-1TOm-dgzVvPc0oxxOhw9AkFQOqHuWbIQhLOH9rIsu6RPhaDspnW_o3XlzzkjPsqGg8wmMOwZQ9EAFKV7imlj93FjfqxHdTX061lBSl9euneWTSrTBQjqNx3jkUdfa5sOh8YGt-eycbISmPfvH5N0cAow3Y7MD2aEeG6xlHznVZPrZ4xBKjixX514THnQiaZwUFNjWPjXwT9rGBDHyMbEbNSrZF2bgd3KYexNTirLNX-wvJld6kb87Kk-WpDaaGxtyCOj02aoleC5Ph-GhkqVMsxncrcMZeN6liUxRfNWtuVbfkWj9Bp-xT0qi0Fb9vN-2T98GbS66zNpFa96lrf9IVMgWR6h3u8-TXL4WzdAg_YQpmWZpqVfj_1oWpCgS0DU1bSLz0iFRMYw4FRoKMLRx8mjfmoQnqzStrTNiyk9JjYte5_Uy9NeQaCcoEYBAs1n3JZb-HsnHxM3En4dL28snqfHAqfUBxX6u63uSsnF3lJhtry5vFpeIEN4lrrH10QIbLmjf-5fPHTq1QY31XaaZ3VkAtlOxgL2-jkQMynlcfXw8YrovBtetSozLXW_M0BS7N2kZOfLSd03Dd0BIoPOJ40VmlnXYmNanjb1wv_DJFaaT95Pp_idVoTFAztHW9F7XEMLpfXjH51j1Fe7MhZcgCy4Ef_gGrHFFc_gL0JD_xtnEjBnK8IZhufUrmJIgeDgsmQ3BcvW4qKJd7ot9BLwof7DP4stxD6_8lh62kosEoHog4HeUStwqa8S5NlOrlW5kSv9seQRr87hMIyX0NUJRkc6REAtgAygV9tceCVCh7P5KNaNWmuK-AoLLsQJLK59kiV-UdjUxXWWloKZh541qf-ua_kc0ne1Y8W6yet4Mw7bbgQGMQcuUUOz17E5EQBJrm4ZVV3iRv9N71h8qZi7aiCzsIWEE350K9T9F2py91ObA-Xi4SXQK4WEd05O1lLi4ag4XNvZ0x34p2nPoaxpoCNvCVp1icxwjlCagZ-qjjKwmNt83SRRAe7uwyDVwB8G2tkh9Paqt4TFTcjOJhEwVrLm1SlLV8oBLVKsmtnT9fW2DKlZNdfMVOwYzkufwc7W25i5yVj2fYdgJlQvSkwZx5a5JN8kuO0NIQwJ6NFla_qW7io0_BwE_zvgMgZ2HNUc4lGY1K0sEmAsm8Yv7b4qxhx0o829wdsBcBSWVhUMdSuksOisr4WiSurexcKkhJVufl7NspCVFHeNeYr2c07dS06bk_xafqIxkuyn0mQt5fYjFbLN-oZiN2txDLzx3KIuYOe1Z9_EsjEbWPp7uNNRfEpynlf0EGJ_ZFW1_zkgyuBNoWwcwZnyQOAN12EbGwnw1RzGfPouzgxKAKAcJEuJHhbyghWOC4Yk2lK56QuiZss4CFlTThhFCTFJ1fF3N6VWoPwUUzY5UWfsIlqIgOCUHNDKCI18pDuYd2rCixKHs7PLOoVdUOU1lv-6iKuGfPrhG9Xo56KX9PDOfVwO1TRa-hICs8oF7vnlFiCDnMO2Kgt_NKLDpvE3apafxx8a4PIFNc1EUjA6kZzCVjILgksTrZOUDqZP2AdpEMPU4Vg2v-IxZSqEY0arQsAtMkdESS437QvDoa-UJhMv0Rid27HUAKgkKA7yVZCsC_n1xiOm-cqGD_jei_iAakDPnBQdX678UG9kJmcuyj__C8tPmRnRVZwt1peaMqo-Z2xISMH3BzxI1S2HrLgiSp4epUo3nAFfN1M0ugQdK8mTKSzBjxCeL13-bQa7vaAqtFjrMQrwTlRJpL1tUQKjC_nrjgYY4sObO8FokbFx9rH_aPH9I0IXrd2lFktTMRtp0ETSmzc7FKyzMLZRxAP6x84Mv3hXmT82e96LbE4maeFJTkaILrV8e03x-CetgcsIzCN9PvQdTQqcUw9Ml-GxL1896zBje5lwEZEtDXVyfpwr-cE8NGiRp59dE2Fs47ogMgZsHJqpYJlimj2lP2ExgHYgogsNOj9yM7YxlbVJpLlo5RtynA6GWzLnV9BSSjrkXBM444SZILrx2-rBSDeAlQH4ViYa16EHunLPXyWBzCxth2ubmoAkqxsPTr-fa6JjoZlWecg0QH6H6PTXVd01QwS68Bbwrcj8n35LLNaWVm5Dpy46lMzPaYFJlW4dpXVRJ2WVkLnTyPdsnWIqQ22K4xeZP1mTxZPf-XYVC6eHD5PBQmx8cUiqYLe0WA9pvtKwkfLjAuGlZbm-N6SMgs1Wcik2dlFL15TDJJv58DHxZcEGk5RNz4daVQNQLMyav5AhcwF8wC20AcjS0pjsEKGXPXKur7CtyfkPHA0MBlDEZre6nenkXo6jp-ZTgqxYJCXZXgZqLX9Qw9tibmt1Sf9x85XaAkq7hXikPZdHyWczjdS4YA-3gSnwpJ5gS-0tetWag6fkzkI4qHFMg9UrNXGVxrxsEUH9Jbwj49VJAJkgSJWVJgOSPtKPPwzAiSMWWttiFTVCVLXB3tbn-kHMUlvlf_zlTyS2HXHFyIZpqTpwyco6LyST7PBvJan_c99eAGmkOW5Yzua_EeVwSOlHs9s-1cDxkxGPVyz3GXRm_T1qKZ68ILQtUc8c8hNbvgbn7ctnkSIMHSzHoBw0rHaMRX1KDB3j-s-3Uys9myyChiqufM4L9V5aaXlnN91mv4vPURzIVS5TReWqjN7z7lm4M8WgcjkDj9Rvx60qD73CDkJLy77uFT6iJXKDneM1YSKse4r20zQ0OkwcDjb7iEowcqHgvx5KEppKdBWccZWVNHJXZl-tfGI5lWbDPwuWuEK64RIXZJe6JykSphNbWzz5oSp4aMqv4MFWggcKdYkVrlGovI3EpLElDHqBswUUxNJ2JWyJfdtWujOWmNrhpKZbq6EvqrqFd94X2Ay5D_Xz3EO4jRJZhbw4uRUAlrFDRoBUtZ0gFeL-N6ab6_sVdR3U6BV1hchCT-v7Zbt5No_4ULgQ4xb4QYqHL3DVwqfm8UPlGhivAc5n8QFjv-e86xERdWI39x7fE6v2oWCzLmQKW5GBX7ohbbQyOU3c96Haa-N2EQOjms5pQfa4-YJ5E_o4n6LSLtprIfY-3O316UfQNTvbsSkYv447LwoyS-9sHBklvC8RbN36s71UOrCLbGk9S6ypfxnIRYPmrhpd1wHT_jB0fCqQJZwgI5mILYqXnH-uqoHKjUqSPgHnhzT-iVqVSBE6Zq8xqUut-LqESULZ81A35SiGwlYrIQy5dHs5wadUIdbNz1ZWWI2ZybVTE39Ukv1DQp9MrhmYJZYrapTpguEN2me-EBjNNnpLRDsO86eSQAhVzV9J000jIvXxGdlUo3SKwZfM-1P0L2CdhicIgI7-KVSGrpJPxQA00Keey2Oj4P6Vdzsrp362WNlkuMIqueVSfRl8P63JzASuXCRlPwDKZ19D15h36uiyvgtBsKhPeAbzGfM7UTLFU-q5vP1gHgpiLqs6Bw61oo7E51yTu6zrmHukuao-AOGhKbctckfrvrVuZ7PpxD_tuQCoYeHUCW8-cjsh8rVsaA0TOo8g_TGpM-c47gXMYjUbfoo-mJV2hBZSW4a3npoZMgCCgPchFzJONFqs7VEcaVS6a6oXDl3woqq0v_LzNLfoGll6ixi9c5okjLeTvf3z6MROAabvxedMD8u8dkLqvL86q7d4FDrvBZDM8E5DbryvvVRPp9rfSa7KLwInjrM9bzpnV4e7TTk7-LDKg54YU8GF_RLC2vIdOvCRGE23BfG2KZVZof3rmhMITLEbGCSL9zd34d2YXhdqbOsTJ2DaZq_Nwii1lx5RBSf_6RSKyPwm0Q7vP30QKAE6FBMHqr2CQwsldDC9R-nI9Y_FNIrbo03lkz7TQe66pBOCUL22IXO1tcdw6PHnowVfOoI_pzrEAwP66gwnTC7Ysb7hREsTH9SIO-EZvPAb_045jovUfYTQmdYZmTgyr-zPzWn-jkprYnHEUX82Hn7LN3cTjRRNvhH9ELSmfrWYhRaW2Q==", + "encrypted_content": "gAAAAABpsxmJpUPkUo9BjVWMoB5IqOc2z9YhXBk9pRPu4S82H045OpdoDwncDJLq9E2oM9wg0lxTAC8V6qS7iTVcsO4UEgnN9jf08KJ1wSkb24kZdqNdmH3t_DehH6IEFsu5SkcnVbS9YgUA8dzt72y3W3IwtmbkVTCG-LEs4feMXasSu8WMx0KHtrX6eMc-Q3yKeoJab5b3YHb7Qu2mRjH5MSOHq2QzUV2LK5FRM9jnEkLqDf3WmdhgsR66d05XBREni-DY8-xn8LgvoEJERdtdeVIUALW2mKVVfrNO9NuA91-J6rpe4beppxwFxocvcotju6CZ3ommhjgRuaqQ7wu7TlyiJLCPlR-QjO4warTnLHWYTg2tMCNlxFOrL9nrd5ee1DxjcCdLrgDuvOFg69J4ySm3ToxIe48x8GyX9-Wp5OJPV8vOj8x2jeoR8wdzO7r-FKt5hxkTPsfqxHJ0_R3LPW5PkvvRjpx7LNgKnegVOoqCmvwrkKAje1pOimebBWc0-V2LqC4OWFNGH8RZ6Kobc91aQfWya1PjoKe10Ou8S5IgwJBNnZEtZoXzYpMeJi22awSPiZW4kGItJYLm3RufuuZcfLPdRfrRa4wJDo_Tq4FadTcZxgsM6q5vqIlRNbJ8pGm4vumUljmpI_ApG3275lPq5lknYbZCR59OMsI_nPx2TR6syRxqxbc_g1szaLSUNfUnwtvel6jIVaRH8Rq4USszB_P8Ksd28RCUVGNiDrAJz3AYZq7OSXsoKFJsCoia2qY2Ck5w8xDq1T1qp_wmADLqbfzLjqpdH54gDF5NUIphiWj6lPZG6w_xdoEKdam0whGz1z0SL3_eXsy_UDPV89pv8RUrlBMAogUvDirUAhNXzMHQg_XEj6TpxBE9JSiaHObZzX62GIjLCP162Bj1f0KbHnnsOcLtKFeKNoJU0qaqihpA2uNHsGCi_i2MIvkk_WKQyfJfMo_Jysv5s7A0nITsyZod9imwNEwzXeTWffdUxQATJkuYeAZYVwF6iQ4obxWj4gsIQjjWeMXHAWHewQMWYMk0aaL8iqC8_rOQooAfU3tvyDdpmIJ-rNuoL6DPdCgp2974VCGkUzAvatFQBs5Z_IcFJzv1YhDwuojmk3H4j0JruDCzfELVAAZJQpfc_UZcpN05bFGNy9u0xBvbjqXjn3sIjC95RMwV0oGil8oDkAGrVOCtDg2_sag7gysWX8p42DpLO3BrErOhv2prFh15le2Q6nyNT29d1u6KGRMttA56VQtlhto5OxSLdrC6owHlIDnEA8A4NG7ba9XLTn3hLVFqiDhwCCpEo01nxqF6hJ2SqXPxAxkLnPcBXNIWdeIKrPqWl2fGITO5UTXwCmyg82hGoWb5khd754FmQj4ywnW24h96QADS01RXQ3J3w2oOGwuUjx9BvFPsvtVS6kJXI2izzA==", "summary": [] }, { - "id": "fc_00f45739b037a2600168f239bb58b88196b17b26934fd24de2", + "id": "fc_07143e0d7cf2d4a90169b319895df48195bcdc573701298c28", "type": "function_call", "status": "completed", "arguments": "{\"location\":\"Florence, Italy\"}", - "call_id": "call_ewLJJaD4OO6pdsTnaDtMuNn0", + "call_id": "call_ZgWM9rbt3Yxv1cu7zAUUqGID", "name": "weather" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "high", "summary": "detailed" @@ -102,11 +106,11 @@ interactions: "input_tokens_details": { "cached_tokens": 0 }, - "output_tokens": 1302, + "output_tokens": 120, "output_tokens_details": { - "reasoning_tokens": 1280 + "reasoning_tokens": 64 }, - "total_tokens": 1362 + "total_tokens": 180 }, "user": null, "metadata": {} @@ -116,22 +120,22 @@ interactions: - application/json status: 200 OK code: 200 - duration: 14.800628916s + duration: 2.594735541s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 10319 + content_length: 2383 host: "" - body: '{"store":false,"include":["reasoning.encrypted_content"],"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence, Italy?","type":"input_text"}],"role":"user"},{"id":"rs_00f45739b037a2600168f239ada3208196b9f9ec02572cc644","summary":[{"text":"","type":"summary_text"}],"encrypted_content":"gAAAAABo8jm7xqIpOPbNnX4taz-HWeJL_L229xxdawa7BOkJxAeAguZU9nRYIQSTsFCLW2EzdVhj6SlCTbGTuOzEr_CvqREKlQ1IrSfW4e2-guPg_G3krEKwWcOrm3K8dIg_BWJe5Y-ogjUn30m0wU_IoaS7iJhtoiX5xbwBB4m9pymDyTF3otHTPLpkUeHI6zGJyETZYQ32bjQl8PKqortMp6JmUdRAEnVfGnbuG1SNOVkXvkk-j47eS0kkWnk4ioNvAWZaY6iWSETR80gx5eP3gBVeo80v3-PiuxoZIpIs31C8Y0ISSwC-cTlSvs_KFwzbnpkAiORU_mJ1DFQ6O2GatOy4sZvVwYxdUX3LIZs0tKbMJSbOoNVHDuq7PiiX8FZEno40og2M7YxE0uKhd291GhqY20vEvDA2f1lM2ILTHWm3r-TePkSy3XNcT60jieAhHoztL8u6GzOvkM_y96qVQebbsi8_dhzljZj2LETiV_VcnjKB4hjnA_9KULZLlD06sWJDCj2ePdeH383jcFZfp-ikum-8bC0JjW690R3GKFfCvY8RZb2UqTTj84mZuPsZ1rrB9onA3tXRbn77iYPds6pAKE2G4rc09FMh6RBFTRP5RRhkHpHO5uDpsR66UUKLhnv81ndbwuovwlDy4fqSSiJ7WTWdsu8zjUFWc5VgGFewQhMfV4pS5ue-y7YYqNVYzAx9sMw14FvWF6SZBnfcpgepOcCGnulaOOFFUe75H3voaQ5EJ38pE0zAXcgUtiSx_YdhVEPIAf7BGbDjZrE6dAns0d7PIhSqXYsV6c34DMwh0HmfQkQPx3BupQaMgfDMKsDovFLW3GsXe-YVk6d01UnMYEsIIMLByF5FpGCuc9bwGpgwljNf42HPaARLdWCGY6WW_ysxFebewRqSGMkMWVAZuR6khBJ89YnNThLWWR64nTwr_32OO2cTStvcn1YLP4jKhgz0YBu2EJuBJIYeHCP2xNEY-zL4_8Uld0bZDKaE3W54GK-eHwEJ1hEQqHhheCbFTYRzQWQEWYqjMG4pQlMboJrcJAfd4QF3tWwp4lCwLr6WGBUPwK9J0chjILV6Ry78Z829dPl2YI_lBmOtG1FsmtKBCj-tXTOfN0_lhhy57upsu9M2oH5Mb8iNj1M-LXlsQdsFqLjBkssagUQFjlMmXJiF2LbUdVvjFMAbMyWmEJLV5UzqsaLClYA6sSun8dDpml4Z0FfxLysfmXUdo1NGYhrN166U_kC8779mREHTkGBvtHwsW_5CTQLIRbZtixV0yK0giOuUuVcxfnK6x0_Gcvu_frnUWji_FD71sa02y_1-3wrzyCckhzNhvb4nZEliu2DcuYk9LGrhbNZZRhBDKFwP2CMm4L3HLaPbThc7WCIaYa_pmoLGRQaWHjUoyU8yakbR3z8km1YEMHoxLIp2furli6y7S9KYSfO3ewh8AHrDf7JKesHEAynvYZp6qS3wehOIFwfewwZJhI09HOgpgRPTLc9PQcuEDSGj0BRzCAX6Iom06x-adsHrnJS9LtH1WcR8OOF4D02R9pjnXwvoSsWiUoSKbM3-b4HPdnupqq7FAQsvwlUy7n8yE8Mz0nIlejbOTCsg1nfJ2enzLD2JcdtPdG1bQI-GNGmBabPWt_YHolQ6pMlfhx8QZSn0gLgrL0nJeB5nZiP06xsEflkcVUXfiu8spA1tkxu8VYH_HuamCJlnr-BYXsiOuUmCYq5LJLB2dcVYoH_7HrQHE0m4vgl3abTNwBIsHyb-tomHiVQZoET9MfTYaNckcGQ-WAYjd5Eu37Tu13dfde_Nx7Wz0pRRPDonmBGRFuotdaL7Ey6WnzcDinRbqNke6tF1pIN9fjN5U5yYa0uvpbKVAVAO7kBdO7-Ns6MsqI21CdS0A6SS9C4n6sjCdiJ4vDzDJWXpH4PAytK6dLcW1KoRV9GXjYl5wfd2xcQeO0AVx9xfDHuQwk7i_CvDaaqqFq4tKCzKvOdc7bULf7xKyHxzrGbXoiH1EEWfrzIP8P7xZdPHNDPj9LS5iKDHM9SJX6Nfefnmjr6PX3C7imyiKebGT7Ap0sNjXsvpMRBtHNaVji29qjFXhXKBQSRnIjfng1bFboSpgqLUEzT8Z_K87cGkb4M8QcJgeiBOfAs0GSV5fE6OY-u1vOfuivmqjzxjWpstxrsUSnPPQtNk9NfJERLzhvUZmeZBExiN7O32_2iwExbFwxMCPn3XShR92CIHB7-rIeZV-gVPLcKJUy4EueclfHDFDZbbp5Pj37hZr3Q2dqarGyDcnMXIss_bsFHH73wOKiusvX5GR1LDFqKnTkDXwhkCUMIPwET9h6N9VaS_cAjFUwIfXc4KsbNCws2s3N8ZIGaQR1R1gIGxG7O0lfEA7kwDff76CT11G9I7De5GLCev5sJiZtT5qxjKUckKlM8WkfvwjhDHnhwV_rmiodeU5YnodTMHdzzd7FNBopEr9sOv2p9iiaxrVq0xcjw7sY3zd6yFnDPg4P5KEz2SieNYZi-KefO10KtjnaiqNnxxWmL8_wJhyRru_bwiU4X35Ajob7uYrV3yuo_IK_AJ49KuXsS8ISiSmFPiOyQPIhTPqbm1fN6o8WfAhVVuIcZ5xIOIzTaXLyHp7m3JkzXEbwTIZvJSKXXGyhj0XRZSCraQVj1MRYdhHBARORP0VrgQ7Nrg5ymIM7v0NFDSkSWDAVtIbvZIbQFzHkfiUh8W3CBe2XJNpsvyUAEi_yxCfEWOBdVuqqXQPwWFDI1dbPSmqq266JS4bJ9yBONfme0RZK1fFKCGtRFQQygHlF7NJMirCvYqKV4aZRA-mF36HlGRdSkDioZAyVHpMpZ4QVr2bUW0sx7wJMi3VhtLlCEzP5o2syZHPl5VaU70iyNkt9L5I3dIZVQ1z8ejV7Fh8oDjBoPcEhf8510ykm-wXgiqz9Kanb_fgQZX_PS66EY7EFTbGVmoDNlbwTg6XzjNYa8qPIP-rLL-sGkXubNT8l2xRZcehu7QQ4bG5X3sy6QA9lpGGD5sPk3aa3_F84FEclxIlmQOUy1Ng5bWgnzPRDWU4Bx4M6k6empXQZvOawobsA9EZOVoem0yB9WfcoVLVzFaGqUpZ00477PeLb37ARxN94hCo6z7Z39hbd3tHWji7Dv632im-S36nJIGLhFkR1idC0BtdDBRtG-RcCzBv2iPFflnmXe7f_j8TLyBcOZ0NoIcwpycD3ry6FWrYNlQuioNDZeqmBspShklQvfmeX7BVU9vJA3N1tdhjR4Go7uitaccWBSIEYPbnPe4rYBlFQ3iUaWKAf-_aszAArg8uOyKACBGltCzWWJjQsoivdMplSUtV9n7ZpcNcY3JZcSdWlkuDa6xFx1RnMKTuwbZZ7SuMcv9XX5Kp1tXbIdo1PYnECKHvkqICn5xSJyB9FP3XXoBmr1dpNucd4F288y0KuwTuDigViZnec_X4g81_tClm5634xyyH5-4Ew46hqre_UQULwnOtYjFIfnSmSwzmgLNGibE_h577aRO57miyAr05j-asTnpoOnDMIcw6yzQRdgToiiCmf4ZKRjKsKYCzYBLdobjxewLdF4BdeYIlbwyVy56nyn0fxo9ALvW_JRnEnWmkA_lvzn7qAlCm3Z1gWma2HGoCmnCGxTRSYc1LxLrSkR1-T17PiL-0uLVU_z7eve2d8FJ9x6HU4euqpeV7bcf2TIWsYXhiDbBO3UnU8OhkVlKpEMsQEX2-aljJvsz0StYaDpgU1ivBVW389ZR5No5YiE6_SVYxjAzL7JuONFbxrxZiurlZRsL966JEGUdjXQHgVd2R3NU7bfkNPHinLwb-31IYCxHccmW8xxHd8Gw0cSlZq2iMPQ4LVm7vLhexwuvqWfoV5agGmU8Oebxjbffm1f4QCIsc-AcdkEZ0OO1mAZUpvFI5XVUUF9xtCmFA06ML3VcGZi-j7I4bxJ6A70-S0Gko5vJW7s7obQGVrBqY9TINilJrUKhSGu5vqiQ_8uyfCk96pqFGSVi-jT1bKlUBbyrXcjqjMOgeiw3jluzDND-GM31wK7V-DzICcBNaGq9dws1HZXThm6-nwnEe6VxTTNidlr2NKkiGXufdGDSqb2MrwXca_-j0d1Y048QswFa5DJ6HRF-Y7vI6Td_3hjlXGhfo0XWKY00J6jFdnjEVAzcYF7rcruXQzHfT8FPp7SWgQeu6arM3VrIp4y1aFim_zypRRXs6HxRzPwf7gH9aaZ1-l2UpVOGRKtUUKIreWNlkZCFTifYEoxYrSAuxI53exaHN-y1fVthU5XD7oEf2rLrb1zRF8aqFf-v9bq_5ymWTDTkUjheS_qql-SWtvg1-yvNHjQSiljS4BN2GUUnmX69BxsuC31aTi0off6fgOB8oh3M9FvhkwlaP16oLvghsLMT8fiB8xC8voPXhxAAz8tsTWRDLihKqR7F4l7bmRBbi5dqIftL_UyzTiScRITUl1NMElID5Nu6nJI78rwpTDyj9cD9E7C8nxkqZ4xSlClwWkAfnl19h3jAvcoVamuayGXEdzUYQiQ9ZndH4Loi1MIPkcdek7VOJKbPFet9IwW1hYdH3KClVCbwzTgkIpwPVuAQnqY1wbe--wepgI-4n5EOn7UwN86EpMZ04V7tUw5VwTpEWKDvXaUdjcy8n91M5AOFAXP5PnhZwPGPUCzF69a7cvhSxlm3wwqqeUWEvQECfO37QjQ0kCgnXH6u66JooCvfw7gXau5ipfQ2sVXwCetc96R7QYA3eDNod7kWOYQFqJf98wnrXxM1mvuSo7pNcWoYH2yBOt-QEt6fPr_eGl0bzreAcW92SBwS4KNkFQCYyfM_5f2kvZO0-VoOYCIZJK_jfByWYLPaDGmm0q1QuziP4GvCaM2wIz8jnRSJCZct4scxZLv4zyzqwyALgXccUFMlpiSb_W6YNft7L0vUNNVCIW_o64dj7vrmmsu96qnK83TOK3QsPq48S1-C4bTB3eGgjFCs8aKh47u4W2EfJLNv5o_zEymCutj5cHRpIM-vvVfiVPAfaLp4uvHhPDGs_Ef2z980447hoqzIjlf5Dt8f-1P_oRFbhIJjH8QlkRXfHKYcpqw_Pj16bbPNRpybiVDndKVUH5-Bl9xRUeYlv5cWnoL9eqZaQMJuj8yzXLW-EHQtJzZxkc5ZpKAzxWHa6C2-yeC0ysjurv8dS8Toz2ADzaS0_q_jJTTUBTQLnzY2iKXgL8ieyxM6GeRrR3e9JzoIvR8mb-v6i8Mho4d1y8iGuEcPBuB9BXXdKNvI_QZY2s4j8Tot3WZszT7IeiD8xlRL59bSYMlZDubIEhrZa88g2UETPqWK8hQlPt4Faa1YfuU1O7PZr0pa82BJWZHxeDGDbLxbSzDg39cngXcKpaE-1TOm-dgzVvPc0oxxOhw9AkFQOqHuWbIQhLOH9rIsu6RPhaDspnW_o3XlzzkjPsqGg8wmMOwZQ9EAFKV7imlj93FjfqxHdTX061lBSl9euneWTSrTBQjqNx3jkUdfa5sOh8YGt-eycbISmPfvH5N0cAow3Y7MD2aEeG6xlHznVZPrZ4xBKjixX514THnQiaZwUFNjWPjXwT9rGBDHyMbEbNSrZF2bgd3KYexNTirLNX-wvJld6kb87Kk-WpDaaGxtyCOj02aoleC5Ph-GhkqVMsxncrcMZeN6liUxRfNWtuVbfkWj9Bp-xT0qi0Fb9vN-2T98GbS66zNpFa96lrf9IVMgWR6h3u8-TXL4WzdAg_YQpmWZpqVfj_1oWpCgS0DU1bSLz0iFRMYw4FRoKMLRx8mjfmoQnqzStrTNiyk9JjYte5_Uy9NeQaCcoEYBAs1n3JZb-HsnHxM3En4dL28snqfHAqfUBxX6u63uSsnF3lJhtry5vFpeIEN4lrrH10QIbLmjf-5fPHTq1QY31XaaZ3VkAtlOxgL2-jkQMynlcfXw8YrovBtetSozLXW_M0BS7N2kZOfLSd03Dd0BIoPOJ40VmlnXYmNanjb1wv_DJFaaT95Pp_idVoTFAztHW9F7XEMLpfXjH51j1Fe7MhZcgCy4Ef_gGrHFFc_gL0JD_xtnEjBnK8IZhufUrmJIgeDgsmQ3BcvW4qKJd7ot9BLwof7DP4stxD6_8lh62kosEoHog4HeUStwqa8S5NlOrlW5kSv9seQRr87hMIyX0NUJRkc6REAtgAygV9tceCVCh7P5KNaNWmuK-AoLLsQJLK59kiV-UdjUxXWWloKZh541qf-ua_kc0ne1Y8W6yet4Mw7bbgQGMQcuUUOz17E5EQBJrm4ZVV3iRv9N71h8qZi7aiCzsIWEE350K9T9F2py91ObA-Xi4SXQK4WEd05O1lLi4ag4XNvZ0x34p2nPoaxpoCNvCVp1icxwjlCagZ-qjjKwmNt83SRRAe7uwyDVwB8G2tkh9Paqt4TFTcjOJhEwVrLm1SlLV8oBLVKsmtnT9fW2DKlZNdfMVOwYzkufwc7W25i5yVj2fYdgJlQvSkwZx5a5JN8kuO0NIQwJ6NFla_qW7io0_BwE_zvgMgZ2HNUc4lGY1K0sEmAsm8Yv7b4qxhx0o829wdsBcBSWVhUMdSuksOisr4WiSurexcKkhJVufl7NspCVFHeNeYr2c07dS06bk_xafqIxkuyn0mQt5fYjFbLN-oZiN2txDLzx3KIuYOe1Z9_EsjEbWPp7uNNRfEpynlf0EGJ_ZFW1_zkgyuBNoWwcwZnyQOAN12EbGwnw1RzGfPouzgxKAKAcJEuJHhbyghWOC4Yk2lK56QuiZss4CFlTThhFCTFJ1fF3N6VWoPwUUzY5UWfsIlqIgOCUHNDKCI18pDuYd2rCixKHs7PLOoVdUOU1lv-6iKuGfPrhG9Xo56KX9PDOfVwO1TRa-hICs8oF7vnlFiCDnMO2Kgt_NKLDpvE3apafxx8a4PIFNc1EUjA6kZzCVjILgksTrZOUDqZP2AdpEMPU4Vg2v-IxZSqEY0arQsAtMkdESS437QvDoa-UJhMv0Rid27HUAKgkKA7yVZCsC_n1xiOm-cqGD_jei_iAakDPnBQdX678UG9kJmcuyj__C8tPmRnRVZwt1peaMqo-Z2xISMH3BzxI1S2HrLgiSp4epUo3nAFfN1M0ugQdK8mTKSzBjxCeL13-bQa7vaAqtFjrMQrwTlRJpL1tUQKjC_nrjgYY4sObO8FokbFx9rH_aPH9I0IXrd2lFktTMRtp0ETSmzc7FKyzMLZRxAP6x84Mv3hXmT82e96LbE4maeFJTkaILrV8e03x-CetgcsIzCN9PvQdTQqcUw9Ml-GxL1896zBje5lwEZEtDXVyfpwr-cE8NGiRp59dE2Fs47ogMgZsHJqpYJlimj2lP2ExgHYgogsNOj9yM7YxlbVJpLlo5RtynA6GWzLnV9BSSjrkXBM444SZILrx2-rBSDeAlQH4ViYa16EHunLPXyWBzCxth2ubmoAkqxsPTr-fa6JjoZlWecg0QH6H6PTXVd01QwS68Bbwrcj8n35LLNaWVm5Dpy46lMzPaYFJlW4dpXVRJ2WVkLnTyPdsnWIqQ22K4xeZP1mTxZPf-XYVC6eHD5PBQmx8cUiqYLe0WA9pvtKwkfLjAuGlZbm-N6SMgs1Wcik2dlFL15TDJJv58DHxZcEGk5RNz4daVQNQLMyav5AhcwF8wC20AcjS0pjsEKGXPXKur7CtyfkPHA0MBlDEZre6nenkXo6jp-ZTgqxYJCXZXgZqLX9Qw9tibmt1Sf9x85XaAkq7hXikPZdHyWczjdS4YA-3gSnwpJ5gS-0tetWag6fkzkI4qHFMg9UrNXGVxrxsEUH9Jbwj49VJAJkgSJWVJgOSPtKPPwzAiSMWWttiFTVCVLXB3tbn-kHMUlvlf_zlTyS2HXHFyIZpqTpwyco6LyST7PBvJan_c99eAGmkOW5Yzua_EeVwSOlHs9s-1cDxkxGPVyz3GXRm_T1qKZ68ILQtUc8c8hNbvgbn7ctnkSIMHSzHoBw0rHaMRX1KDB3j-s-3Uys9myyChiqufM4L9V5aaXlnN91mv4vPURzIVS5TReWqjN7z7lm4M8WgcjkDj9Rvx60qD73CDkJLy77uFT6iJXKDneM1YSKse4r20zQ0OkwcDjb7iEowcqHgvx5KEppKdBWccZWVNHJXZl-tfGI5lWbDPwuWuEK64RIXZJe6JykSphNbWzz5oSp4aMqv4MFWggcKdYkVrlGovI3EpLElDHqBswUUxNJ2JWyJfdtWujOWmNrhpKZbq6EvqrqFd94X2Ay5D_Xz3EO4jRJZhbw4uRUAlrFDRoBUtZ0gFeL-N6ab6_sVdR3U6BV1hchCT-v7Zbt5No_4ULgQ4xb4QYqHL3DVwqfm8UPlGhivAc5n8QFjv-e86xERdWI39x7fE6v2oWCzLmQKW5GBX7ohbbQyOU3c96Haa-N2EQOjms5pQfa4-YJ5E_o4n6LSLtprIfY-3O316UfQNTvbsSkYv447LwoyS-9sHBklvC8RbN36s71UOrCLbGk9S6ypfxnIRYPmrhpd1wHT_jB0fCqQJZwgI5mILYqXnH-uqoHKjUqSPgHnhzT-iVqVSBE6Zq8xqUut-LqESULZ81A35SiGwlYrIQy5dHs5wadUIdbNz1ZWWI2ZybVTE39Ukv1DQp9MrhmYJZYrapTpguEN2me-EBjNNnpLRDsO86eSQAhVzV9J000jIvXxGdlUo3SKwZfM-1P0L2CdhicIgI7-KVSGrpJPxQA00Keey2Oj4P6Vdzsrp362WNlkuMIqueVSfRl8P63JzASuXCRlPwDKZ19D15h36uiyvgtBsKhPeAbzGfM7UTLFU-q5vP1gHgpiLqs6Bw61oo7E51yTu6zrmHukuao-AOGhKbctckfrvrVuZ7PpxD_tuQCoYeHUCW8-cjsh8rVsaA0TOo8g_TGpM-c47gXMYjUbfoo-mJV2hBZSW4a3npoZMgCCgPchFzJONFqs7VEcaVS6a6oXDl3woqq0v_LzNLfoGll6ixi9c5okjLeTvf3z6MROAabvxedMD8u8dkLqvL86q7d4FDrvBZDM8E5DbryvvVRPp9rfSa7KLwInjrM9bzpnV4e7TTk7-LDKg54YU8GF_RLC2vIdOvCRGE23BfG2KZVZof3rmhMITLEbGCSL9zd34d2YXhdqbOsTJ2DaZq_Nwii1lx5RBSf_6RSKyPwm0Q7vP30QKAE6FBMHqr2CQwsldDC9R-nI9Y_FNIrbo03lkz7TQe66pBOCUL22IXO1tcdw6PHnowVfOoI_pzrEAwP66gwnTC7Ysb7hREsTH9SIO-EZvPAb_045jovUfYTQmdYZmTgyr-zPzWn-jkprYnHEUX82Hn7LN3cTjRRNvhH9ELSmfrWYhRaW2Q==","type":"reasoning"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_ewLJJaD4OO6pdsTnaDtMuNn0","name":"weather","type":"function_call"},{"call_id":"call_ewLJJaD4OO6pdsTnaDtMuNn0","output":"40 C","type":"function_call_output"}],"model":"o4-mini","reasoning":{"effort":"high","summary":"auto"},"tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}' + body: '{"store":false,"include":["reasoning.encrypted_content"],"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence, Italy?","type":"input_text"}],"role":"user"},{"id":"rs_07143e0d7cf2d4a90169b319885cb88195a1bb7a952052db4d","summary":[{"text":"","type":"summary_text"}],"encrypted_content":"gAAAAABpsxmJpUPkUo9BjVWMoB5IqOc2z9YhXBk9pRPu4S82H045OpdoDwncDJLq9E2oM9wg0lxTAC8V6qS7iTVcsO4UEgnN9jf08KJ1wSkb24kZdqNdmH3t_DehH6IEFsu5SkcnVbS9YgUA8dzt72y3W3IwtmbkVTCG-LEs4feMXasSu8WMx0KHtrX6eMc-Q3yKeoJab5b3YHb7Qu2mRjH5MSOHq2QzUV2LK5FRM9jnEkLqDf3WmdhgsR66d05XBREni-DY8-xn8LgvoEJERdtdeVIUALW2mKVVfrNO9NuA91-J6rpe4beppxwFxocvcotju6CZ3ommhjgRuaqQ7wu7TlyiJLCPlR-QjO4warTnLHWYTg2tMCNlxFOrL9nrd5ee1DxjcCdLrgDuvOFg69J4ySm3ToxIe48x8GyX9-Wp5OJPV8vOj8x2jeoR8wdzO7r-FKt5hxkTPsfqxHJ0_R3LPW5PkvvRjpx7LNgKnegVOoqCmvwrkKAje1pOimebBWc0-V2LqC4OWFNGH8RZ6Kobc91aQfWya1PjoKe10Ou8S5IgwJBNnZEtZoXzYpMeJi22awSPiZW4kGItJYLm3RufuuZcfLPdRfrRa4wJDo_Tq4FadTcZxgsM6q5vqIlRNbJ8pGm4vumUljmpI_ApG3275lPq5lknYbZCR59OMsI_nPx2TR6syRxqxbc_g1szaLSUNfUnwtvel6jIVaRH8Rq4USszB_P8Ksd28RCUVGNiDrAJz3AYZq7OSXsoKFJsCoia2qY2Ck5w8xDq1T1qp_wmADLqbfzLjqpdH54gDF5NUIphiWj6lPZG6w_xdoEKdam0whGz1z0SL3_eXsy_UDPV89pv8RUrlBMAogUvDirUAhNXzMHQg_XEj6TpxBE9JSiaHObZzX62GIjLCP162Bj1f0KbHnnsOcLtKFeKNoJU0qaqihpA2uNHsGCi_i2MIvkk_WKQyfJfMo_Jysv5s7A0nITsyZod9imwNEwzXeTWffdUxQATJkuYeAZYVwF6iQ4obxWj4gsIQjjWeMXHAWHewQMWYMk0aaL8iqC8_rOQooAfU3tvyDdpmIJ-rNuoL6DPdCgp2974VCGkUzAvatFQBs5Z_IcFJzv1YhDwuojmk3H4j0JruDCzfELVAAZJQpfc_UZcpN05bFGNy9u0xBvbjqXjn3sIjC95RMwV0oGil8oDkAGrVOCtDg2_sag7gysWX8p42DpLO3BrErOhv2prFh15le2Q6nyNT29d1u6KGRMttA56VQtlhto5OxSLdrC6owHlIDnEA8A4NG7ba9XLTn3hLVFqiDhwCCpEo01nxqF6hJ2SqXPxAxkLnPcBXNIWdeIKrPqWl2fGITO5UTXwCmyg82hGoWb5khd754FmQj4ywnW24h96QADS01RXQ3J3w2oOGwuUjx9BvFPsvtVS6kJXI2izzA==","type":"reasoning"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_ZgWM9rbt3Yxv1cu7zAUUqGID","name":"weather","type":"function_call"},{"call_id":"call_ZgWM9rbt3Yxv1cu7zAUUqGID","output":"40 C","type":"function_call_output"}],"model":"o4-mini","reasoning":{"effort":"high","summary":"auto"},"tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.3.0 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://api.openai.com/v1/responses method: POST response: @@ -142,15 +146,17 @@ interactions: uncompressed: true body: |- { - "id": "resp_00f45739b037a2600168f239bbb9188196b53e629e83c81309", + "id": "resp_07143e0d7cf2d4a90169b31989c5d48195846c36cab6292c48", "object": "response", - "created_at": 1760704955, + "created_at": 1773345161, "status": "completed", "background": false, "billing": { "payer": "developer" }, + "completed_at": 1773345162, "error": null, + "frequency_penalty": 0.0, "incomplete_details": null, "instructions": null, "max_output_tokens": null, @@ -158,7 +164,7 @@ interactions: "model": "o4-mini-2025-04-16", "output": [ { - "id": "msg_00f45739b037a2600168f239bc36348196b6b0cfe62701d820", + "id": "msg_07143e0d7cf2d4a90169b3198a14908195ba86b07ab2eaeac0", "type": "message", "status": "completed", "content": [ @@ -166,15 +172,17 @@ interactions: "type": "output_text", "annotations": [], "logprobs": [], - "text": "It\u2019s currently 40\u00b0C in Florence, Italy." + "text": "The current temperature in Florence, Italy is 40\u00b0C." } ], "role": "assistant" } ], "parallel_tool_calls": true, + "presence_penalty": 0.0, "previous_response_id": null, "prompt_cache_key": null, + "prompt_cache_retention": null, "reasoning": { "effort": "high", "summary": "detailed" @@ -214,15 +222,15 @@ interactions: "top_p": 1.0, "truncation": "disabled", "usage": { - "input_tokens": 1406, + "input_tokens": 191, "input_tokens_details": { - "cached_tokens": 1152 + "cached_tokens": 0 }, - "output_tokens": 15, + "output_tokens": 16, "output_tokens_details": { "reasoning_tokens": 0 }, - "total_tokens": 1421 + "total_tokens": 207 }, "user": null, "metadata": {} @@ -232,4 +240,4 @@ interactions: - application/json status: 200 OK code: 200 - duration: 972.409834ms + duration: 767.910625ms diff --git a/providertests/testdata/TestSimple/google-vertex-claude-sonnet.yaml b/providertests/testdata/TestSimple/google-vertex-claude-sonnet.yaml deleted file mode 100644 index 2797c38e00eb2b06c9590e44b16e0de030e4126a..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestSimple/google-vertex-claude-sonnet.yaml +++ /dev/null @@ -1,3 +0,0 @@ ---- -version: 2 -interactions: [] diff --git a/providertests/testdata/TestSimple/google-vertex-gemini-2.5-flash.yaml b/providertests/testdata/TestSimple/google-vertex-gemini-2.5-flash.yaml deleted file mode 100644 index 211a2c94bea084f8d194a1f03a531a523a1f089e..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestSimple/google-vertex-gemini-2.5-flash.yaml +++ /dev/null @@ -1,70 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 180 - host: us-central1-aiplatform.googleapis.com - body: | - {"contents":[{"parts":[{"text":"Say hi in Portuguese"}],"role":"user"}],"generationConfig":{},"systemInstruction":{"parts":[{"text":"You are a helpful assistant"}],"role":"user"}} - headers: - Content-Type: - - application/json - User-Agent: - - google-genai-sdk/1.25.0 gl-go/go1.25.0 - url: https://us-central1-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-central1/publishers/google/models/gemini-2.5-flash:generateContent - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - uncompressed: true - body: | - { - "candidates": [ - { - "content": { - "role": "model", - "parts": [ - { - "text": "Olá!" - } - ] - }, - "finishReason": "STOP", - "avgLogprobs": -0.57995378971099854 - } - ], - "usageMetadata": { - "promptTokenCount": 9, - "candidatesTokenCount": 2, - "totalTokenCount": 37, - "trafficType": "ON_DEMAND", - "promptTokensDetails": [ - { - "modality": "TEXT", - "tokenCount": 9 - } - ], - "candidatesTokensDetails": [ - { - "modality": "TEXT", - "tokenCount": 2 - } - ], - "thoughtsTokenCount": 26 - }, - "modelVersion": "gemini-2.5-flash", - "createTime": "2025-09-24T19:46:03.607780Z", - "responseId": "e0rUaKSMJb-gm9IP0PuYmQo" - } - headers: - Content-Type: - - application/json; charset=UTF-8 - status: 200 OK - code: 200 - duration: 1.489268833s diff --git a/providertests/testdata/TestSimple/google-vertex-gemini-2.5-pro.yaml b/providertests/testdata/TestSimple/google-vertex-gemini-2.5-pro.yaml deleted file mode 100644 index 48a671285abf201e0105640743ea25d8ae0482f5..0000000000000000000000000000000000000000 --- a/providertests/testdata/TestSimple/google-vertex-gemini-2.5-pro.yaml +++ /dev/null @@ -1,70 +0,0 @@ ---- -version: 2 -interactions: -- id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 180 - host: us-central1-aiplatform.googleapis.com - body: | - {"contents":[{"parts":[{"text":"Say hi in Portuguese"}],"role":"user"}],"generationConfig":{},"systemInstruction":{"parts":[{"text":"You are a helpful assistant"}],"role":"user"}} - headers: - Content-Type: - - application/json - User-Agent: - - google-genai-sdk/1.25.0 gl-go/go1.25.0 - url: https://us-central1-aiplatform.googleapis.com/v1beta1/projects/fantasy-playground-472418/locations/us-central1/publishers/google/models/gemini-2.5-pro:generateContent - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - content_length: -1 - uncompressed: true - body: | - { - "candidates": [ - { - "content": { - "role": "model", - "parts": [ - { - "text": "Of course! The most common ways to say \"hi\" in Portuguese are:\n\n* **Olá** (oh-LAH) - This is the equivalent of \"hello\" and can be used in any situation.\n* **Oi** (oy) - This is more informal, like \"hi,\" and is extremely common, especially in Brazil.\n\nYou can also use a greeting depending on the time of day:\n\n* **Bom dia** (bohm JEE-ah) - Good morning\n* **Boa tarde** (BOH-ah TAR-jee) - Good afternoon\n* **Boa noite** (BOH-ah NOY-tchee) - Good evening / Good night" - } - ] - }, - "finishReason": "STOP", - "avgLogprobs": -0.93591674386638479 - } - ], - "usageMetadata": { - "promptTokenCount": 9, - "candidatesTokenCount": 146, - "totalTokenCount": 905, - "trafficType": "ON_DEMAND", - "promptTokensDetails": [ - { - "modality": "TEXT", - "tokenCount": 9 - } - ], - "candidatesTokensDetails": [ - { - "modality": "TEXT", - "tokenCount": 146 - } - ], - "thoughtsTokenCount": 750 - }, - "modelVersion": "gemini-2.5-pro", - "createTime": "2025-09-24T19:46:04.550048Z", - "responseId": "fErUaKDJIaChmecP8LzZwQs" - } - headers: - Content-Type: - - application/json; charset=UTF-8 - status: 200 OK - code: 200 - duration: 8.665756459s diff --git a/providertests/testdata/TestVercelCommon/claude-sonnet-4/multi_tool.yaml b/providertests/testdata/TestVercelCommon/claude-sonnet-4/multi_tool.yaml index 7ab9ef881a8e7732bfcfc6e37cbb0d5e13d5ef33..d4fd63de974c99babcbd10617bd097b63021db1a 100644 --- a/providertests/testdata/TestVercelCommon/claude-sonnet-4/multi_tool.yaml +++ b/providertests/testdata/TestVercelCommon/claude-sonnet-4/multi_tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,13 +24,13 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF37K2HQCCQMFG024V4NNE3","object":"chat.completion","created":1770033239,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_01Pp7heoom1NFVC9pZAq7RVP","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}},{"id":"toolu_01CyT9hTRh1yDg65BtKKoQoJ","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}],"provider_metadata":{"anthropic":{"usage":{"input_tokens":507,"output_tokens":135,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":335024.437964,"endTime":337607.847298,"statusCode":200,"providerResponseId":"msg_01K9VNT3Y7C6bhS39BSLDfma"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.003546","marketCost":"0.003546","generationId":"gen_01KGF37K2HQCCQMFG024V4NNE3","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":507,"completion_tokens":135,"total_tokens":642,"cost":0.003546,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.003546},"system_fingerprint":"fp_lt5c47efr0","generationId":"gen_01KGF37K2HQCCQMFG024V4NNE3"}' + body: '{"id":"gen_01KKHTP6W3TJ5V0YMJCBSHNAKX","object":"chat.completion","created":1773346169,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_01P5GYPxxrGMvbwYzx87tMR7","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}},{"id":"toolu_01T42vK7zqvmCCuN8PguwXvg","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}],"provider_metadata":{"anthropic":{"usage":{"input_tokens":507,"output_tokens":137,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":239553.809581,"endTime":241814.018094,"statusCode":200,"providerResponseId":"msg_01Ujns8YE2GgpsszwZoRDYhr"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":239553.809581,"endTime":241814.018094,"statusCode":200,"providerResponseId":"msg_01Ujns8YE2GgpsszwZoRDYhr"}]}],"totalProviderAttemptCount":1},"cost":"0.003576","marketCost":"0.003576","generationId":"gen_01KKHTP6W3TJ5V0YMJCBSHNAKX","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":507,"completion_tokens":137,"total_tokens":644,"cost":0.003576,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.003576},"system_fingerprint":"fp_8k975oloua","generationId":"gen_01KKHTP6W3TJ5V0YMJCBSHNAKX"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.695440458s + duration: 2.418770666s - id: 1 request: proto: HTTP/1.1 @@ -38,14 +38,14 @@ interactions: proto_minor: 1 content_length: 1259 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"},{"tool_calls":[{"id":"toolu_01Pp7heoom1NFVC9pZAq7RVP","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"toolu_01CyT9hTRh1yDg65BtKKoQoJ","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_01Pp7heoom1NFVC9pZAq7RVP","role":"tool"},{"content":"6","tool_call_id":"toolu_01CyT9hTRh1yDg65BtKKoQoJ","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}]}' + 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":"toolu_01P5GYPxxrGMvbwYzx87tMR7","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"toolu_01T42vK7zqvmCCuN8PguwXvg","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_01P5GYPxxrGMvbwYzx87tMR7","role":"tool"},{"content":"6","tool_call_id":"toolu_01T42vK7zqvmCCuN8PguwXvg","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF37NPK9H15VB93JDFXHTFA","object":"chat.completion","created":1770033242,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":"I''ve performed both operations with the numbers 2 and 3:\n- Addition: 2 + 3 = 5\n- Multiplication: 2 × 3 = 6","provider_metadata":{"anthropic":{"usage":{"input_tokens":688,"output_tokens":47,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":4529729.487684,"endTime":4532485.133344,"statusCode":200,"providerResponseId":"msg_01NmyxoER7vKZW5SBBtUa98q"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.002769","marketCost":"0.002769","generationId":"gen_01KGF37NPK9H15VB93JDFXHTFA","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":688,"completion_tokens":47,"total_tokens":735,"cost":0.002769,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002769},"system_fingerprint":"fp_iwzjnx4gms","generationId":"gen_01KGF37NPK9H15VB93JDFXHTFA"}' + body: '{"id":"gen_01KKHTP97W6AWQ09AA1E7EXCK5","object":"chat.completion","created":1773346171,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":"I''ve performed both operations with the numbers 2 and 3:\n- Addition: 2 + 3 = 5\n- Multiplication: 2 × 3 = 6","provider_metadata":{"anthropic":{"usage":{"input_tokens":688,"output_tokens":47,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":241837.326045,"endTime":243457.584936,"statusCode":200,"providerResponseId":"msg_016ibp6DQqMhRqx64VGWe2EM"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":241837.326045,"endTime":243457.584936,"statusCode":200,"providerResponseId":"msg_016ibp6DQqMhRqx64VGWe2EM"}]}],"totalProviderAttemptCount":1},"cost":"0.002769","marketCost":"0.002769","generationId":"gen_01KKHTP97W6AWQ09AA1E7EXCK5","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":688,"completion_tokens":47,"total_tokens":735,"cost":0.002769,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002769},"system_fingerprint":"fp_ybkhddaql8","generationId":"gen_01KKHTP97W6AWQ09AA1E7EXCK5"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.965395875s + duration: 1.809033041s diff --git a/providertests/testdata/TestVercelCommon/claude-sonnet-4/multi_tool_streaming.yaml b/providertests/testdata/TestVercelCommon/claude-sonnet-4/multi_tool_streaming.yaml index ba630b779a4f7c1b28d213e806e15987189d9f98..5a14286e78972d16a1e8e92f16d1e62af0335a6f 100644 --- a/providertests/testdata/TestVercelCommon/claude-sonnet-4/multi_tool_streaming.yaml +++ b/providertests/testdata/TestVercelCommon/claude-sonnet-4/multi_tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,35 +24,33 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF37RMDX4SKJG4WVQMM9169","object":"chat.completion.chunk","created":1770033244,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hia2ehn86q"} + data: {"id":"gen_01KKHTPB0VVB4G1GX21F4H7EN4","object":"chat.completion.chunk","created":1773346172,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_g0zfy07qs0"} - data: {"id":"gen_01KGF37RMDX4SKJG4WVQMM9169","object":"chat.completion.chunk","created":1770033244,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hia2ehn86q"} + data: {"id":"gen_01KKHTPB0VVB4G1GX21F4H7EN4","object":"chat.completion.chunk","created":1773346172,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"I'll add and"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_g0zfy07qs0"} - data: {"id":"gen_01KGF37RMDX4SKJG4WVQMM9169","object":"chat.completion.chunk","created":1770033244,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"'ll add an"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hia2ehn86q"} + data: {"id":"gen_01KKHTPB0VVB4G1GX21F4H7EN4","object":"chat.completion.chunk","created":1773346172,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" multiply the numbers"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_g0zfy07qs0"} - data: {"id":"gen_01KGF37RMDX4SKJG4WVQMM9169","object":"chat.completion.chunk","created":1770033244,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"d multiply the"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hia2ehn86q"} + data: {"id":"gen_01KKHTPB0VVB4G1GX21F4H7EN4","object":"chat.completion.chunk","created":1773346172,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" 2 and 3 for"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_g0zfy07qs0"} - data: {"id":"gen_01KGF37RMDX4SKJG4WVQMM9169","object":"chat.completion.chunk","created":1770033244,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" numbers 2 and 3 "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hia2ehn86q"} + data: {"id":"gen_01KKHTPB0VVB4G1GX21F4H7EN4","object":"chat.completion.chunk","created":1773346172,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" you."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_g0zfy07qs0"} - data: {"id":"gen_01KGF37RMDX4SKJG4WVQMM9169","object":"chat.completion.chunk","created":1770033244,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"for you."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hia2ehn86q"} + data: {"id":"gen_01KKHTPB0VVB4G1GX21F4H7EN4","object":"chat.completion.chunk","created":1773346172,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"toolu_01QU6XHH6Ct5srCeCZJztb1y","type":"function","function":{"name":"add","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_g0zfy07qs0"} - data: {"id":"gen_01KGF37RMDX4SKJG4WVQMM9169","object":"chat.completion.chunk","created":1770033244,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"toolu_0135npjMLttuPFBue5jmkrQ7","type":"function","function":{"name":"add","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hia2ehn86q"} + data: {"id":"gen_01KKHTPB0VVB4G1GX21F4H7EN4","object":"chat.completion.chunk","created":1773346172,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"a\": 2"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_g0zfy07qs0"} - data: {"id":"gen_01KGF37RMDX4SKJG4WVQMM9169","object":"chat.completion.chunk","created":1770033244,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"a\": 2"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hia2ehn86q"} + data: {"id":"gen_01KKHTPB0VVB4G1GX21F4H7EN4","object":"chat.completion.chunk","created":1773346172,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":", "}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_g0zfy07qs0"} - data: {"id":"gen_01KGF37RMDX4SKJG4WVQMM9169","object":"chat.completion.chunk","created":1770033244,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":", \""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hia2ehn86q"} + data: {"id":"gen_01KKHTPB0VVB4G1GX21F4H7EN4","object":"chat.completion.chunk","created":1773346172,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"b\": 3}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_g0zfy07qs0"} - data: {"id":"gen_01KGF37RMDX4SKJG4WVQMM9169","object":"chat.completion.chunk","created":1770033244,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"b\": 3}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hia2ehn86q"} + data: {"id":"gen_01KKHTPB0VVB4G1GX21F4H7EN4","object":"chat.completion.chunk","created":1773346172,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"toolu_01Efj1TvKTdgHLoko7KWUMVE","type":"function","function":{"name":"multiply","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_g0zfy07qs0"} - data: {"id":"gen_01KGF37RMDX4SKJG4WVQMM9169","object":"chat.completion.chunk","created":1770033244,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"toolu_0158fwcmJxxApeN8LydKZFKq","type":"function","function":{"name":"multiply","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hia2ehn86q"} + data: {"id":"gen_01KKHTPB0VVB4G1GX21F4H7EN4","object":"chat.completion.chunk","created":1773346172,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"a\": 2"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_g0zfy07qs0"} - data: {"id":"gen_01KGF37RMDX4SKJG4WVQMM9169","object":"chat.completion.chunk","created":1770033244,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"a\": 2"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hia2ehn86q"} + data: {"id":"gen_01KKHTPB0VVB4G1GX21F4H7EN4","object":"chat.completion.chunk","created":1773346172,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":", "}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_g0zfy07qs0"} - data: {"id":"gen_01KGF37RMDX4SKJG4WVQMM9169","object":"chat.completion.chunk","created":1770033244,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":", \"b"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hia2ehn86q"} + data: {"id":"gen_01KKHTPB0VVB4G1GX21F4H7EN4","object":"chat.completion.chunk","created":1773346172,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"\"b\": 3}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_g0zfy07qs0"} - data: {"id":"gen_01KGF37RMDX4SKJG4WVQMM9169","object":"chat.completion.chunk","created":1770033244,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"\": 3}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hia2ehn86q"} - - data: {"id":"gen_01KGF37RMDX4SKJG4WVQMM9169","object":"chat.completion.chunk","created":1770033244,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":502,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":137,"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1348791.685811,"endTime":1350481.290097,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1348791.685811,"endTime":1350481.290097,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.003561","marketCost":"0.003561","generationId":"gen_01KGF37RMDX4SKJG4WVQMM9169","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":502,"completion_tokens":137,"total_tokens":639,"cost":0.003561,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.003561},"system_fingerprint":"fp_hia2ehn86q","generationId":"gen_01KGF37RMDX4SKJG4WVQMM9169"} + data: {"id":"gen_01KKHTPB0VVB4G1GX21F4H7EN4","object":"chat.completion.chunk","created":1773346172,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":502,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":137,"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":322008.401321,"endTime":323988.444712,"providerRequestId":"req_011CYynuqMab2kEubp15EEeP","statusCode":200,"providerResponseId":"msg_01GVmJLZY3oQqZBgtYeWjoaj"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":322008.401321,"endTime":323988.444712,"providerRequestId":"req_011CYynuqMab2kEubp15EEeP","statusCode":200,"providerResponseId":"msg_01GVmJLZY3oQqZBgtYeWjoaj"}]}],"totalProviderAttemptCount":1},"cost":"0.003561","marketCost":"0.003561","generationId":"gen_01KKHTPB0VVB4G1GX21F4H7EN4","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":502,"completion_tokens":137,"total_tokens":639,"cost":0.003561,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.003561},"system_fingerprint":"fp_g0zfy07qs0","generationId":"gen_01KKHTPB0VVB4G1GX21F4H7EN4"} data: [DONE] @@ -61,7 +59,7 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 1.838556459s + duration: 1.084668208s - id: 1 request: proto: HTTP/1.1 @@ -69,14 +67,14 @@ interactions: proto_minor: 1 content_length: 1365 host: "" - body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"content":"I''ll add and multiply the numbers 2 and 3 for you.","tool_calls":[{"id":"toolu_0135npjMLttuPFBue5jmkrQ7","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"toolu_0158fwcmJxxApeN8LydKZFKq","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_0135npjMLttuPFBue5jmkrQ7","role":"tool"},{"content":"6","tool_call_id":"toolu_0158fwcmJxxApeN8LydKZFKq","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"content":"I''ll add and multiply the numbers 2 and 3 for you.","tool_calls":[{"id":"toolu_01QU6XHH6Ct5srCeCZJztb1y","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"toolu_01Efj1TvKTdgHLoko7KWUMVE","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_01QU6XHH6Ct5srCeCZJztb1y","role":"tool"},{"content":"6","tool_call_id":"toolu_01Efj1TvKTdgHLoko7KWUMVE","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -85,23 +83,21 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF37VJZFMN3ZHEKK9EGN5P1","object":"chat.completion.chunk","created":1770033246,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_sdbcn0gb5k"} - - data: {"id":"gen_01KGF37VJZFMN3ZHEKK9EGN5P1","object":"chat.completion.chunk","created":1770033246,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_sdbcn0gb5k"} + data: {"id":"gen_01KKHTPD4B8EC5DPE1V21FFEHA","object":"chat.completion.chunk","created":1773346175,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_diny0qxnxu"} - data: {"id":"gen_01KGF37VJZFMN3ZHEKK9EGN5P1","object":"chat.completion.chunk","created":1770033246,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" results"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_sdbcn0gb5k"} + data: {"id":"gen_01KKHTPD4B8EC5DPE1V21FFEHA","object":"chat.completion.chunk","created":1773346175,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_diny0qxnxu"} - data: {"id":"gen_01KGF37VJZFMN3ZHEKK9EGN5P1","object":"chat.completion.chunk","created":1770033246,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" are"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_sdbcn0gb5k"} + data: {"id":"gen_01KKHTPD4B8EC5DPE1V21FFEHA","object":"chat.completion.chunk","created":1773346175,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" results"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_diny0qxnxu"} - data: {"id":"gen_01KGF37VJZFMN3ZHEKK9EGN5P1","object":"chat.completion.chunk","created":1770033246,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":":\n- "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_sdbcn0gb5k"} + data: {"id":"gen_01KKHTPD4B8EC5DPE1V21FFEHA","object":"chat.completion.chunk","created":1773346175,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" are:\n- "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_diny0qxnxu"} - data: {"id":"gen_01KGF37VJZFMN3ZHEKK9EGN5P1","object":"chat.completion.chunk","created":1770033246,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"2 + 3 = "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_sdbcn0gb5k"} + data: {"id":"gen_01KKHTPD4B8EC5DPE1V21FFEHA","object":"chat.completion.chunk","created":1773346175,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"2 + 3 = "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_diny0qxnxu"} - data: {"id":"gen_01KGF37VJZFMN3ZHEKK9EGN5P1","object":"chat.completion.chunk","created":1770033246,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"5\n- 2 × "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_sdbcn0gb5k"} + data: {"id":"gen_01KKHTPD4B8EC5DPE1V21FFEHA","object":"chat.completion.chunk","created":1773346175,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"5\n- 2 × "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_diny0qxnxu"} - data: {"id":"gen_01KGF37VJZFMN3ZHEKK9EGN5P1","object":"chat.completion.chunk","created":1770033246,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"3 = 6"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_sdbcn0gb5k"} + data: {"id":"gen_01KKHTPD4B8EC5DPE1V21FFEHA","object":"chat.completion.chunk","created":1773346175,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"3 = 6"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_diny0qxnxu"} - data: {"id":"gen_01KGF37VJZFMN3ZHEKK9EGN5P1","object":"chat.completion.chunk","created":1770033246,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":700,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":31,"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":7614629.293412,"endTime":7615648.604763,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":7614629.293412,"endTime":7615648.604763,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.002565","marketCost":"0.002565","generationId":"gen_01KGF37VJZFMN3ZHEKK9EGN5P1","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":700,"completion_tokens":31,"total_tokens":731,"cost":0.002565,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002565},"system_fingerprint":"fp_sdbcn0gb5k","generationId":"gen_01KGF37VJZFMN3ZHEKK9EGN5P1"} + data: {"id":"gen_01KKHTPD4B8EC5DPE1V21FFEHA","object":"chat.completion.chunk","created":1773346175,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":700,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":31,"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":245859.354233,"endTime":247201.752003,"providerRequestId":"req_011CYynuzpbf9jXGQ2TuLRiX","statusCode":200,"providerResponseId":"msg_018nPp2hwwQ3fxxrWh11hrV2"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":245859.354233,"endTime":247201.752003,"providerRequestId":"req_011CYynuzpbf9jXGQ2TuLRiX","statusCode":200,"providerResponseId":"msg_018nPp2hwwQ3fxxrWh11hrV2"}]}],"totalProviderAttemptCount":1},"cost":"0.002565","marketCost":"0.002565","generationId":"gen_01KKHTPD4B8EC5DPE1V21FFEHA","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":700,"completion_tokens":31,"total_tokens":731,"cost":0.002565,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002565},"system_fingerprint":"fp_diny0qxnxu","generationId":"gen_01KKHTPD4B8EC5DPE1V21FFEHA"} data: [DONE] @@ -110,4 +106,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 1.108064583s + duration: 1.158283792s diff --git a/providertests/testdata/TestVercelCommon/claude-sonnet-4/simple.yaml b/providertests/testdata/TestVercelCommon/claude-sonnet-4/simple.yaml index c62fe28e87ccb13f94e2c4e92411edb4210629f4..35d7532c1f5989082fd8ca4f35ea291840ad90bd 100644 --- a/providertests/testdata/TestVercelCommon/claude-sonnet-4/simple.yaml +++ b/providertests/testdata/TestVercelCommon/claude-sonnet-4/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF377728Q76J66SN7WNPNNP","object":"chat.completion","created":1770033226,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":"Olá! \n\nThat''s \"hi\" in Portuguese. You could also say \"Oi!\" which is a bit more casual and friendly.","provider_metadata":{"anthropic":{"usage":{"input_tokens":16,"output_tokens":35,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1330927.642499,"endTime":1332861.743603,"statusCode":200,"providerResponseId":"msg_01KTuWnKf9GVVspdbvDRUbTo"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.000573","marketCost":"0.000573","generationId":"gen_01KGF377728Q76J66SN7WNPNNP","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":16,"completion_tokens":35,"total_tokens":51,"cost":0.000573,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000573},"system_fingerprint":"fp_t6mx2uhujo","generationId":"gen_01KGF377728Q76J66SN7WNPNNP"}' + body: '{"id":"gen_01KKHTNQZDDZJESK91MNFBRAV3","object":"chat.completion","created":1773346154,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":"Olá! \n\nThat''s \"hi\" in Portuguese. You could also say \"Oi!\" which is a more casual greeting.","provider_metadata":{"anthropic":{"usage":{"input_tokens":16,"output_tokens":33,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1204470.518105,"endTime":1206665.434102,"statusCode":200,"providerResponseId":"msg_018PwrjYfkDkmxKaJ6gY2bxR"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1204470.518105,"endTime":1206665.434102,"statusCode":200,"providerResponseId":"msg_018PwrjYfkDkmxKaJ6gY2bxR"}]}],"totalProviderAttemptCount":1},"cost":"0.000543","marketCost":"0.000543","generationId":"gen_01KKHTNQZDDZJESK91MNFBRAV3","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":16,"completion_tokens":33,"total_tokens":49,"cost":0.000543,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000543},"system_fingerprint":"fp_22uzp91afp","generationId":"gen_01KKHTNQZDDZJESK91MNFBRAV3"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.374222792s + duration: 2.664977416s diff --git a/providertests/testdata/TestVercelCommon/claude-sonnet-4/simple_streaming.yaml b/providertests/testdata/TestVercelCommon/claude-sonnet-4/simple_streaming.yaml index cf48e674de900fe50e962f0e0f165a5869f11975..06d5e65c995759a86e2f3f98e4b647ed95636f62 100644 --- a/providertests/testdata/TestVercelCommon/claude-sonnet-4/simple_streaming.yaml +++ b/providertests/testdata/TestVercelCommon/claude-sonnet-4/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,33 +24,33 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF379703450NEHTHYWRXNWC","object":"chat.completion.chunk","created":1770033227,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5a0fyewqxl"} + data: {"id":"gen_01KKHTNTE9G11EVGTVCG6H4CX1","object":"chat.completion.chunk","created":1773346158,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_8xfa98tklc"} - data: {"id":"gen_01KGF379703450NEHTHYWRXNWC","object":"chat.completion.chunk","created":1770033227,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"Oi!"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5a0fyewqxl"} + data: {"id":"gen_01KKHTNTE9G11EVGTVCG6H4CX1","object":"chat.completion.chunk","created":1773346158,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"Oi! \n\n("},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_8xfa98tklc"} - data: {"id":"gen_01KGF379703450NEHTHYWRXNWC","object":"chat.completion.chunk","created":1770033227,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5a0fyewqxl"} + data: {"id":"gen_01KKHTNTE9G11EVGTVCG6H4CX1","object":"chat.completion.chunk","created":1773346158,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"That"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_8xfa98tklc"} - data: {"id":"gen_01KGF379703450NEHTHYWRXNWC","object":"chat.completion.chunk","created":1770033227,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"\n\n("},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5a0fyewqxl"} + data: {"id":"gen_01KKHTNTE9G11EVGTVCG6H4CX1","object":"chat.completion.chunk","created":1773346158,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"'s a"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_8xfa98tklc"} - data: {"id":"gen_01KGF379703450NEHTHYWRXNWC","object":"chat.completion.chunk","created":1770033227,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"You"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5a0fyewqxl"} + data: {"id":"gen_01KKHTNTE9G11EVGTVCG6H4CX1","object":"chat.completion.chunk","created":1773346158,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" casual \"hi\" in"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_8xfa98tklc"} - data: {"id":"gen_01KGF379703450NEHTHYWRXNWC","object":"chat.completion.chunk","created":1770033227,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" can"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5a0fyewqxl"} + data: {"id":"gen_01KKHTNTE9G11EVGTVCG6H4CX1","object":"chat.completion.chunk","created":1773346158,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" Portuguese."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_8xfa98tklc"} - data: {"id":"gen_01KGF379703450NEHTHYWRXNWC","object":"chat.completion.chunk","created":1770033227,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" also say \"Olá!\" which"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5a0fyewqxl"} + data: {"id":"gen_01KKHTNTE9G11EVGTVCG6H4CX1","object":"chat.completion.chunk","created":1773346158,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" You"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_8xfa98tklc"} - data: {"id":"gen_01KGF379703450NEHTHYWRXNWC","object":"chat.completion.chunk","created":1770033227,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5a0fyewqxl"} + data: {"id":"gen_01KKHTNTE9G11EVGTVCG6H4CX1","object":"chat.completion.chunk","created":1773346158,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" could also say"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_8xfa98tklc"} - data: {"id":"gen_01KGF379703450NEHTHYWRXNWC","object":"chat.completion.chunk","created":1770033227,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" another"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5a0fyewqxl"} + data: {"id":"gen_01KKHTNTE9G11EVGTVCG6H4CX1","object":"chat.completion.chunk","created":1773346158,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" \""},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_8xfa98tklc"} - data: {"id":"gen_01KGF379703450NEHTHYWRXNWC","object":"chat.completion.chunk","created":1770033227,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" common way"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5a0fyewqxl"} + data: {"id":"gen_01KKHTNTE9G11EVGTVCG6H4CX1","object":"chat.completion.chunk","created":1773346158,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"Olá\" for"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_8xfa98tklc"} - data: {"id":"gen_01KGF379703450NEHTHYWRXNWC","object":"chat.completion.chunk","created":1770033227,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" to say hi"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5a0fyewqxl"} + data: {"id":"gen_01KKHTNTE9G11EVGTVCG6H4CX1","object":"chat.completion.chunk","created":1773346158,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" a slightly"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_8xfa98tklc"} - data: {"id":"gen_01KGF379703450NEHTHYWRXNWC","object":"chat.completion.chunk","created":1770033227,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5a0fyewqxl"} + data: {"id":"gen_01KKHTNTE9G11EVGTVCG6H4CX1","object":"chat.completion.chunk","created":1773346158,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" more formal greeting"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_8xfa98tklc"} - data: {"id":"gen_01KGF379703450NEHTHYWRXNWC","object":"chat.completion.chunk","created":1770033227,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" Portuguese)"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5a0fyewqxl"} + data: {"id":"gen_01KKHTNTE9G11EVGTVCG6H4CX1","object":"chat.completion.chunk","created":1773346158,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":".)"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_8xfa98tklc"} - data: {"id":"gen_01KGF379703450NEHTHYWRXNWC","object":"chat.completion.chunk","created":1770033227,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":30,"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1333898.356903,"endTime":1334761.868909,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1333898.356903,"endTime":1334761.868909,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.000498","marketCost":"0.000498","generationId":"gen_01KGF379703450NEHTHYWRXNWC","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":16,"completion_tokens":30,"total_tokens":46,"cost":0.000498,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000498},"system_fingerprint":"fp_5a0fyewqxl","generationId":"gen_01KGF379703450NEHTHYWRXNWC"} + data: {"id":"gen_01KKHTNTE9G11EVGTVCG6H4CX1","object":"chat.completion.chunk","created":1773346158,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":36,"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":801979.517946,"endTime":805891.310615,"providerRequestId":"req_011CYyntaoCDfut7QP7UftnF","statusCode":200,"providerResponseId":"msg_01XDNFZXfPixx9uryUnY3pvM"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":801979.517946,"endTime":805891.310615,"providerRequestId":"req_011CYyntaoCDfut7QP7UftnF","statusCode":200,"providerResponseId":"msg_01XDNFZXfPixx9uryUnY3pvM"}]}],"totalProviderAttemptCount":1},"cost":"0.000588","marketCost":"0.000588","generationId":"gen_01KKHTNTE9G11EVGTVCG6H4CX1","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":16,"completion_tokens":36,"total_tokens":52,"cost":0.000588,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000588},"system_fingerprint":"fp_8xfa98tklc","generationId":"gen_01KKHTNTE9G11EVGTVCG6H4CX1"} data: [DONE] @@ -59,4 +59,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 993.576166ms + duration: 3.36887075s diff --git a/providertests/testdata/TestVercelCommon/claude-sonnet-4/tool.yaml b/providertests/testdata/TestVercelCommon/claude-sonnet-4/tool.yaml index ca3bb5c2b87e764921bb0effa4d9abfaf9843801..06465dbbfdce4b6a949d64b35cd9d6fb6b78c58d 100644 --- a/providertests/testdata/TestVercelCommon/claude-sonnet-4/tool.yaml +++ b/providertests/testdata/TestVercelCommon/claude-sonnet-4/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,13 +24,13 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF37B48YTSG8HPMC0Z9AVAR","object":"chat.completion","created":1770033230,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_01NSrymFZiohT2iy9U5LE9rA","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"}}],"provider_metadata":{"anthropic":{"usage":{"input_tokens":394,"output_tokens":67,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":2429109.035804,"endTime":2430987.56251,"statusCode":200,"providerResponseId":"msg_01Ak5uPKnJHaza1hFgS4fMoY"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.002187","marketCost":"0.002187","generationId":"gen_01KGF37B48YTSG8HPMC0Z9AVAR","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":394,"completion_tokens":67,"total_tokens":461,"cost":0.002187,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002187},"system_fingerprint":"fp_u1vgvb877f","generationId":"gen_01KGF37B48YTSG8HPMC0Z9AVAR"}' + body: '{"id":"gen_01KKHTNYDSXG9EYEEAJ2QX1E09","object":"chat.completion","created":1773346161,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_019aQLMW9n8sYKFABdm1KP7u","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"}}],"provider_metadata":{"anthropic":{"usage":{"input_tokens":394,"output_tokens":67,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":230909.595342,"endTime":233718.393361,"statusCode":200,"providerResponseId":"msg_011JsFaheBcJPgUj61WFDQqA"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":230909.595342,"endTime":233718.393361,"statusCode":200,"providerResponseId":"msg_011JsFaheBcJPgUj61WFDQqA"}]}],"totalProviderAttemptCount":1},"cost":"0.002187","marketCost":"0.002187","generationId":"gen_01KKHTNYDSXG9EYEEAJ2QX1E09","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":394,"completion_tokens":67,"total_tokens":461,"cost":0.002187,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002187},"system_fingerprint":"fp_qsdt78u95y","generationId":"gen_01KKHTNYDSXG9EYEEAJ2QX1E09"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.999195125s + duration: 2.979081792s - id: 1 request: proto: HTTP/1.1 @@ -38,14 +38,14 @@ interactions: proto_minor: 1 content_length: 720 host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"toolu_01NSrymFZiohT2iy9U5LE9rA","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_01NSrymFZiohT2iy9U5LE9rA","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"toolu_019aQLMW9n8sYKFABdm1KP7u","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_019aQLMW9n8sYKFABdm1KP7u","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF37D4BQSXP782PJN0Q3KYT","object":"chat.completion","created":1770033233,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":"The current weather in Florence, Italy is 40°C (104°F). That''s quite hot! It''s a very warm day there.","provider_metadata":{"anthropic":{"usage":{"input_tokens":463,"output_tokens":33,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":410587.245308,"endTime":412600.850201,"statusCode":200,"providerResponseId":"msg_01ReE5KwsYimH5AMRwEuLit9"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.001884","marketCost":"0.001884","generationId":"gen_01KGF37D4BQSXP782PJN0Q3KYT","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":463,"completion_tokens":33,"total_tokens":496,"cost":0.001884,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.001884},"system_fingerprint":"fp_dwzayvqyi3","generationId":"gen_01KGF37D4BQSXP782PJN0Q3KYT"}' + body: '{"id":"gen_01KKHTP1BAMHHZPHYH57VFYEXD","object":"chat.completion","created":1773346163,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":"The current weather in Florence, Italy is 40°C (104°F). That''s quite hot! If you''re planning to visit or are currently there, make sure to stay hydrated and seek shade during the hottest parts of the day.","provider_metadata":{"anthropic":{"usage":{"input_tokens":463,"output_tokens":54,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":233765.422133,"endTime":235647.611867,"statusCode":200,"providerResponseId":"msg_01Qfs6WsPf9Jt7VG3HYXfY4f"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":233765.422133,"endTime":235647.611867,"statusCode":200,"providerResponseId":"msg_01Qfs6WsPf9Jt7VG3HYXfY4f"}]}],"totalProviderAttemptCount":1},"cost":"0.002199","marketCost":"0.002199","generationId":"gen_01KKHTP1BAMHHZPHYH57VFYEXD","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":463,"completion_tokens":54,"total_tokens":517,"cost":0.002199,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002199},"system_fingerprint":"fp_al8n18mvh8","generationId":"gen_01KKHTP1BAMHHZPHYH57VFYEXD"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.1313565s + duration: 2.074562375s diff --git a/providertests/testdata/TestVercelCommon/claude-sonnet-4/tool_streaming.yaml b/providertests/testdata/TestVercelCommon/claude-sonnet-4/tool_streaming.yaml index 0039e197a1ec049f3910e564a992dd923f9ce0ce..37652de22ceb3f7861502dbd3db991a50d57fd90 100644 --- a/providertests/testdata/TestVercelCommon/claude-sonnet-4/tool_streaming.yaml +++ b/providertests/testdata/TestVercelCommon/claude-sonnet-4/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,25 +24,27 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF37F6TEH1JWRE2BABW1XV7","object":"chat.completion.chunk","created":1770033234,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_22ov8ctw6a"} + data: {"id":"gen_01KKHTP3C6Z9A2M6JKBJ4A9FS6","object":"chat.completion.chunk","created":1773346164,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pfjuxie0ws"} - data: {"id":"gen_01KGF37F6TEH1JWRE2BABW1XV7","object":"chat.completion.chunk","created":1770033234,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"I'll get the weather information for Florence"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_22ov8ctw6a"} + data: {"id":"gen_01KKHTP3C6Z9A2M6JKBJ4A9FS6","object":"chat.completion.chunk","created":1773346164,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"I'll get the current"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pfjuxie0ws"} - data: {"id":"gen_01KGF37F6TEH1JWRE2BABW1XV7","object":"chat.completion.chunk","created":1770033234,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":", Italy for you."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_22ov8ctw6a"} + data: {"id":"gen_01KKHTP3C6Z9A2M6JKBJ4A9FS6","object":"chat.completion.chunk","created":1773346164,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" weather information for Florence, Italy for you"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pfjuxie0ws"} - data: {"id":"gen_01KGF37F6TEH1JWRE2BABW1XV7","object":"chat.completion.chunk","created":1770033234,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"toolu_01P61EhnucuCA3gRE8rXpYrt","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_22ov8ctw6a"} + data: {"id":"gen_01KKHTP3C6Z9A2M6JKBJ4A9FS6","object":"chat.completion.chunk","created":1773346164,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pfjuxie0ws"} - data: {"id":"gen_01KGF37F6TEH1JWRE2BABW1XV7","object":"chat.completion.chunk","created":1770033234,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"location\""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_22ov8ctw6a"} + data: {"id":"gen_01KKHTP3C6Z9A2M6JKBJ4A9FS6","object":"chat.completion.chunk","created":1773346164,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"toolu_01YE6sgGyYMPQGoV1qg3qzZS","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pfjuxie0ws"} - data: {"id":"gen_01KGF37F6TEH1JWRE2BABW1XV7","object":"chat.completion.chunk","created":1770033234,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":": \""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_22ov8ctw6a"} + data: {"id":"gen_01KKHTP3C6Z9A2M6JKBJ4A9FS6","object":"chat.completion.chunk","created":1773346164,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"loca"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pfjuxie0ws"} - data: {"id":"gen_01KGF37F6TEH1JWRE2BABW1XV7","object":"chat.completion.chunk","created":1770033234,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Florence,"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_22ov8ctw6a"} + data: {"id":"gen_01KKHTP3C6Z9A2M6JKBJ4A9FS6","object":"chat.completion.chunk","created":1773346164,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"tion\": "}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pfjuxie0ws"} - data: {"id":"gen_01KGF37F6TEH1JWRE2BABW1XV7","object":"chat.completion.chunk","created":1770033234,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" Ita"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_22ov8ctw6a"} + data: {"id":"gen_01KKHTP3C6Z9A2M6JKBJ4A9FS6","object":"chat.completion.chunk","created":1773346164,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"Flore"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pfjuxie0ws"} - data: {"id":"gen_01KGF37F6TEH1JWRE2BABW1XV7","object":"chat.completion.chunk","created":1770033234,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ly\"}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_22ov8ctw6a"} + data: {"id":"gen_01KKHTP3C6Z9A2M6JKBJ4A9FS6","object":"chat.completion.chunk","created":1773346164,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"nce,Ital"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pfjuxie0ws"} - data: {"id":"gen_01KGF37F6TEH1JWRE2BABW1XV7","object":"chat.completion.chunk","created":1770033234,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":67,"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1339997.935348,"endTime":1341183.011845,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1339997.935348,"endTime":1341183.011845,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.002187","marketCost":"0.002187","generationId":"gen_01KGF37F6TEH1JWRE2BABW1XV7","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":394,"completion_tokens":67,"total_tokens":461,"cost":0.002187,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002187},"system_fingerprint":"fp_22ov8ctw6a","generationId":"gen_01KGF37F6TEH1JWRE2BABW1XV7"} + data: {"id":"gen_01KKHTP3C6Z9A2M6JKBJ4A9FS6","object":"chat.completion.chunk","created":1773346164,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"y\"}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pfjuxie0ws"} + + data: {"id":"gen_01KKHTP3C6Z9A2M6JKBJ4A9FS6","object":"chat.completion.chunk","created":1773346164,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":68,"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":314183.418337,"endTime":315561.049565,"providerRequestId":"req_011CYynuFvQrSDzqw1AMdL61","statusCode":200,"providerResponseId":"msg_01SfdJFUADYsvf6GyCrs6KVY"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":314183.418337,"endTime":315561.049565,"providerRequestId":"req_011CYynuFvQrSDzqw1AMdL61","statusCode":200,"providerResponseId":"msg_01SfdJFUADYsvf6GyCrs6KVY"}]}],"totalProviderAttemptCount":1},"cost":"0.002202","marketCost":"0.002202","generationId":"gen_01KKHTP3C6Z9A2M6JKBJ4A9FS6","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":394,"completion_tokens":68,"total_tokens":462,"cost":0.002202,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002202},"system_fingerprint":"fp_pfjuxie0ws","generationId":"gen_01KKHTP3C6Z9A2M6JKBJ4A9FS6"} data: [DONE] @@ -51,22 +53,22 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 1.273492958s + duration: 1.122870416s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 850 + content_length: 857 host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"I''ll get the weather information for Florence, Italy for you.","tool_calls":[{"id":"toolu_01P61EhnucuCA3gRE8rXpYrt","function":{"arguments":"{\"location\": \"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_01P61EhnucuCA3gRE8rXpYrt","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"I''ll get the current weather information for Florence, Italy for you.","tool_calls":[{"id":"toolu_01YE6sgGyYMPQGoV1qg3qzZS","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_01YE6sgGyYMPQGoV1qg3qzZS","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -75,41 +77,41 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H","object":"chat.completion.chunk","created":1770033235,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_xnw4h12lhy"} + data: {"id":"gen_01KKHTP4WGEHS595XTBHE2Z0AF","object":"chat.completion.chunk","created":1773346166,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_u5hfiro8vj"} - data: {"id":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H","object":"chat.completion.chunk","created":1770033235,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"The current"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_xnw4h12lhy"} + data: {"id":"gen_01KKHTP4WGEHS595XTBHE2Z0AF","object":"chat.completion.chunk","created":1773346166,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_u5hfiro8vj"} - data: {"id":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H","object":"chat.completion.chunk","created":1770033235,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" weather in Florence, Italy shows"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_xnw4h12lhy"} + data: {"id":"gen_01KKHTP4WGEHS595XTBHE2Z0AF","object":"chat.completion.chunk","created":1773346166,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" current"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_u5hfiro8vj"} - data: {"id":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H","object":"chat.completion.chunk","created":1770033235,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" a"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_xnw4h12lhy"} + data: {"id":"gen_01KKHTP4WGEHS595XTBHE2Z0AF","object":"chat.completion.chunk","created":1773346166,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" temperature"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_u5hfiro8vj"} - data: {"id":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H","object":"chat.completion.chunk","created":1770033235,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" temperature of 40°C (104"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_xnw4h12lhy"} + data: {"id":"gen_01KKHTP4WGEHS595XTBHE2Z0AF","object":"chat.completion.chunk","created":1773346166,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" in Florence, Italy is 40°"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_u5hfiro8vj"} - data: {"id":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H","object":"chat.completion.chunk","created":1770033235,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"°F)."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_xnw4h12lhy"} + data: {"id":"gen_01KKHTP4WGEHS595XTBHE2Z0AF","object":"chat.completion.chunk","created":1773346166,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"C (104°F). That"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_u5hfiro8vj"} - data: {"id":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H","object":"chat.completion.chunk","created":1770033235,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" That"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_xnw4h12lhy"} + data: {"id":"gen_01KKHTP4WGEHS595XTBHE2Z0AF","object":"chat.completion.chunk","created":1773346166,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"'s quite"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_u5hfiro8vj"} - data: {"id":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H","object":"chat.completion.chunk","created":1770033235,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"'s quite hot"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_xnw4h12lhy"} + data: {"id":"gen_01KKHTP4WGEHS595XTBHE2Z0AF","object":"chat.completion.chunk","created":1773346166,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" hot"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_u5hfiro8vj"} - data: {"id":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H","object":"chat.completion.chunk","created":1770033235,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"!"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_xnw4h12lhy"} + data: {"id":"gen_01KKHTP4WGEHS595XTBHE2Z0AF","object":"chat.completion.chunk","created":1773346166,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"! Make"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_u5hfiro8vj"} - data: {"id":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H","object":"chat.completion.chunk","created":1770033235,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" It woul"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_xnw4h12lhy"} + data: {"id":"gen_01KKHTP4WGEHS595XTBHE2Z0AF","object":"chat.completion.chunk","created":1773346166,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" sure to"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_u5hfiro8vj"} - data: {"id":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H","object":"chat.completion.chunk","created":1770033235,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"d be a good idea to stay"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_xnw4h12lhy"} + data: {"id":"gen_01KKHTP4WGEHS595XTBHE2Z0AF","object":"chat.completion.chunk","created":1773346166,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" stay"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_u5hfiro8vj"} - data: {"id":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H","object":"chat.completion.chunk","created":1770033235,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" hydrated and seek"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_xnw4h12lhy"} + data: {"id":"gen_01KKHTP4WGEHS595XTBHE2Z0AF","object":"chat.completion.chunk","created":1773346166,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" hydrated and seek"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_u5hfiro8vj"} - data: {"id":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H","object":"chat.completion.chunk","created":1770033235,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" shade or"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_xnw4h12lhy"} + data: {"id":"gen_01KKHTP4WGEHS595XTBHE2Z0AF","object":"chat.completion.chunk","created":1773346166,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" shade if"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_u5hfiro8vj"} - data: {"id":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H","object":"chat.completion.chunk","created":1770033235,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" air conditioning if you're planning"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_xnw4h12lhy"} + data: {"id":"gen_01KKHTP4WGEHS595XTBHE2Z0AF","object":"chat.completion.chunk","created":1773346166,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" you're"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_u5hfiro8vj"} - data: {"id":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H","object":"chat.completion.chunk","created":1770033235,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" to be"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_xnw4h12lhy"} + data: {"id":"gen_01KKHTP4WGEHS595XTBHE2Z0AF","object":"chat.completion.chunk","created":1773346166,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" planning"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_u5hfiro8vj"} - data: {"id":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H","object":"chat.completion.chunk","created":1770033235,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" out"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_xnw4h12lhy"} + data: {"id":"gen_01KKHTP4WGEHS595XTBHE2Z0AF","object":"chat.completion.chunk","created":1773346166,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" to be outd"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_u5hfiro8vj"} - data: {"id":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H","object":"chat.completion.chunk","created":1770033235,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"doors."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_xnw4h12lhy"} + data: {"id":"gen_01KKHTP4WGEHS595XTBHE2Z0AF","object":"chat.completion.chunk","created":1773346166,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"oors."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_u5hfiro8vj"} - data: {"id":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H","object":"chat.completion.chunk","created":1770033235,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":476,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":53,"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":3034449.959696,"endTime":3035377.30027,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":3034449.959696,"endTime":3035377.30027,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.002223","marketCost":"0.002223","generationId":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":476,"completion_tokens":53,"total_tokens":529,"cost":0.002223,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002223},"system_fingerprint":"fp_xnw4h12lhy","generationId":"gen_01KGF37H1H6MYNJHYZ2N1SWF5H"} + data: {"id":"gen_01KKHTP4WGEHS595XTBHE2Z0AF","object":"chat.completion.chunk","created":1773346166,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":477,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":43,"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":237488.977233,"endTime":239355.194633,"providerRequestId":"req_011CYynuNXY7hNuhjgEzG2hi","statusCode":200,"providerResponseId":"msg_015gyWd7uG89PTjGewXBMDe6"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":237488.977233,"endTime":239355.194633,"providerRequestId":"req_011CYynuNXY7hNuhjgEzG2hi","statusCode":200,"providerResponseId":"msg_015gyWd7uG89PTjGewXBMDe6"}]}],"totalProviderAttemptCount":1},"cost":"0.002076","marketCost":"0.002076","generationId":"gen_01KKHTP4WGEHS595XTBHE2Z0AF","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":477,"completion_tokens":43,"total_tokens":520,"cost":0.002076,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002076},"system_fingerprint":"fp_u5hfiro8vj","generationId":"gen_01KKHTP4WGEHS595XTBHE2Z0AF"} data: [DONE] @@ -118,4 +120,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 1.122953792s + duration: 1.111700167s diff --git a/providertests/testdata/TestVercelCommon/gemini-2.5-flash/multi_tool.yaml b/providertests/testdata/TestVercelCommon/gemini-2.5-flash/multi_tool.yaml index 5f1fc92ac8e1d7a7c225028464974c449c6bb5fb..289c297ff10866b0875069e0460dcbbd853f9286 100644 --- a/providertests/testdata/TestVercelCommon/gemini-2.5-flash/multi_tool.yaml +++ b/providertests/testdata/TestVercelCommon/gemini-2.5-flash/multi_tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,13 +24,13 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF381BH2CF0J56H612T8RC3","object":"chat.completion","created":1770033252,"model":"google/gemini-2.5-flash","choices":[{"index":0,"message":{"role":"assistant","content":null,"tool_calls":[{"id":"s3q46gVXfhyIqY2s","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}},{"id":"vomF7JlLjIRlW7U8","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}],"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":111,"promptTokenCount":61,"candidatesTokenCount":10,"totalTokenCount":182,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":4669622.140163,"endTime":4670671.510973,"statusCode":200,"providerResponseId":"Y5CAadiYMJCgmPUPj9uV-AI"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.0003208","marketCost":"0.0003208","generationId":"gen_01KGF381BH2CF0J56H612T8RC3","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":61,"completion_tokens":10,"total_tokens":71,"cost":0.0003208,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":111,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0003208},"system_fingerprint":"fp_q0dgwe4fbo","generationId":"gen_01KGF381BH2CF0J56H612T8RC3"}' + body: '{"id":"gen_01KKHTPKWBG8QMV69ADP3FXZ25","object":"chat.completion","created":1773346182,"model":"google/gemini-2.5-flash","choices":[{"index":0,"message":{"role":"assistant","content":null,"tool_calls":[{"id":"znKlKOZZ9Maku6Hv","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}},{"id":"Gh46WGm1FE1U70hx","type":"function","function":{"name":"multiply","arguments":"{\"b\":3,\"a\":2}"}}],"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":96,"promptTokenCount":61,"candidatesTokenCount":10,"totalTokenCount":167,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":1198603.120483,"endTime":1199628.934601,"statusCode":200,"providerResponseId":"hR2zae_CA82JueUPg4GAwQU"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":1198603.120483,"endTime":1199628.934601,"statusCode":200,"providerResponseId":"hR2zae_CA82JueUPg4GAwQU"}]}],"totalProviderAttemptCount":1},"cost":"0.0002833","marketCost":"0.0002833","generationId":"gen_01KKHTPKWBG8QMV69ADP3FXZ25","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":61,"completion_tokens":10,"total_tokens":71,"cost":0.0002833,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":96,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0002833},"system_fingerprint":"fp_1z72xgpovv","generationId":"gen_01KKHTPKWBG8QMV69ADP3FXZ25"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.184203208s + duration: 1.186645125s - id: 1 request: proto: HTTP/1.1 @@ -38,14 +38,14 @@ interactions: proto_minor: 1 content_length: 1201 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"},{"tool_calls":[{"id":"s3q46gVXfhyIqY2s","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"vomF7JlLjIRlW7U8","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"s3q46gVXfhyIqY2s","role":"tool"},{"content":"6","tool_call_id":"vomF7JlLjIRlW7U8","role":"tool"}],"model":"google/gemini-2.5-flash","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}]}' + 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":"znKlKOZZ9Maku6Hv","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"Gh46WGm1FE1U70hx","function":{"arguments":"{\"b\":3,\"a\":2}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"znKlKOZZ9Maku6Hv","role":"tool"},{"content":"6","tool_call_id":"Gh46WGm1FE1U70hx","role":"tool"}],"model":"google/gemini-2.5-flash","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF382G93A1FEHZRVZDSTMQE","object":"chat.completion","created":1770033253,"model":"google/gemini-2.5-flash","choices":[{"index":0,"message":{"role":"assistant","content":"The sum of 2 and 3 is 5, and the product of 2 and 3 is 6.","provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"promptTokenCount":197,"candidatesTokenCount":25,"totalTokenCount":222}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"google","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":false,"error":"Please ensure that the number of function response parts is equal to the number of function call parts of the function call turn.","startTime":1956234.837355,"endTime":1956397.272511,"statusCode":400},{"provider":"google","internalModelId":"google:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":1956497.822129,"endTime":1956985.150646,"statusCode":200,"providerResponseId":"ZZCAady9I-KF7M8PkM3b4AE"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.0001216","marketCost":"0.0001216","generationId":"gen_01KGF382G93A1FEHZRVZDSTMQE","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":197,"completion_tokens":25,"total_tokens":222,"cost":0.0001216,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0001216},"system_fingerprint":"fp_sxou9xxzzl","generationId":"gen_01KGF382G93A1FEHZRVZDSTMQE"}' + body: '{"id":"gen_01KKHTPN1QBWX0ERVPTF7D28P2","object":"chat.completion","created":1773346182,"model":"google/gemini-2.5-flash","choices":[{"index":0,"message":{"role":"assistant","content":"The sum of 2 and 3 is 5, and the product of 2 and 3 is 6.","provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"promptTokenCount":197,"candidatesTokenCount":25,"totalTokenCount":222}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"google","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":false,"error":"Please ensure that the number of function response parts is equal to the number of function call parts of the function call turn.","startTime":332273.972708,"endTime":332398.058905,"statusCode":400},{"provider":"google","internalModelId":"google:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":332409.701098,"endTime":332999.008556,"statusCode":200,"providerResponseId":"hh2zaYWTF-q8-sAPxoLZsQQ"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":true,"providerAttemptCount":2,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":false,"error":"Please ensure that the number of function response parts is equal to the number of function call parts of the function call turn.","startTime":332273.972708,"endTime":332398.058905,"statusCode":400},{"provider":"google","internalModelId":"google:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":332409.701098,"endTime":332999.008556,"statusCode":200,"providerResponseId":"hh2zaYWTF-q8-sAPxoLZsQQ"}]}],"totalProviderAttemptCount":2},"cost":"0.0001216","marketCost":"0.0001216","generationId":"gen_01KKHTPN1QBWX0ERVPTF7D28P2","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":197,"completion_tokens":25,"total_tokens":222,"cost":0.0001216,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0001216},"system_fingerprint":"fp_bh73j2eaay","generationId":"gen_01KKHTPN1QBWX0ERVPTF7D28P2"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 921.5745ms + duration: 899.65075ms diff --git a/providertests/testdata/TestVercelCommon/gemini-2.5-flash/multi_tool_streaming.yaml b/providertests/testdata/TestVercelCommon/gemini-2.5-flash/multi_tool_streaming.yaml index 25610637b38ad6a0e89aaca399ed38995ba06654..4342180034a0b51aded53c2ee8ae1f8bec483ede 100644 --- a/providertests/testdata/TestVercelCommon/gemini-2.5-flash/multi_tool_streaming.yaml +++ b/providertests/testdata/TestVercelCommon/gemini-2.5-flash/multi_tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,17 +24,17 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF383DF2E9FSJX95AA3ZED7","object":"chat.completion.chunk","created":1770033254,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_nkvitg7moc"} + data: {"id":"gen_01KKHTPNXSMDSZH30WHXZ7E2GK","object":"chat.completion.chunk","created":1773346184,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_mexww0bajf"} - data: {"id":"gen_01KGF383DF2E9FSJX95AA3ZED7","object":"chat.completion.chunk","created":1770033254,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"S66o9rnUIliVpcHx","type":"function","function":{"name":"add","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_nkvitg7moc"} + data: {"id":"gen_01KKHTPNXSMDSZH30WHXZ7E2GK","object":"chat.completion.chunk","created":1773346184,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"iSWgKq1pTuj1RcZp","type":"function","function":{"name":"add","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_mexww0bajf"} - data: {"id":"gen_01KGF383DF2E9FSJX95AA3ZED7","object":"chat.completion.chunk","created":1770033254,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"b\":3,\"a\":2}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_nkvitg7moc"} + data: {"id":"gen_01KKHTPNXSMDSZH30WHXZ7E2GK","object":"chat.completion.chunk","created":1773346184,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"b\":3,\"a\":2}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_mexww0bajf"} - data: {"id":"gen_01KGF383DF2E9FSJX95AA3ZED7","object":"chat.completion.chunk","created":1770033254,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"6e0NXuEtzAHkTRep","type":"function","function":{"name":"multiply","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_nkvitg7moc"} + data: {"id":"gen_01KKHTPNXSMDSZH30WHXZ7E2GK","object":"chat.completion.chunk","created":1773346184,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"DHwaxxZ8DOJ5Gij4","type":"function","function":{"name":"multiply","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_mexww0bajf"} - data: {"id":"gen_01KGF383DF2E9FSJX95AA3ZED7","object":"chat.completion.chunk","created":1770033254,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"a\":2,\"b\":3}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_nkvitg7moc"} + data: {"id":"gen_01KKHTPNXSMDSZH30WHXZ7E2GK","object":"chat.completion.chunk","created":1773346184,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"a\":2,\"b\":3}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_mexww0bajf"} - data: {"id":"gen_01KGF383DF2E9FSJX95AA3ZED7","object":"chat.completion.chunk","created":1770033254,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":37,"promptTokenCount":57,"candidatesTokenCount":10,"totalTokenCount":104,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":3167743.289212,"endTime":3168716.703261,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":3167743.289212,"endTime":3168716.703261,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.0001346","marketCost":"0.0001346","generationId":"gen_01KGF383DF2E9FSJX95AA3ZED7","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":57,"completion_tokens":10,"total_tokens":67,"cost":0.0001346,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":37,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0001346},"system_fingerprint":"fp_nkvitg7moc","generationId":"gen_01KGF383DF2E9FSJX95AA3ZED7"} + data: {"id":"gen_01KKHTPNXSMDSZH30WHXZ7E2GK","object":"chat.completion.chunk","created":1773346184,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":37,"promptTokenCount":57,"candidatesTokenCount":10,"totalTokenCount":104,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":254966.869213,"endTime":256269.094898,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":254966.869213,"endTime":256269.094898,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.0001346","marketCost":"0.0001346","generationId":"gen_01KKHTPNXSMDSZH30WHXZ7E2GK","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":57,"completion_tokens":10,"total_tokens":67,"cost":0.0001346,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":37,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0001346},"system_fingerprint":"fp_mexww0bajf","generationId":"gen_01KKHTPNXSMDSZH30WHXZ7E2GK"} data: [DONE] @@ -43,7 +43,7 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 1.071326459s + duration: 1.46767775s - id: 1 request: proto: HTTP/1.1 @@ -51,14 +51,14 @@ interactions: proto_minor: 1 content_length: 1238 host: "" - body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"S66o9rnUIliVpcHx","function":{"arguments":"{\"b\":3,\"a\":2}","name":"add"},"type":"function"},{"id":"6e0NXuEtzAHkTRep","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"S66o9rnUIliVpcHx","role":"tool"},{"content":"6","tool_call_id":"6e0NXuEtzAHkTRep","role":"tool"}],"model":"google/gemini-2.5-flash","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"iSWgKq1pTuj1RcZp","function":{"arguments":"{\"b\":3,\"a\":2}","name":"add"},"type":"function"},{"id":"DHwaxxZ8DOJ5Gij4","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"iSWgKq1pTuj1RcZp","role":"tool"},{"content":"6","tool_call_id":"DHwaxxZ8DOJ5Gij4","role":"tool"}],"model":"google/gemini-2.5-flash","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -67,15 +67,13 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF384F3XAWSR4PC2A0QPAGW","object":"chat.completion.chunk","created":1770033255,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_r6gptvhx1g"} + data: {"id":"gen_01KKHTPQBG6M2Y2TBQ7MA49PSM","object":"chat.completion.chunk","created":1773346185,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_l0lvkk7u6f"} - data: {"id":"gen_01KGF384F3XAWSR4PC2A0QPAGW","object":"chat.completion.chunk","created":1770033255,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"content":"The sum of"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_r6gptvhx1g"} + data: {"id":"gen_01KKHTPQBG6M2Y2TBQ7MA49PSM","object":"chat.completion.chunk","created":1773346185,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_l0lvkk7u6f"} - data: {"id":"gen_01KGF384F3XAWSR4PC2A0QPAGW","object":"chat.completion.chunk","created":1770033255,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"content":" 2 and 3 is 5, and the product of 2 and"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_r6gptvhx1g"} + data: {"id":"gen_01KKHTPQBG6M2Y2TBQ7MA49PSM","object":"chat.completion.chunk","created":1773346185,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"content":" sum is 5 and the product is 6."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_l0lvkk7u6f"} - data: {"id":"gen_01KGF384F3XAWSR4PC2A0QPAGW","object":"chat.completion.chunk","created":1770033255,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"content":" 3 is 6."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_r6gptvhx1g"} - - data: {"id":"gen_01KGF384F3XAWSR4PC2A0QPAGW","object":"chat.completion.chunk","created":1770033255,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"promptTokenCount":193,"candidatesTokenCount":23,"totalTokenCount":216}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"google","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":false,"error":"Please ensure that the number of function response parts is equal to the number of function call parts of the function call turn.","startTime":3168815.590185,"endTime":3168973.53366,"statusCode":400},{"provider":"google","internalModelId":"google:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":3169095.201105,"endTime":3169473.585021,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":true,"providerAttemptCount":2,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":false,"error":"Please ensure that the number of function response parts is equal to the number of function call parts of the function call turn.","startTime":3168815.590185,"endTime":3168973.53366,"statusCode":400},{"provider":"google","internalModelId":"google:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":3169095.201105,"endTime":3169473.585021,"statusCode":200}]}],"totalProviderAttemptCount":2},"cost":"0.0001154","marketCost":"0.0001154","generationId":"gen_01KGF384F3XAWSR4PC2A0QPAGW","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":193,"completion_tokens":23,"total_tokens":216,"cost":0.0001154,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0001154},"system_fingerprint":"fp_r6gptvhx1g","generationId":"gen_01KGF384F3XAWSR4PC2A0QPAGW"} + data: {"id":"gen_01KKHTPQBG6M2Y2TBQ7MA49PSM","object":"chat.completion.chunk","created":1773346185,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"promptTokenCount":193,"candidatesTokenCount":12,"totalTokenCount":205}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"google","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":false,"error":"Please ensure that the number of function response parts is equal to the number of function call parts of the function call turn.","startTime":422277.267123,"endTime":422418.382952,"statusCode":400},{"provider":"google","internalModelId":"google:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":422428.537861,"endTime":422958.8099,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":true,"providerAttemptCount":2,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":false,"error":"Please ensure that the number of function response parts is equal to the number of function call parts of the function call turn.","startTime":422277.267123,"endTime":422418.382952,"statusCode":400},{"provider":"google","internalModelId":"google:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":422428.537861,"endTime":422958.8099,"statusCode":200}]}],"totalProviderAttemptCount":2},"cost":"0.0000879","marketCost":"0.0000879","generationId":"gen_01KKHTPQBG6M2Y2TBQ7MA49PSM","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":193,"completion_tokens":12,"total_tokens":205,"cost":0.0000879,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0000879},"system_fingerprint":"fp_l0lvkk7u6f","generationId":"gen_01KKHTPQBG6M2Y2TBQ7MA49PSM"} data: [DONE] @@ -84,4 +82,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 752.724625ms + duration: 818.342167ms diff --git a/providertests/testdata/TestVercelCommon/gemini-2.5-flash/simple.yaml b/providertests/testdata/TestVercelCommon/gemini-2.5-flash/simple.yaml index 9676008c622dcbc9d8d14dbc35a811f1b24f41e4..eb14e78d8fdad103b370e1bdd45e6df52a0cf882 100644 --- a/providertests/testdata/TestVercelCommon/gemini-2.5-flash/simple.yaml +++ b/providertests/testdata/TestVercelCommon/gemini-2.5-flash/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF37X8BY3AB4X8CN72NQHAV","object":"chat.completion","created":1770033248,"model":"google/gemini-2.5-flash","choices":[{"index":0,"message":{"role":"assistant","content":"Olá!","provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":23,"promptTokenCount":9,"candidatesTokenCount":2,"totalTokenCount":34,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":427093.03273,"endTime":427617.793917,"statusCode":200,"providerResponseId":"X5CAaaH-Ipyy2fMP5ezVKA"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.0000652","marketCost":"0.0000652","generationId":"gen_01KGF37X8BY3AB4X8CN72NQHAV","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":9,"completion_tokens":2,"total_tokens":11,"cost":0.0000652,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":23,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0000652},"system_fingerprint":"fp_oj9j2v6wic","generationId":"gen_01KGF37X8BY3AB4X8CN72NQHAV"}' + body: '{"id":"gen_01KKHTPEN07NVXQD26355NJ9Y4","object":"chat.completion","created":1773346176,"model":"google/gemini-2.5-flash","choices":[{"index":0,"message":{"role":"assistant","content":"Olá!","provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":25,"promptTokenCount":9,"candidatesTokenCount":2,"totalTokenCount":36,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":1193255.25128,"endTime":1193979.606092,"statusCode":200,"providerResponseId":"fx2zaZGuLMT7idMPlpP3oAE"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":1193255.25128,"endTime":1193979.606092,"statusCode":200,"providerResponseId":"fx2zaZGuLMT7idMPlpP3oAE"}]}],"totalProviderAttemptCount":1},"cost":"0.0000702","marketCost":"0.0000702","generationId":"gen_01KKHTPEN07NVXQD26355NJ9Y4","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":9,"completion_tokens":2,"total_tokens":11,"cost":0.0000702,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":25,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0000702},"system_fingerprint":"fp_d9uhlvas3i","generationId":"gen_01KKHTPEN07NVXQD26355NJ9Y4"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 605.216666ms + duration: 945.633583ms diff --git a/providertests/testdata/TestVercelCommon/gemini-2.5-flash/simple_streaming.yaml b/providertests/testdata/TestVercelCommon/gemini-2.5-flash/simple_streaming.yaml index 70274c47b015261547a2fd3c0988df0f448876b4..e11da3d5284cf46fa453d7f09666c9d209c4889d 100644 --- a/providertests/testdata/TestVercelCommon/gemini-2.5-flash/simple_streaming.yaml +++ b/providertests/testdata/TestVercelCommon/gemini-2.5-flash/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,11 +24,11 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF37XVPQFTEF88B3MN5VGHK","object":"chat.completion.chunk","created":1770033248,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1hjld5wcik"} + data: {"id":"gen_01KKHTPFJEAHQKWB714Q1ED8A6","object":"chat.completion.chunk","created":1773346177,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_fjmwvh34mj"} - data: {"id":"gen_01KGF37XVPQFTEF88B3MN5VGHK","object":"chat.completion.chunk","created":1770033248,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"content":"Olá!"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1hjld5wcik"} + data: {"id":"gen_01KKHTPFJEAHQKWB714Q1ED8A6","object":"chat.completion.chunk","created":1773346177,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"content":"Olá!"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_fjmwvh34mj"} - data: {"id":"gen_01KGF37XVPQFTEF88B3MN5VGHK","object":"chat.completion.chunk","created":1770033248,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":25,"promptTokenCount":9,"candidatesTokenCount":2,"totalTokenCount":36,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":7617027.32849,"endTime":7617674.256609,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":7617027.32849,"endTime":7617674.256609,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.0000702","marketCost":"0.0000702","generationId":"gen_01KGF37XVPQFTEF88B3MN5VGHK","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":9,"completion_tokens":2,"total_tokens":11,"cost":0.0000702,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":25,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0000702},"system_fingerprint":"fp_1hjld5wcik","generationId":"gen_01KGF37XVPQFTEF88B3MN5VGHK"} + data: {"id":"gen_01KKHTPFJEAHQKWB714Q1ED8A6","object":"chat.completion.chunk","created":1773346177,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":25,"promptTokenCount":9,"candidatesTokenCount":2,"totalTokenCount":36,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":414321.099068,"endTime":415023.895546,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":414321.099068,"endTime":415023.895546,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.0000702","marketCost":"0.0000702","generationId":"gen_01KKHTPFJEAHQKWB714Q1ED8A6","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":9,"completion_tokens":2,"total_tokens":11,"cost":0.0000702,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":25,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0000702},"system_fingerprint":"fp_fjmwvh34mj","generationId":"gen_01KKHTPFJEAHQKWB714Q1ED8A6"} data: [DONE] @@ -37,4 +37,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 875.25225ms + duration: 880.919208ms diff --git a/providertests/testdata/TestVercelCommon/gemini-2.5-flash/tool.yaml b/providertests/testdata/TestVercelCommon/gemini-2.5-flash/tool.yaml index 0c738571b4444c507aed3d049733fe833eaadb73..8c5d093af5b89aa5ee0e052caf515b5fd742c3b6 100644 --- a/providertests/testdata/TestVercelCommon/gemini-2.5-flash/tool.yaml +++ b/providertests/testdata/TestVercelCommon/gemini-2.5-flash/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,13 +24,13 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF37YQYT0615AXEWGQMX7A4","object":"chat.completion","created":1770033249,"model":"google/gemini-2.5-flash","choices":[{"index":0,"message":{"role":"assistant","content":null,"tool_calls":[{"id":"2UEinTAmGM13bjwN","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"}}],"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":57,"promptTokenCount":28,"candidatesTokenCount":5,"totalTokenCount":90,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":1355937.787241,"endTime":1356631.240553,"statusCode":200,"providerResponseId":"YZCAafTaCP-xhcIP6Zz3mAQ"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.0001634","marketCost":"0.0001634","generationId":"gen_01KGF37YQYT0615AXEWGQMX7A4","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":28,"completion_tokens":5,"total_tokens":33,"cost":0.0001634,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":57,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0001634},"system_fingerprint":"fp_q7zc9ylbsc","generationId":"gen_01KGF37YQYT0615AXEWGQMX7A4"}' + body: '{"id":"gen_01KKHTPGE3C939744B2HHH9WJ3","object":"chat.completion","created":1773346178,"model":"google/gemini-2.5-flash","choices":[{"index":0,"message":{"role":"assistant","content":null,"tool_calls":[{"id":"BiA3YmPd7O70iKma","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"}}],"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":49,"promptTokenCount":28,"candidatesTokenCount":5,"totalTokenCount":82,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":249105.296459,"endTime":250044.596244,"statusCode":200,"providerResponseId":"gR2zaZ2gIs6pyOgPnbSH0Ag"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":249105.296459,"endTime":250044.596244,"statusCode":200,"providerResponseId":"gR2zaZ2gIs6pyOgPnbSH0Ag"}]}],"totalProviderAttemptCount":1},"cost":"0.0001434","marketCost":"0.0001434","generationId":"gen_01KKHTPGE3C939744B2HHH9WJ3","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":28,"completion_tokens":5,"total_tokens":33,"cost":0.0001434,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":49,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0001434},"system_fingerprint":"fp_vqewuk13wb","generationId":"gen_01KKHTPGE3C939744B2HHH9WJ3"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 851.617709ms + duration: 1.107758875s - id: 1 request: proto: HTTP/1.1 @@ -38,14 +38,14 @@ interactions: proto_minor: 1 content_length: 690 host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"2UEinTAmGM13bjwN","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"2UEinTAmGM13bjwN","role":"tool"}],"model":"google/gemini-2.5-flash","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"BiA3YmPd7O70iKma","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"BiA3YmPd7O70iKma","role":"tool"}],"model":"google/gemini-2.5-flash","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF37ZH945B4T7Q2YDF1YW7K","object":"chat.completion","created":1770033250,"model":"google/gemini-2.5-flash","choices":[{"index":0,"message":{"role":"assistant","content":"The weather in Florence, Italy is 40 C.","provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"promptTokenCount":40,"candidatesTokenCount":12,"totalTokenCount":52,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":347802.523594,"endTime":348287.615775,"statusCode":200,"providerResponseId":"YZCAaYSqO9X8tfAPg7j5QA"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.000042","marketCost":"0.000042","generationId":"gen_01KGF37ZH945B4T7Q2YDF1YW7K","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":40,"completion_tokens":12,"total_tokens":52,"cost":0.000042,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000042},"system_fingerprint":"fp_oqc02i8x0x","generationId":"gen_01KGF37ZH945B4T7Q2YDF1YW7K"}' + body: '{"id":"gen_01KKHTPHGX1JP1JTS8GNV2P16M","object":"chat.completion","created":1773346179,"model":"google/gemini-2.5-flash","choices":[{"index":0,"message":{"role":"assistant","content":"It is 40 C in Florence, Italy.","provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"promptTokenCount":40,"candidatesTokenCount":11,"totalTokenCount":51,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":1308437.632772,"endTime":1308948.773968,"statusCode":200,"providerResponseId":"gh2zacTeJ6WK-7UPp-eTkQo"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":1308437.632772,"endTime":1308948.773968,"statusCode":200,"providerResponseId":"gh2zacTeJ6WK-7UPp-eTkQo"}]}],"totalProviderAttemptCount":1},"cost":"0.0000395","marketCost":"0.0000395","generationId":"gen_01KKHTPHGX1JP1JTS8GNV2P16M","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":40,"completion_tokens":11,"total_tokens":51,"cost":0.0000395,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0000395},"system_fingerprint":"fp_c8hkc8dxn6","generationId":"gen_01KKHTPHGX1JP1JTS8GNV2P16M"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 587.012542ms + duration: 676.799875ms diff --git a/providertests/testdata/TestVercelCommon/gemini-2.5-flash/tool_streaming.yaml b/providertests/testdata/TestVercelCommon/gemini-2.5-flash/tool_streaming.yaml index d5d4aca623dde1d7666af829ecfc2e167b41bfa2..743e5a8c29f9e2b60207d74f54572a17c38318f3 100644 --- a/providertests/testdata/TestVercelCommon/gemini-2.5-flash/tool_streaming.yaml +++ b/providertests/testdata/TestVercelCommon/gemini-2.5-flash/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,13 +24,13 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF3803YBNDA2M8B7319DJ82","object":"chat.completion.chunk","created":1770033251,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_7in70gabwf"} + data: {"id":"gen_01KKHTPJ65VPJFYAJG201KVA4V","object":"chat.completion.chunk","created":1773346180,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_6vhmcd0smv"} - data: {"id":"gen_01KGF3803YBNDA2M8B7319DJ82","object":"chat.completion.chunk","created":1770033251,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"g8BRNPzm2XAHjElR","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_7in70gabwf"} + data: {"id":"gen_01KKHTPJ65VPJFYAJG201KVA4V","object":"chat.completion.chunk","created":1773346180,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"7Vm94lDOAIuRqQKE","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_6vhmcd0smv"} - data: {"id":"gen_01KGF3803YBNDA2M8B7319DJ82","object":"chat.completion.chunk","created":1770033251,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"location\":\"Florence,Italy\"}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_7in70gabwf"} + data: {"id":"gen_01KKHTPJ65VPJFYAJG201KVA4V","object":"chat.completion.chunk","created":1773346180,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"location\":\"Florence, Italy\"}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_6vhmcd0smv"} - data: {"id":"gen_01KGF3803YBNDA2M8B7319DJ82","object":"chat.completion.chunk","created":1770033251,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":51,"promptTokenCount":28,"candidatesTokenCount":5,"totalTokenCount":84,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":430027.607924,"endTime":430701.108841,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":430027.607924,"endTime":430701.108841,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.0001484","marketCost":"0.0001484","generationId":"gen_01KGF3803YBNDA2M8B7319DJ82","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":28,"completion_tokens":5,"total_tokens":33,"cost":0.0001484,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":51,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0001484},"system_fingerprint":"fp_7in70gabwf","generationId":"gen_01KGF3803YBNDA2M8B7319DJ82"} + data: {"id":"gen_01KKHTPJ65VPJFYAJG201KVA4V","object":"chat.completion.chunk","created":1773346180,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":48,"promptTokenCount":28,"candidatesTokenCount":5,"totalTokenCount":81,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":251101.47222,"endTime":251895.4338,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":251101.47222,"endTime":251895.4338,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.0001409","marketCost":"0.0001409","generationId":"gen_01KKHTPJ65VPJFYAJG201KVA4V","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":28,"completion_tokens":5,"total_tokens":33,"cost":0.0001409,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":48,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0001409},"system_fingerprint":"fp_6vhmcd0smv","generationId":"gen_01KKHTPJ65VPJFYAJG201KVA4V"} data: [DONE] @@ -39,22 +39,22 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 758.2815ms + duration: 956.155125ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 744 + content_length: 745 host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"g8BRNPzm2XAHjElR","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"g8BRNPzm2XAHjElR","role":"tool"}],"model":"google/gemini-2.5-flash","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"7Vm94lDOAIuRqQKE","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"7Vm94lDOAIuRqQKE","role":"tool"}],"model":"google/gemini-2.5-flash","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -63,13 +63,13 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF380V9QM93HK4DBFD3050C","object":"chat.completion.chunk","created":1770033251,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_edgl953q80"} + data: {"id":"gen_01KKHTPK5ZS2AF12NSDJ4705NM","object":"chat.completion.chunk","created":1773346180,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_r5o8c3kn1s"} - data: {"id":"gen_01KGF380V9QM93HK4DBFD3050C","object":"chat.completion.chunk","created":1770033251,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_edgl953q80"} + data: {"id":"gen_01KKHTPK5ZS2AF12NSDJ4705NM","object":"chat.completion.chunk","created":1773346180,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"content":"The weather in Florence, Italy"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_r5o8c3kn1s"} - data: {"id":"gen_01KGF380V9QM93HK4DBFD3050C","object":"chat.completion.chunk","created":1770033251,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"content":" weather in Florence, Italy is 40 C."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_edgl953q80"} + data: {"id":"gen_01KKHTPK5ZS2AF12NSDJ4705NM","object":"chat.completion.chunk","created":1773346180,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"content":" is 40 C."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_r5o8c3kn1s"} - data: {"id":"gen_01KGF380V9QM93HK4DBFD3050C","object":"chat.completion.chunk","created":1770033251,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"promptTokenCount":40,"candidatesTokenCount":12,"totalTokenCount":52,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":4541137.912067,"endTime":4541464.788969,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":4541137.912067,"endTime":4541464.788969,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.000042","marketCost":"0.000042","generationId":"gen_01KGF380V9QM93HK4DBFD3050C","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":40,"completion_tokens":12,"total_tokens":52,"cost":0.000042,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000042},"system_fingerprint":"fp_edgl953q80","generationId":"gen_01KGF380V9QM93HK4DBFD3050C"} + data: {"id":"gen_01KKHTPK5ZS2AF12NSDJ4705NM","object":"chat.completion.chunk","created":1773346180,"model":"google/gemini-2.5-flash","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"promptTokenCount":40,"candidatesTokenCount":12,"totalTokenCount":52,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-2.5-flash","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-2.5-flash","internalResolvedModelId":"vertex:gemini-2.5-flash","fallbacksAvailable":["google","deepinfra"],"internalReasoning":"Selected vertex as preferred provider for gemini-2.5-flash. 2 fallback(s) available: google, deepinfra","planningReasoning":"System credentials planned for: vertex, google, deepinfra. Total execution order: vertex(system) → google(system) → deepinfra(system)","canonicalSlug":"google/gemini-2.5-flash","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":252181.81801,"endTime":252687.116598,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-2.5-flash","canonicalSlug":"google/gemini-2.5-flash","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-2.5-flash","providerApiModelId":"gemini-2.5-flash","credentialType":"system","success":true,"startTime":252181.81801,"endTime":252687.116598,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.000042","marketCost":"0.000042","generationId":"gen_01KKHTPK5ZS2AF12NSDJ4705NM","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":40,"completion_tokens":12,"total_tokens":52,"cost":0.000042,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000042},"system_fingerprint":"fp_r5o8c3kn1s","generationId":"gen_01KKHTPK5ZS2AF12NSDJ4705NM"} data: [DONE] @@ -78,4 +78,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 425.562958ms + duration: 698.340791ms diff --git a/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/multi_tool.yaml b/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/multi_tool.yaml index 0e3d6bb09244641ea72a2f200b92a312c848a2fb..8b8cc3a3a2aba4ed27a2381ae0677567d555eb8c 100644 --- a/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/multi_tool.yaml +++ b/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/multi_tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,13 +24,13 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF39J2GMGMAPH0F955QXJN5","object":"chat.completion","created":1770033304,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"message":{"role":"assistant","content":null,"tool_calls":[{"id":"yr8vjBiBxciYk81p","type":"function","function":{"name":"add","arguments":"{\"b\":3,\"a\":2}"}},{"id":"AmDRMtn5jFH1FM4J","type":"function","function":{"name":"multiply","arguments":"{\"b\":3,\"a\":2}"}}],"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":119,"promptTokenCount":61,"candidatesTokenCount":18,"totalTokenCount":198,"trafficType":"PROVISIONED_THROUGHPUT"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":7050722.565232,"endTime":7053930.218976,"statusCode":200,"providerResponseId":"lZCAaejDKf6BmLAPjqmi-Qo"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.001766","marketCost":"0.001766","generationId":"gen_01KGF39J2GMGMAPH0F955QXJN5","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":61,"completion_tokens":18,"total_tokens":79,"cost":0.001766,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":119,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.001766},"system_fingerprint":"fp_sbwyjrbwm9","generationId":"gen_01KGF39J2GMGMAPH0F955QXJN5"}' + body: '{"id":"gen_01KKHTRQRYKH43CS2M3V70YQSP","object":"chat.completion","created":1773346254,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"message":{"role":"assistant","content":null,"tool_calls":[{"id":"UEWl8wf7vCtSQIdF","type":"function","function":{"name":"add","arguments":"{\"b\":3,\"a\":2}"}},{"id":"lnzdKpzE1MRoXxao","type":"function","function":{"name":"multiply","arguments":"{\"b\":3,\"a\":2}"}}],"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":137,"promptTokenCount":61,"candidatesTokenCount":18,"totalTokenCount":216,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1302633.769555,"endTime":1306285.12625,"statusCode":200,"providerResponseId":"yh2zaeuHJJKA4OUPxM_iqQI"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1302633.769555,"endTime":1306285.12625,"statusCode":200,"providerResponseId":"yh2zaeuHJJKA4OUPxM_iqQI"}]}],"totalProviderAttemptCount":1},"cost":"0.001982","marketCost":"0.001982","generationId":"gen_01KKHTRQRYKH43CS2M3V70YQSP","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":61,"completion_tokens":18,"total_tokens":79,"cost":0.001982,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":137,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.001982},"system_fingerprint":"fp_1qu3iai0cv","generationId":"gen_01KKHTRQRYKH43CS2M3V70YQSP"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 3.301019917s + duration: 3.855656s - id: 1 request: proto: HTTP/1.1 @@ -38,14 +38,14 @@ interactions: proto_minor: 1 content_length: 1205 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"},{"tool_calls":[{"id":"yr8vjBiBxciYk81p","function":{"arguments":"{\"b\":3,\"a\":2}","name":"add"},"type":"function"},{"id":"AmDRMtn5jFH1FM4J","function":{"arguments":"{\"b\":3,\"a\":2}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"yr8vjBiBxciYk81p","role":"tool"},{"content":"6","tool_call_id":"AmDRMtn5jFH1FM4J","role":"tool"}],"model":"google/gemini-3-pro-preview","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"}]}' + 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":"UEWl8wf7vCtSQIdF","function":{"arguments":"{\"b\":3,\"a\":2}","name":"add"},"type":"function"},{"id":"lnzdKpzE1MRoXxao","function":{"arguments":"{\"b\":3,\"a\":2}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"UEWl8wf7vCtSQIdF","role":"tool"},{"content":"6","tool_call_id":"lnzdKpzE1MRoXxao","role":"tool"}],"model":"google/gemini-3-pro-preview","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.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF39N3ZQQNAHVCNDKGKFDXH","object":"chat.completion","created":1770033309,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"message":{"role":"assistant","content":"The sum of 2 and 3 is 5, and the product of 2 and 3 is 6.","reasoning_details":[{"type":"reasoning.encrypted","data":"EowECokEAXLI2nxcmOHKFmCie8wZQj4/lvp5r14Pp4tqdLOscZ0XBOKdSP60HUPURffivhxpaKDjwvyYIf43reXC7PyAzrNjw/g82cNAjfDK7wpy9ytBDKW8Jmn0KghvDqliK1EHUa5r5phWGwyclW3coT/6X1mtcQd89uAjf3qg3HyAvSNRrpjY+5E8i1CWh9Klnz+4AJ6cAHyahhkqS6Kc/0fZWFwggkOYPetH/bLrdipfcjBOIyRsWg8YeR9iRiv2cBbHruJeops0JKxCVhr750bJiYYehM3eOgvfD6rXA9TJnv6+sjoGXK/kWkrFW84i7lJvbDZaonJwVbDe3B1qpm+cmiGRHDHBQDam9dfLnRoeuk8lvEHtJctSIGRKSG+qavsxhHsr+IyWolld74TkIc7/dFHqJvCUkp8UtIg7KFMIHsQmi0FGn2IpUK/pW47Q8wT9eUdbxr8FFkmcsTMziI1QexEK1bosMZYDYc6AnQ3HXQzGuCq/Alx8jaku4xeyl1xplmMCKPui0AvK05/uKD08xSmWouSi3iMsIxj/1QRvrejj22oT7DiHZuL/DKp8tnCR2f3M/U8OmxMr665dpyWMfrBLAFL0KL7AQGoRqpxoLEbTmISk5wDaxYdXqnLhgPw9qF4TCRYnUQNfSbzIfKmCk/ekKwX0NBROCJu5yhVEBsMEevDTC/sg8q0=","format":"google-gemini-v1","index":0}],"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":119,"promptTokenCount":223,"candidatesTokenCount":25,"totalTokenCount":367}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"google","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":false,"error":"Please ensure that the number of function response parts is equal to the number of function call parts of the function call turn.","startTime":7674067.523962,"endTime":7674739.16189,"statusCode":400},{"provider":"google","internalModelId":"google:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":7674863.56271,"endTime":7678582.662173,"statusCode":200,"providerResponseId":"nZCAaaflFeKF7M8Pis3b4AE"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.002174","marketCost":"0.002174","generationId":"gen_01KGF39N3ZQQNAHVCNDKGKFDXH","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":223,"completion_tokens":25,"total_tokens":248,"cost":0.002174,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":119,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002174},"system_fingerprint":"fp_q0jgoj8amw","generationId":"gen_01KGF39N3ZQQNAHVCNDKGKFDXH"}' + body: '{"id":"gen_01KKHTRVHAN3K5TGZF8S3JD965","object":"chat.completion","created":1773346258,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"message":{"role":"assistant","content":"The addition of 2 and 3 is 5, and the multiplication of 2 and 3 is 6.","reasoning_details":[{"type":"reasoning.encrypted","data":"EtsJCtgJAb4+9vuyV/3o1mGMws57R53bb1BY3r592wvKawVw4531Zc39lmmapELYnk4WmzMDcHh7EayWrZKnF63PZanblkkfZ5xp/M3t+8P8Q4wzkq+IPuiHGOoraQSNxyYD3n/oumaOmejR75KTGUrI5sVLDL0eyN5NcvFNOk2cOUPycOfGK/eKbHl8g8qgrk7S0RqgZOxsVtmpU8MYmFo736W1RGR3oXxjBekPTIQu6hZtgoNxR4UEugoIpI4+ux4GkLGvFLAHc7/lz5dIZHZlNrRFUVfTPUv8+q6yTSFamxjdX1liGY5s+yANEf7cFR2puc33ERjFPB22YcpFcstW53lu/BbeOoIy0be8TzDa2OFZWof8pvZnrZZe+LzXE6trdBDjluYEuPxdR0+kazkhYzzQpAzhEaai1GjiM/iz52K8FVoeLfrGA+EYXb2AkXvWD58vimoIeBF4FmLJmvaFe8naFk5au9V0V6m8MeOHnzYhT7RqGDgO3IdEtwIKnTRp+scicJ/m9JWuBimLRD+nI6HoWKLKoFWSeCaf3o3XD0M5MJ7i2FcMGG8m1VQi09623BJk9JFZgiyhfzjDHvnPQw7VoVEo6HyqSs8wUniQ180isX+zAkIW1wyPTlbmJpYtRIQTI0hnd/BUGJHv5AGLrVV4XwR1WSf/kQajUe9qRPaj9kHbZ2MbC0KVsPAHr0NULZpr4TpOWkB719s8B7FHX7bw/4+MDX/NZbw5LQYjDwZESP7hdZj0jr4+eHkZ0G+gvKEGY27b0XbTLDPG/haP4o+Hn4hXwK+FYQpJN50P6HUZsf0jGnUPmAxcX0tgwMdt+HbZhyC5mddk57DUeSJDTfsYXOXNCCceVM5LJ1dsK9w0/rxCzhLdQxttEwEdK5RlB7/3kGaPWQz00Cf6RXQYo0C01DOt0PkZyukCzoPU+KUmFdc66jwEnt1Wsz4OFQ+nbpQgzRfEheJlK/s52jfM2s5Tou6FMQ/h4sS7bd+67PU5cxDXHuw8BQxRBYeyFRNS2v+BO0v6+z/7+qGEeHn4/bmKPJxinUQmxlVEvzJLtIVkX5WRhK32iZX3Pk5yWUZ2xrqehd1IWF+N3skH/Ru/SDfTnt6g9ttkWZfQizyNEyvZAnhWcSc4r4WTqJt9hz5M6qJqBuMIXExPO+KVXGOrfZ1Zk57wBUBUkbYIp72LPZyViFO/DEvefSBLK0my/Jba7LZSedHYmdrY8uN3j1wUUhgWBwQja/feUhzMKzF9OlHAyUOJ/RAv/+Ix281+yaZZAgyj496VduIXLHwvy0rh/pxcpUwwY6oyfBz08+BC5ZKRzrgLb20KymkqmEKOm+5ZEIxNXuNN4DJAfFg+n7OkxUjPDIkubmMR/GlItrUlRjC05u21yyR4A9PMwm4g250srB+cCmxvhknIPdUT0CCoSWUxSgX3JaBmiNv2jSpqo7LKF3vnqMm5Vm5VzWpiidh4rsQqJv/RZJG0Qjafemr16Fy4OtQpSfZKcVmaByliCneW8e+xPEkKcJG9SUVpDms4nPAJs/GrpfV5DOOynJEDI8zeGUJNnwq0f1MSvP0K+uyRsLeREYkhqHhrapx57TbbuMv6mb58I2Qdie1CB8OjyQrpr+QoV1jlpbVcqDcTwp4XyD5BZvN6WlPldw==","format":"google-gemini-v1","index":0}],"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":266,"promptTokenCount":223,"candidatesTokenCount":25,"totalTokenCount":514}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"google","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":false,"error":"Please ensure that the number of function response parts is equal to the number of function call parts of the function call turn.","startTime":1306349.557116,"endTime":1306479.321452,"statusCode":400},{"provider":"google","internalModelId":"google:gemini-3.1-pro-preview-customtools","providerApiModelId":"gemini-3.1-pro-preview-customtools","credentialType":"system","success":true,"startTime":1306487.215895,"endTime":1310248.782797,"statusCode":200,"providerResponseId":"0h2zafDWD6OD-8YP-5vPwA0"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":2,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":false,"error":"Please ensure that the number of function response parts is equal to the number of function call parts of the function call turn.","startTime":1306349.557116,"endTime":1306479.321452,"statusCode":400},{"provider":"google","internalModelId":"google:gemini-3.1-pro-preview-customtools","providerApiModelId":"gemini-3.1-pro-preview-customtools","credentialType":"system","success":true,"startTime":1306487.215895,"endTime":1310248.782797,"statusCode":200,"providerResponseId":"0h2zafDWD6OD-8YP-5vPwA0"}]}],"totalProviderAttemptCount":2},"cost":"0.003938","marketCost":"0.003938","generationId":"gen_01KKHTRVHAN3K5TGZF8S3JD965","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":223,"completion_tokens":25,"total_tokens":248,"cost":0.003938,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":266,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.003938},"system_fingerprint":"fp_muqainsi9x","generationId":"gen_01KKHTRVHAN3K5TGZF8S3JD965"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 4.618416166s + duration: 4.082352584s diff --git a/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/multi_tool_streaming.yaml b/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/multi_tool_streaming.yaml index 20871ca79f06f0cdeba0284c17a943d420bc7c71..ccedb65de72515cfb5cdc8ec94303acd1948d23c 100644 --- a/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/multi_tool_streaming.yaml +++ b/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/multi_tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,17 +24,17 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF39SRSQ5CWVF17GR4P29CK","object":"chat.completion.chunk","created":1770033312,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_4r8izhsq38"} + data: {"id":"gen_01KKHTRZH9EN26XH53QBYT0WY2","object":"chat.completion.chunk","created":1773346262,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_l6244tmz1u"} - data: {"id":"gen_01KGF39SRSQ5CWVF17GR4P29CK","object":"chat.completion.chunk","created":1770033312,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"Oxu2MENhE0ZsrlGm","type":"function","function":{"name":"add","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_4r8izhsq38"} + data: {"id":"gen_01KKHTRZH9EN26XH53QBYT0WY2","object":"chat.completion.chunk","created":1773346262,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"WQuZA7oD8t6sGOrb","type":"function","function":{"name":"add","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_l6244tmz1u"} - data: {"id":"gen_01KGF39SRSQ5CWVF17GR4P29CK","object":"chat.completion.chunk","created":1770033312,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"b\":3,\"a\":2}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_4r8izhsq38"} + data: {"id":"gen_01KKHTRZH9EN26XH53QBYT0WY2","object":"chat.completion.chunk","created":1773346262,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"a\":2,\"b\":3}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_l6244tmz1u"} - data: {"id":"gen_01KGF39SRSQ5CWVF17GR4P29CK","object":"chat.completion.chunk","created":1770033312,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"jHpVWOzg44py3a4h","type":"function","function":{"name":"multiply","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_4r8izhsq38"} + data: {"id":"gen_01KKHTRZH9EN26XH53QBYT0WY2","object":"chat.completion.chunk","created":1773346262,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"pJnoRXDGFYDYCXIg","type":"function","function":{"name":"multiply","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_l6244tmz1u"} - data: {"id":"gen_01KGF39SRSQ5CWVF17GR4P29CK","object":"chat.completion.chunk","created":1770033312,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"b\":3,\"a\":2}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_4r8izhsq38"} + data: {"id":"gen_01KKHTRZH9EN26XH53QBYT0WY2","object":"chat.completion.chunk","created":1773346262,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"a\":2,\"b\":3}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_l6244tmz1u"} - data: {"id":"gen_01KGF39SRSQ5CWVF17GR4P29CK","object":"chat.completion.chunk","created":1770033312,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":76,"promptTokenCount":57,"candidatesTokenCount":18,"totalTokenCount":151,"trafficType":"PROVISIONED_THROUGHPUT"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":7678877.96491,"endTime":7682011.782537,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":7678877.96491,"endTime":7682011.782537,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.001242","marketCost":"0.001242","generationId":"gen_01KGF39SRSQ5CWVF17GR4P29CK","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":57,"completion_tokens":18,"total_tokens":75,"cost":0.001242,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":76,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.001242},"system_fingerprint":"fp_4r8izhsq38","generationId":"gen_01KGF39SRSQ5CWVF17GR4P29CK"} + data: {"id":"gen_01KKHTRZH9EN26XH53QBYT0WY2","object":"chat.completion.chunk","created":1773346262,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":95,"promptTokenCount":57,"candidatesTokenCount":18,"totalTokenCount":170,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":330271.73393,"endTime":334278.299674,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":330271.73393,"endTime":334278.299674,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.00147","marketCost":"0.00147","generationId":"gen_01KKHTRZH9EN26XH53QBYT0WY2","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":57,"completion_tokens":18,"total_tokens":75,"cost":0.00147,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":95,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00147},"system_fingerprint":"fp_l6244tmz1u","generationId":"gen_01KKHTRZH9EN26XH53QBYT0WY2"} data: [DONE] @@ -43,7 +43,7 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 3.240620375s + duration: 4.138351583s - id: 1 request: proto: HTTP/1.1 @@ -51,14 +51,14 @@ interactions: proto_minor: 1 content_length: 1242 host: "" - body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"Oxu2MENhE0ZsrlGm","function":{"arguments":"{\"b\":3,\"a\":2}","name":"add"},"type":"function"},{"id":"jHpVWOzg44py3a4h","function":{"arguments":"{\"b\":3,\"a\":2}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"Oxu2MENhE0ZsrlGm","role":"tool"},{"content":"6","tool_call_id":"jHpVWOzg44py3a4h","role":"tool"}],"model":"google/gemini-3-pro-preview","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}' + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"WQuZA7oD8t6sGOrb","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"pJnoRXDGFYDYCXIg","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"WQuZA7oD8t6sGOrb","role":"tool"},{"content":"6","tool_call_id":"pJnoRXDGFYDYCXIg","role":"tool"}],"model":"google/gemini-3-pro-preview","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.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -67,13 +67,15 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF39X286MHE27SNFKH25NC4","object":"chat.completion.chunk","created":1770033316,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_77ne7mn4wm"} + data: {"id":"gen_01KKHTS3KVRZ8MKNT4CK4F5K5G","object":"chat.completion.chunk","created":1773346266,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_yqhgbgmvbv"} - data: {"id":"gen_01KGF39X286MHE27SNFKH25NC4","object":"chat.completion.chunk","created":1770033316,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"content":"The sum of 2 and 3 is"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_77ne7mn4wm"} + data: {"id":"gen_01KKHTS3KVRZ8MKNT4CK4F5K5G","object":"chat.completion.chunk","created":1773346266,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"content":"The sum of"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_yqhgbgmvbv"} - data: {"id":"gen_01KGF39X286MHE27SNFKH25NC4","object":"chat.completion.chunk","created":1770033316,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"content":" 5, and the product of 2 and 3 is 6."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_77ne7mn4wm"} + data: {"id":"gen_01KKHTS3KVRZ8MKNT4CK4F5K5G","object":"chat.completion.chunk","created":1773346266,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"content":" 2 and 3 is 5, and their product is 6."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_yqhgbgmvbv"} - data: {"id":"gen_01KGF39X286MHE27SNFKH25NC4","object":"chat.completion.chunk","created":1770033316,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":107,"promptTokenCount":219,"candidatesTokenCount":25,"totalTokenCount":351}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"google","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":false,"error":"Please ensure that the number of function response parts is equal to the number of function call parts of the function call turn.","startTime":7682389.843352,"endTime":7682560.855095,"statusCode":400},{"provider":"google","internalModelId":"google:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":7682658.945631,"endTime":7685688.640771,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":2,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":false,"error":"Please ensure that the number of function response parts is equal to the number of function call parts of the function call turn.","startTime":7682389.843352,"endTime":7682560.855095,"statusCode":400},{"provider":"google","internalModelId":"google:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":7682658.945631,"endTime":7685688.640771,"statusCode":200}]}],"totalProviderAttemptCount":2},"cost":"0.002022","marketCost":"0.002022","generationId":"gen_01KGF39X286MHE27SNFKH25NC4","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":219,"completion_tokens":25,"total_tokens":244,"cost":0.002022,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":107,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002022},"system_fingerprint":"fp_77ne7mn4wm","generationId":"gen_01KGF39X286MHE27SNFKH25NC4"} + data: {"id":"gen_01KKHTS3KVRZ8MKNT4CK4F5K5G","object":"chat.completion.chunk","created":1773346266,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"content":""},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_yqhgbgmvbv"} + + data: {"id":"gen_01KKHTS3KVRZ8MKNT4CK4F5K5G","object":"chat.completion.chunk","created":1773346266,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":280,"promptTokenCount":219,"candidatesTokenCount":19,"totalTokenCount":518}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"google","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":false,"error":"Please ensure that the number of function response parts is equal to the number of function call parts of the function call turn.","startTime":1281609.464118,"endTime":1281724.382346,"statusCode":400},{"provider":"google","internalModelId":"google:gemini-3.1-pro-preview-customtools","providerApiModelId":"gemini-3.1-pro-preview-customtools","credentialType":"system","success":true,"startTime":1281731.455021,"endTime":1285552.212428,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":2,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":false,"error":"Please ensure that the number of function response parts is equal to the number of function call parts of the function call turn.","startTime":1281609.464118,"endTime":1281724.382346,"statusCode":400},{"provider":"google","internalModelId":"google:gemini-3.1-pro-preview-customtools","providerApiModelId":"gemini-3.1-pro-preview-customtools","credentialType":"system","success":true,"startTime":1281731.455021,"endTime":1285552.212428,"statusCode":200}]}],"totalProviderAttemptCount":2},"cost":"0.004026","marketCost":"0.004026","generationId":"gen_01KKHTS3KVRZ8MKNT4CK4F5K5G","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":219,"completion_tokens":19,"total_tokens":238,"cost":0.004026,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":280,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.004026},"system_fingerprint":"fp_yqhgbgmvbv","generationId":"gen_01KKHTS3KVRZ8MKNT4CK4F5K5G"} data: [DONE] @@ -82,4 +84,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 3.595823375s + duration: 3.991859459s diff --git a/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/simple.yaml b/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/simple.yaml index 821feca092f740dc6112183046c15f4708c3dde0..4d1cb893b403ebad6b602cd5918f80e6bfe37c52 100644 --- a/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/simple.yaml +++ b/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF38WR2DQ7XVWAQPMSQN05J","object":"chat.completion","created":1770033284,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"message":{"role":"assistant","content":"The most common way to say \"hi\" in Portuguese is:\n\n**Oi**\n\nYou can also say **Olá** (which is closer to \"hello\").","reasoning_details":[{"type":"reasoning.encrypted","data":"CtcGAY89a1/Vs+RSuBVpzJ1TJvRE/FtqFQVib99RvrHh+gb2EIdzDDZ/SY3ZVeQvQRZIOtEXdxlbjsymY95+YrKyX3B3sDmt7Y0hdpvDVQSQo7BymSD0/qtaPPexP57xCSzdyLZo08AKW5LCUmrBI15/XipH592d0XzRuidBu+EeAlTHMv3bwpwJaJ8DB4RoHhLpG8ueW73DsRnioUPYyQKnUK/8uov5qicTsNIiT67adu/wUBytqrDgRGmtiqw3MyQBaOG7xIEg8VUy8gTAVBKc3HFUh0m8d9+GbHshh2RgKyhA47cBxgef9hHH9fcM71mDXqgNJrZhv7vxgt4GOmVIF7e9iIx4lnYxi46WRlAchSO/rym7grFHNBAZ3D/uQoIp1VyoCyySIcLRVhLyNrU4c3IHWdOs6JuE+xbZiB3Flyccvg4oqiiaN4SOJXlP5+iAo9ASQmwHVy5e4j+/7Uo5G4D+pfxAdYwTT7cbGxLwHDZC13kcFfoi7YHawIghOLdcbQ4Y1wjkHbkP3vgp6zcTsQRw8PGZ8mPaHgMeZ3BGQn+q3jheqs3vcY0zazH9j2b1Yp4R2rcqyHqTpj1pV9BScW1g9dYuTRDjkzJbQxERZ2OrDTomVD6wPV76lldVGVeOOIRY/sNwl/VyXfyp4uJvqHTd6lz1A7JvUQDblT9GMvKmZKXlXW3uCqFroJpUGZVyFBxoNg4vo2vNZdpkCKikbX+irD58WxT8//oU9utaT5TmU7iVcGez3xeED8Pcfe8b4cDBnIBdNPDYJOjLXh5PFFJHJ7ad6Qzb+4FLdXnWl132D+uhuC3nQf7fPsrr8gf4yNzefuX8OjPgCGvobT56LusnH26ef8Vq7yYppYm8oz+JEVqXz2yydWWMwfJoCBESk96rNtdQ1fThaLrwGiz30NvOFZhBQ64f9MmTzt5/Ch97xfNBQNj4nCOzwOgsijXxOV0WG0W9zOjLVaL2StHURwyRNrCjDThoenOcOzRQiHIO+Y3ugEyp2k1dLIU93pILCZKmGmErUXVJxNOdPD/JNkfUDkioIvUDX9+To+cfmsx32Ynrm6auYsZzHI6ntFbu2Yw2S7iozfOVBER1ohInrt3djXS3gZn7NlaTlg71BQ3Lhr23As0Y","format":"google-gemini-v1","index":0}],"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":221,"promptTokenCount":9,"candidatesTokenCount":33,"totalTokenCount":263,"trafficType":"PROVISIONED_THROUGHPUT"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":7028889.551463,"endTime":7033870.641762,"statusCode":200,"providerResponseId":"f5CAaZznMrj2mLAP-aa82AU"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.003066","marketCost":"0.003066","generationId":"gen_01KGF38WR2DQ7XVWAQPMSQN05J","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":9,"completion_tokens":33,"total_tokens":42,"cost":0.003066,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":221,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.003066},"system_fingerprint":"fp_kece7x1dv2","generationId":"gen_01KGF38WR2DQ7XVWAQPMSQN05J"}' + body: '{"id":"gen_01KKHTR17CTFZM3PJ9G14ESD4R","object":"chat.completion","created":1773346231,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"message":{"role":"assistant","content":"You can say **\"Oi\"** (pronounced like *oy*) or **\"Olá\"**.\n\n* **Oi:** Informal (like \"Hi\").\n* **Olá:** Slightly more formal (like \"Hello\"), but used in all situations.","reasoning_details":[{"type":"reasoning.encrypted","data":"CoYHAY89a1+Etx9heb7hFcuTcjFe8wm4G1kN1muBq8A6MXpAYzpHCD/QciMpOxlgGXJIqtOCEWxJYF8KhBozeU5Mx+SJxV1OO8NfvhzqztGtv09C+wIYwmanHa7NdSYUSxEmoJ0dbaKZTwJ/WtV003pVv78pqpwgUgV6hBFzdHdZKsbf8/yRxK2ROaDKMmJlunZgZLaq5wMvLRmYjRuZJ1vzTk6njxNjhG/vLllCuJP/FzYWNpJ1wm6H4YkgNfTwDgnZwqotdQkXhT9KdH2NNuPZlZk8c7ivaeMZCG2rDcf0i68RUs+rh5pz2zlcoydYWKRHuc5Oe55jNMEzSlT8QMP6YKrtAoamR5pQAZD0A1132onOnhQQIemzfSpQkDNONyXF+eZHfEU4RX77ZvcCNm8o0ZMJ81EwzMMwcKJpfe1eQzsav8MHvfc1KmMRkg7UBp6raXze9SX0AzQunmDpQeJtLs08ZS1SEgdc/V5OzHMSvpu75UDoS6pxtWkMUlhlRLPypuNvlmzowFskvfb9z0TLePYi7Z6BnlUf7v8G+bP1Z9pa29SilvWR3afIOKaipYEcq6tBbr6vpGyiNRaHw2XLcIGu1MzwXyRj+YDXhis7oPAcdp46sC8yy2eznv2tcyplyuTuTG0gyy8XbAuqWw6FJDU22WJlZzBKtlFFj2gWBYkLmMtFC0/P85u9WsJg0m4S5drFl/B6e5QgyzM2HNyXwVKY3tUV3vBIqwRS4GrrpbS9F4sn3p+tPV10sOKFy6rUtYUbxcszernhvIv0c2Mr/gljEa/aNacDZihNq2n28Kvgwbb30F22a7hEZWue2Ee5TmG0YohwUCihEqoWM2x+E6QEA1aBxcjkQdeev+uK5OjCl1wCHVMNOkGE4k8c9ns5d9Md6ywkH9od7aqCqw3LSMvN7nmcXg+fDK0dhZDxK0ec3+kkz6GQzaRWQt2t4muXKTXdCF5GaN7MyIcjvCdnCxHl/oKQbLhemcuTp+Kn8zZqPK9P22yyeU/IyFlrZ+dpRvBeRhDCJJnTEq18E98PpoKHdzowCqxdXS5P3kt1z7wekdk8Hkck0eRuyG6egOLrZ7Gnak8YnUUA6eiW4mXYVvcAKBbeDgRK2ouU08fV6qMEv7zqd5Zkfb5FG0j8EIJQDRbI6LwhpxiSVFWy1FUBnRrp0zffbVs/d/8JFhNBmpyF+wSRJZ8=","format":"google-gemini-v1","index":0}],"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":232,"promptTokenCount":9,"candidatesTokenCount":52,"totalTokenCount":293,"trafficType":"PROVISIONED_THROUGHPUT"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1243655.19766,"endTime":1247853.3699,"statusCode":200,"providerResponseId":"sx2zafK2IbepyOgP_oqLoAw"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1243655.19766,"endTime":1247853.3699,"statusCode":200,"providerResponseId":"sx2zafK2IbepyOgP_oqLoAw"}]}],"totalProviderAttemptCount":1},"cost":"0.003426","marketCost":"0.003426","generationId":"gen_01KKHTR17CTFZM3PJ9G14ESD4R","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":9,"completion_tokens":52,"total_tokens":61,"cost":0.003426,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":232,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.003426},"system_fingerprint":"fp_mryvem8617","generationId":"gen_01KKHTR17CTFZM3PJ9G14ESD4R"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 5.077063708s + duration: 4.392882708s diff --git a/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/simple_streaming.yaml b/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/simple_streaming.yaml index a775f281b5752a2448a09ec9aaa243c49a395e1a..c3e9d0a2817f001f9fc166d677eaf2d7fc34b956 100644 --- a/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/simple_streaming.yaml +++ b/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,13 +24,13 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF391Q1MADSMMMS7RN0MPJX","object":"chat.completion.chunk","created":1770033289,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_s005gr6r3v"} + data: {"id":"gen_01KKHTR5HH880XKT0TQZ3X52G9","object":"chat.completion.chunk","created":1773346236,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_385c9tcxha"} - data: {"id":"gen_01KGF391Q1MADSMMMS7RN0MPJX","object":"chat.completion.chunk","created":1770033289,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"content":"The most common way to say \"hi\" in Portuguese is **\"Oi\"**.\n\nYou can also say **\"Olá\"** (which is more like \"hello\")."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_s005gr6r3v"} + data: {"id":"gen_01KKHTR5HH880XKT0TQZ3X52G9","object":"chat.completion.chunk","created":1773346236,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"content":"In Portuguese, you can say:\n\n**Oi** (pronounced like the \"oy\" in \"boy\")\n\nYou can also say **Olá**, which means \"Hello.\""},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_385c9tcxha"} - data: {"id":"gen_01KGF391Q1MADSMMMS7RN0MPJX","object":"chat.completion.chunk","created":1770033289,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"reasoning_details":[{"type":"reasoning.encrypted","data":"CikBjz1rX1dPuLSzjatsf+kEp2Ri1nfHbqwWCwH07OuC1ZuewqSVGPoPzgpfAY89a18bv4mLFvt3bZAdiEoaZ+mjKsSaNKkndIQFXlBX/7hCWWnr1+bAbThHMnH0oIh/4vTXgk8DVKR87b2jqz0KuQG/kFftlB+5jAH9Jiq5/n2JIbFm06nvcF0dlyoKZgGPPWtfUh80MPPeLg0AMzKvrsGiCeKISEhrD6sg11jcaV4dgc/eBV9iwvHXn1LQU3GtPAsNZ4H1ZJM2+49hgdR6sN4vu81IqEdPsBItnGmr4TBm4Gm90LBPvCkcoSb3bh3q41kuaAqSAQGPPWtfYRILvpzZWl2d/sialYcYOf3UGDEFKBuz8HHUo40bCo+HQuJTal05BxWjIEzS4+wNKYrEsmo65fYSq/W1VBPGJVWbySFHDILvcVbMLJriGdWQbpAtXRAi/EoxQYjctaLyV1H77smAtachR9b7fKBfAlccpyd6QqLRi55uBIIczarwv97rFs+ylW/T/2m8CpQBAY89a198U9DZKPUsXuUCZvugyKq7U4JFHcDNk8+2W9F22IOz/lRPP4mRMj2DnaeMEZvj8NlAgN+uPpIS7pBPMWCiTsNUdTp0ZXfGZid8B/M6DFVv/DiS62f+C9LyW93Y+YLltHz0HsYgqFAhNW/TbxLFwshqad8KSAwEUJspHG5VheRkyflEReRxpNFm9MX7FTIsAQrhAQGPPWtf1NKdz86iQg+9J+FwwgJmOemZh5b7nk1s4iVyI4+SRdy5n6lGIwM/RS4brolzexTvzZU4yJHDd3kPm4eEOrATOu7g6wW4Vsdw6+LA6RkX/+TTPZbt7JmWYVbws5YUJGdKD3ddEG9faoV+kxGun8mJDEOdCKVZUDRQtU07nKEa/R9/8xkJaNBv8GBs4TuOHB56wH9rIp4I1qvaW9DU6TlcxKhw8BdtpYbD6Gg3e6asqePEUEIAXeQ5eQUfgC5lDSXRD99j4j42y3tNiKNXY+h2TZc3SIc40ohsM5XzTwqzAQGPPWtfzWc0ZYfA/k2tbqLr/45Vpgn/1yfSC1kXi+ABfbLhzZR4oNnbBlBHcmEbBF3DokgxaI7WEbopj4zbm0ZsYNJVLxD0cGd/kV+CBKbCf4j7L1fCJKlI8Mnorq5Bgp8i28XWjCydjvRAoTT49cJp0LKnKHw2Hr95yMnKPIwlOiAtQ0IFOjNXbfWQSCp42fSXDofsoufZor01El8xVfsaIQTkJtCbyE/AjOwz25v4xsp/CnkBjz1rXw6jbdgKOjllJsnqicBq0+EJ8nM5HbD25Dj1klrIvslkr8/5YyV6Fk43IYUfpLJW63qj9/4/cuRTDWBmbwOYMbf0JJCC0vGZvlz0UbLH3gEFfElZ7D8KAjc6iQ71etnHkYAHfUHlMdJ/B7qJLvQGpN8w4H/A","format":"google-gemini-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_s005gr6r3v"} + data: {"id":"gen_01KKHTR5HH880XKT0TQZ3X52G9","object":"chat.completion.chunk","created":1773346236,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"reasoning_details":[{"type":"reasoning.encrypted","data":"CikBjz1rX+4DEDV7RV3n6t2301U013mg9Qu7yBgTtRTcjrpgrZDIsVl6FQpfAY89a1+SdnfeTlwa7fwCp9P4Oo4WVy94S6G2CXJRTSSwxOUhvCY0sZLSMorKn4hztcPbVlgbCeqUsOGc9ESxAEGfnD7064/RHkCHL43h6arLy1mucMdv3jgmrCuEM+kKZgGPPWtfclX4isyhNi25CLWn+BaY7R18EdITVXNuOL0bDoMugP1RsX30NUa0nzDG4p1fTIjWu+yZyhglMrAw4g74k6zJBmbbX74Ep57/flSWuTwE96KHyHIRbKbAfEhSj5m92XgukwqWAQGPPWtfQXQhThQj93/6vYSj/+M4IrV5HNZS0+jadPewcZL9M1YQtoiHaHc8M/GEj0eQFhArHB0bDeZkNGXZVpUoxFOWNdWdcGTmuEwQmAm27++PqfSPoSVENJJER3ex+PecErt281a6lrlBcJZJaP7oT8Pzo2SxuMmjnruduwilka2BYNy1KWUBzYRR+lWHBjdlgQaKXgqDAQGPPWtf27iEHczhat61rxRO6jT10BXLrdLv4cSPc1+I/JFhWt+job56LndumYkpDhp8o/NoQ4HKnH6JLJZlNJpU5QUAnLwQ1Q5GKVBAdWLEk2lznZyfFHskH0i9ZNkstcVyKJzPIaPzpF4i/OyFHZcisHmjcisVfkkK97o+wA1y+ggRCuoBAY89a19Z22nOG/mFvMPeUUUlY7gYW8bDCg50UGL7ROPvhAj12Ti4MQmIkCwxXA0lLJHt/Lcyq9PAXYZypf9OSVy5UxI0MYAAwa20tb6P5Z7yT4gv21BuwYwopN0LEb4u7408H2H/Va8Pz7OELMmQWVulgO2CSekbV6UOSHyVtS6vE8nUBoyz/r0/Fn0goFuOmL4u2EeJ3qqrLxjZqjVZSwRHWDURk8pKBgfbV48EDGRdzebBX4Ea2a301ZweK26KCjmF1vIDO2viFEmk9NsxtrwMVJlgIiuiMt+7Lr5v6BrkqH0vgUYB4CBZCu8BAY89a1+koOVc0gBOq4+coNhjVme8kSsftaeV5S15HNsQ7GUw1xulMyO8+dguMyBxTiL1i0zuLTeXb8TK4DLZOIQmGr/16TPayfadjO8yq7fZESPaQwLL6NSviUDjwxtB9BJylNk/U57iylYqp0J9TQd+OFhTSIdbiK+lRDCNHFtJ9GrjbgZyU/KQ4bHPzgr0Z0HINtjtrgs6bJdla+oDVIBqKF5JfDpApMVZ30Kor7s2cKmcQGIlATWsG7nfKwhF64vkkY5pDeQ0l45H3D/NrCQcfuEWwbo9EmwzaFCpW3gkjZVpTb4FOVMuUIoClTwKkAIBjz1rX6tUmNJ12LwkaIxoUniT+0P06hzJHxyblGC3QsMkCRFoGodsA+jpoc0JRVd5errpvPQ2i41UfV+H72Iv8i4qCBX7AmVoic39nMCw8KIjJhb7J4+Xn90Lbcniks0qMlZ4n+59MkIIHu5BpRiIz1HBFZE6dEXgafJRXygbYWfHL29Dxg/as7wvL9vKsezYV2PtIvLJsGsgCMtyHdUimw6vbCwBZDk2EMoiwRSWlYsijaHB79rBlyjFDkjrTdyb2acQ+rZ5QAciVUdJMbyurorJs/hnqbgY5dieh4wzIaquRb4ZwbUbY2Vs6L0iT1VgPMdEn84axulxQ5ra1+oJUNNrfYwbkETmOAFojKhiAA==","format":"google-gemini-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_385c9tcxha"} - data: {"id":"gen_01KGF391Q1MADSMMMS7RN0MPJX","object":"chat.completion.chunk","created":1770033289,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":223,"promptTokenCount":9,"candidatesTokenCount":35,"totalTokenCount":267,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1391831.603433,"endTime":1396730.275173,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1391831.603433,"endTime":1396730.275173,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.003114","marketCost":"0.003114","generationId":"gen_01KGF391Q1MADSMMMS7RN0MPJX","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":9,"completion_tokens":35,"total_tokens":44,"cost":0.003114,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":223,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.003114},"system_fingerprint":"fp_s005gr6r3v","generationId":"gen_01KGF391Q1MADSMMMS7RN0MPJX"} + data: {"id":"gen_01KKHTR5HH880XKT0TQZ3X52G9","object":"chat.completion.chunk","created":1773346236,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":267,"promptTokenCount":9,"candidatesTokenCount":35,"totalTokenCount":311,"trafficType":"PROVISIONED_THROUGHPUT"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":303677.880492,"endTime":308426.540584,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":303677.880492,"endTime":308426.540584,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.003642","marketCost":"0.003642","generationId":"gen_01KKHTR5HH880XKT0TQZ3X52G9","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":9,"completion_tokens":35,"total_tokens":44,"cost":0.003642,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":267,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.003642},"system_fingerprint":"fp_385c9tcxha","generationId":"gen_01KKHTR5HH880XKT0TQZ3X52G9"} data: [DONE] @@ -39,4 +39,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 5.130387417s + duration: 4.949157542s diff --git a/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/tool.yaml b/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/tool.yaml index 0b8ff03b8a0033f4253e8c7af414b65472164781..a9406907d45c3b79bd5abb491cfd72b25e6b1823 100644 --- a/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/tool.yaml +++ b/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,13 +24,13 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF396RM9XH4DT3BKG6XYYC0","object":"chat.completion","created":1770033293,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"message":{"role":"assistant","content":null,"tool_calls":[{"id":"ixKHls2RfUCWLY8v","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"}}],"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":78,"promptTokenCount":28,"candidatesTokenCount":9,"totalTokenCount":115,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":7659506.082926,"endTime":7662838.172979,"statusCode":200,"providerResponseId":"ipCAaZa6CeXDtfAPz8i1yAs"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.0011","marketCost":"0.0011","generationId":"gen_01KGF396RM9XH4DT3BKG6XYYC0","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":28,"completion_tokens":9,"total_tokens":37,"cost":0.0011,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":78,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0011},"system_fingerprint":"fp_oka8v3chzr","generationId":"gen_01KGF396RM9XH4DT3BKG6XYYC0"}' + body: '{"id":"gen_01KKHTRACM2Y5K5484DEQ1J27B","object":"chat.completion","created":1773346239,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"message":{"role":"assistant","content":null,"tool_calls":[{"id":"JssQ0ov1zY9DYVCF","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"}}],"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":75,"promptTokenCount":28,"candidatesTokenCount":9,"totalTokenCount":112,"trafficType":"PROVISIONED_THROUGHPUT"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1253095.653846,"endTime":1255913.537728,"statusCode":200,"providerResponseId":"vB2zaYKwNqio-7UPmsKH4AM"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1253095.653846,"endTime":1255913.537728,"statusCode":200,"providerResponseId":"vB2zaYKwNqio-7UPmsKH4AM"}]}],"totalProviderAttemptCount":1},"cost":"0.001064","marketCost":"0.001064","generationId":"gen_01KKHTRACM2Y5K5484DEQ1J27B","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":28,"completion_tokens":9,"total_tokens":37,"cost":0.001064,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":75,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.001064},"system_fingerprint":"fp_ae53chl877","generationId":"gen_01KKHTRACM2Y5K5484DEQ1J27B"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 3.581068834s + duration: 3.003527708s - id: 1 request: proto: HTTP/1.1 @@ -38,14 +38,14 @@ interactions: proto_minor: 1 content_length: 695 host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"ixKHls2RfUCWLY8v","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"ixKHls2RfUCWLY8v","role":"tool"}],"model":"google/gemini-3-pro-preview","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"}]}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"JssQ0ov1zY9DYVCF","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"JssQ0ov1zY9DYVCF","role":"tool"}],"model":"google/gemini-3-pro-preview","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.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF39A6QVKDAEJE16471HJ6N","object":"chat.completion","created":1770033295,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"message":{"role":"assistant","content":"The weather in Florence, Italy is currently 40°C.","provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"promptTokenCount":40,"candidatesTokenCount":14,"totalTokenCount":54,"trafficType":"PROVISIONED_THROUGHPUT"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1411069.913659,"endTime":1413447.981679,"statusCode":200,"providerResponseId":"jZCAaczqJ6HZmLAP9c_xgAs"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.000248","marketCost":"0.000248","generationId":"gen_01KGF39A6QVKDAEJE16471HJ6N","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":40,"completion_tokens":14,"total_tokens":54,"cost":0.000248,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000248},"system_fingerprint":"fp_qhfqfihebr","generationId":"gen_01KGF39A6QVKDAEJE16471HJ6N"}' + body: '{"id":"gen_01KKHTRD9GPWGQCVGMPPB92P7Q","object":"chat.completion","created":1773346245,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"message":{"role":"assistant","content":"The current weather in Florence, Italy is 40°C.","reasoning_details":[{"type":"reasoning.encrypted","data":"CvIDAY89a1/ybjDdY0C6KJeBJyuMeQCNu+WOJinQGzwnMBQ6K7wvhObCtZkvpS3oODO2OkF61BwvpwqXNgUZdioz151Ma3FhWETYqFV8qUKuZjf8Ref8bp8oQ0oypK3sply4zyCHsVmUXB0vDpzDLVMwCa5O6J+E9pkRTjvnzgbANXGSFeP/QCCXWBlPyyCpOT+EIcr+VqKESTc+LFK7A1DJ86UEF9493TqCMAiuf7ChHXzx2whmkyUpv2dGGO86YdMkxTQOxEI2u/QoCmUVvUsP243rWShdl+fxSQSwuXxD/ZwlGW9nihX+Z4956HFHMbHsKoIKsXxpkZfozvUPeUT0XZBq3oPFVfmrWZH0o9d07eMUuyNhZYxVTuic2hv++wBrGwCJOrZ19U0cnuaf3pUI5NmKIMWPik/1zAc18UKKmtf9iAAgGE8LtUPZ8v/cDp8LQzUW8bAwReW5bppGux8W7pDLVSeXvii7aB9AneibEpkejqBrFrxWAmGSb4I2C0oixFHv3Ck/cVOMaWar+3plv1u9KXOvNYdYw0KKvN/ghswiAosjSNbNd1VOmlyq/LwnXxQUt6Wq6BXtZEWKjGk+ydazbvEkpxOx/aK0YtdtwCAHGVgvhgSUivVcas9QUojv5B3s6f0YVHx/mFHOMQdtr4XA","format":"google-gemini-v1","index":0}],"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":112,"promptTokenCount":40,"candidatesTokenCount":14,"totalTokenCount":166,"trafficType":"PROVISIONED_THROUGHPUT"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1258678.266805,"endTime":1263941.773774,"statusCode":200,"providerResponseId":"vx2zae3iNIuiw8cPg6PG4QE"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1258678.266805,"endTime":1263941.773774,"statusCode":200,"providerResponseId":"vx2zae3iNIuiw8cPg6PG4QE"}]}],"totalProviderAttemptCount":1},"cost":"0.001592","marketCost":"0.001592","generationId":"gen_01KKHTRD9GPWGQCVGMPPB92P7Q","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":40,"completion_tokens":14,"total_tokens":54,"cost":0.001592,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":112,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.001592},"system_fingerprint":"fp_2ojc50bn35","generationId":"gen_01KKHTRD9GPWGQCVGMPPB92P7Q"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.530493166s + duration: 5.500913334s diff --git a/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/tool_streaming.yaml b/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/tool_streaming.yaml index a8ce080bf5d25b3dfec10aee4f155a34aeba9684..37941339531296e311c43c7ce52547cf4e14d7d0 100644 --- a/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/tool_streaming.yaml +++ b/providertests/testdata/TestVercelCommon/gemini-3-pro-preview/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,13 +24,13 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF39CMWTBAYWG62BTDA8EX5","object":"chat.completion.chunk","created":1770033298,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_n9t24sd6so"} + data: {"id":"gen_01KKHTRJNNNFX0C9P22EMB8XNJ","object":"chat.completion.chunk","created":1773346247,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hqfs9ejtdk"} - data: {"id":"gen_01KGF39CMWTBAYWG62BTDA8EX5","object":"chat.completion.chunk","created":1770033298,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"mbK8hEFBfrxbyEg3","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_n9t24sd6so"} + data: {"id":"gen_01KKHTRJNNNFX0C9P22EMB8XNJ","object":"chat.completion.chunk","created":1773346247,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"XxJypvJEEcLmxyOD","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hqfs9ejtdk"} - data: {"id":"gen_01KGF39CMWTBAYWG62BTDA8EX5","object":"chat.completion.chunk","created":1770033298,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"location\":\"Florence, Italy\"}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_n9t24sd6so"} + data: {"id":"gen_01KKHTRJNNNFX0C9P22EMB8XNJ","object":"chat.completion.chunk","created":1773346247,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"location\":\"Florence, Italy\"}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hqfs9ejtdk"} - data: {"id":"gen_01KGF39CMWTBAYWG62BTDA8EX5","object":"chat.completion.chunk","created":1770033298,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":72,"promptTokenCount":28,"candidatesTokenCount":9,"totalTokenCount":109,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":7665475.024571,"endTime":7668255.526409,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":7665475.024571,"endTime":7668255.526409,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.001028","marketCost":"0.001028","generationId":"gen_01KGF39CMWTBAYWG62BTDA8EX5","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":28,"completion_tokens":9,"total_tokens":37,"cost":0.001028,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":72,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.001028},"system_fingerprint":"fp_n9t24sd6so","generationId":"gen_01KGF39CMWTBAYWG62BTDA8EX5"} + data: {"id":"gen_01KKHTRJNNNFX0C9P22EMB8XNJ","object":"chat.completion.chunk","created":1773346247,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":84,"promptTokenCount":28,"candidatesTokenCount":9,"totalTokenCount":121,"trafficType":"PROVISIONED_THROUGHPUT"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":317008.637861,"endTime":319448.994732,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":317008.637861,"endTime":319448.994732,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.001172","marketCost":"0.001172","generationId":"gen_01KKHTRJNNNFX0C9P22EMB8XNJ","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":28,"completion_tokens":9,"total_tokens":37,"cost":0.001172,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":84,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.001172},"system_fingerprint":"fp_hqfs9ejtdk","generationId":"gen_01KKHTRJNNNFX0C9P22EMB8XNJ"} data: [DONE] @@ -39,7 +39,7 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 2.918596875s + duration: 2.672002s - id: 1 request: proto: HTTP/1.1 @@ -47,14 +47,14 @@ interactions: proto_minor: 1 content_length: 749 host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"mbK8hEFBfrxbyEg3","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"mbK8hEFBfrxbyEg3","role":"tool"}],"model":"google/gemini-3-pro-preview","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}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"XxJypvJEEcLmxyOD","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"XxJypvJEEcLmxyOD","role":"tool"}],"model":"google/gemini-3-pro-preview","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.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -63,13 +63,13 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF39FC3KGNF4QFQ4V4694KD","object":"chat.completion.chunk","created":1770033301,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_et7g7hmqn5"} + data: {"id":"gen_01KKHTRN9BZ3TXNZYNZF4G9YZH","object":"chat.completion.chunk","created":1773346250,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hf8pszkidg"} - data: {"id":"gen_01KGF39FC3KGNF4QFQ4V4694KD","object":"chat.completion.chunk","created":1770033301,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"content":"The current temperature in"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_et7g7hmqn5"} + data: {"id":"gen_01KKHTRN9BZ3TXNZYNZF4G9YZH","object":"chat.completion.chunk","created":1773346250,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"content":"The weather in Florence"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hf8pszkidg"} - data: {"id":"gen_01KGF39FC3KGNF4QFQ4V4694KD","object":"chat.completion.chunk","created":1770033301,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"content":" Florence, Italy is 40°C."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_et7g7hmqn5"} + data: {"id":"gen_01KKHTRN9BZ3TXNZYNZF4G9YZH","object":"chat.completion.chunk","created":1773346250,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"content":", Italy is currently 40 degrees Celsius."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_hf8pszkidg"} - data: {"id":"gen_01KGF39FC3KGNF4QFQ4V4694KD","object":"chat.completion.chunk","created":1770033301,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"promptTokenCount":40,"candidatesTokenCount":14,"totalTokenCount":54,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":7668162.82122,"endTime":7670529.245941,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":7668162.82122,"endTime":7670529.245941,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.000248","marketCost":"0.000248","generationId":"gen_01KGF39FC3KGNF4QFQ4V4694KD","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":40,"completion_tokens":14,"total_tokens":54,"cost":0.000248,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000248},"system_fingerprint":"fp_et7g7hmqn5","generationId":"gen_01KGF39FC3KGNF4QFQ4V4694KD"} + data: {"id":"gen_01KKHTRN9BZ3TXNZYNZF4G9YZH","object":"chat.completion.chunk","created":1773346250,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"promptTokenCount":40,"candidatesTokenCount":14,"totalTokenCount":54,"trafficType":"PROVISIONED_THROUGHPUT"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1535469.408445,"endTime":1537760.745292,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1535469.408445,"endTime":1537760.745292,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.000248","marketCost":"0.000248","generationId":"gen_01KKHTRN9BZ3TXNZYNZF4G9YZH","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":40,"completion_tokens":14,"total_tokens":54,"cost":0.000248,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000248},"system_fingerprint":"fp_hf8pszkidg","generationId":"gen_01KKHTRN9BZ3TXNZYNZF4G9YZH"} data: [DONE] @@ -78,4 +78,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 2.526340125s + duration: 2.546376667s diff --git a/providertests/testdata/TestVercelCommon/gpt-5/multi_tool.yaml b/providertests/testdata/TestVercelCommon/gpt-5/multi_tool.yaml index 8d713a40d158a782b27e143dd4e182ae36095188..5c5a41d678bf4c61d06833034a54eb37f4a90c18 100644 --- a/providertests/testdata/TestVercelCommon/gpt-5/multi_tool.yaml +++ b/providertests/testdata/TestVercelCommon/gpt-5/multi_tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,28 +24,28 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF38JKSTNNP061DTA2R1QR6","object":"chat.completion","created":1770033273,"model":"openai/gpt-5","choices":[{"index":0,"message":{"role":"assistant","content":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABpgJB5sMVU3E5XyBIYkGVYX_idbwIgEl6hyzl37P25LBkPxPxtSA-z_vG-ub3Ht2lLorQuxuYXJw5TvvQljT1wPC9GtS-3qVZwt_QhReZWbhESWHryCcV1WyEPUZj8oG3nUVCuV917iOoZgfkRgLG8X9Oi5ezb_M42WqRmF1XWXL302fu3bJRy_jT8mmoiLnCmS1wXX_78058GTTjjJLGqTBPni0y7sZDDHpFgUsgpoWv3gF9X9OClhk3JOfuqgNYIVTS90C6pQ-JUHWX-9q-v34qMHs-E_QnaCYQLShf4Fa04N_DY0SphPoP1UaJMp6A1spu8WjCNLr4KjkFsq3QirbYcp9pwZj_N_XmbDRSTE4DXcqLKUafsUjpQC9bNiEvZ2oh95CRmMwHznVetnUTXsmxPj3p7x8MRer9NM1LMetWxMLz28oAnDq6T1xHu1nhSdHVBG7DpVIDeXN6PYA6BLrCiVuB3K3_pooysaNVwv05EPDrCrvYotlHdbDPiU_OsF9uClsKkTguYjfCqihV48xgYqAQJqU_guhAe3NSacal5sjGMG8OBp_QrcTsRmCG-pUJ0_YkU3BKxN-h3FBBjBfnZrmJIHkV17oIvqyfd4mr_apHg_tNQJlyNr14usvYzzp65IK1jJ4UXepLHyBJfuBh6U1j9EQmRd2gS9gwwT_pvN0TVZaZZs32Pxakgq0wBNkRrto41JRHbpdYOuL_pWpcJ8fceSVv4rYxn7qewym_XxX1hFRz3on638qI70UUmPc64m3DzB60l0O83FLqHvlNEGOR6SSogOZc3M0oX9Zll-kgi02fb9deA6_HrhrGjYzAUDFQEuyFwML4u2mquXz7e1hmyKede1kBPnnZxhNODgFbRZrW_qZPf6D8fcLLR5KZHdhO4NjSGigxt3vbdBqRRPVJw5Ci9v2kXJLAczXB8Ifv5Vz9BUdQgAh_QWHmrirtcjU4Y84m1wCskcIpf_F5pduuGedRj6pnmEyYATiNxl0XCy6RmPGKjwgAz5qcQzOyHz013e4QzzB5Etmm6B01_oYpHXgmsi84z_LrSCtGSQI8S8l4RpESzGqaqQ84apbFvw4xJuA3fJPekyN6HkhK0cnD_NVxrUiEsmnhnLNSpUkwjzFGFWbasYYQj6Rik2WNOhoHpmPXzVgJsdrp94MrUGXWEgdUDcIWnH8LFizamKnBNox1e1i_phBxrQLLzqfgN2HABOE9WyDEIfpOgJOX2RfDn6q_RQ9WM79hDZJD7RUap1bC0dlxqomi0fYVqyOoW0RQyQ-_mrBK4nYFVwfDaZwrWXNzTsFvtlJzN8O8-L5J6UTx-AhSNcnI35O3AuxbNyRC72HhVzN-A0Ae4SouL25ouc582Oy8M1xzs9RjlkoSIHZYAe2wzfvD9B7N0F2tbahD-MOHCbLctCFRb_S4gO29xZgeGgdXxyykq5il4vya6f1GmTfCC9Ktg4dsdmmqbSAXV9Ck0iUhg4cZVSNliyxxUMjJfDLt8ZO0f_UxrD2RCoZL7zwRgCAldl4ndkmotvTH_0HSRxmob1Q6AwgItkWU7GcGdk_7PLUho5332sVdKbQcpLVZQNyKOVtreej8EkH47b8wEvVJ6lz2lKNKEz9tyHRUlEPBjW3yb3YvO3wyfRkkqMMXFO_PEuhQ66ceSOHJJW2zmJuZepwBMUiez3sZph3o1zjvB7tHAY7YCaTjbh8urPaYjGUrLyVmvAkwEbQQwE1-vpyhoztrqOinvOm6fUyU0HsQuQIEqCUtFqO8G755g3I_cFrgfjmgRXMMvhKk4iQ61rOL2YAPNozSdCGNtplTJIhnb2xZC-gbtK8YwcbWz7B1k2bICxfgAhX7W9cOsnGnJwB-wS_vAkmjSZrHmrkAAAEjPLaemIGxhPzZ9sU6R2TLKHL6wOA0LthE5ltRY5PGnsCK7NFcsHDcyFWCGLH10UYfV1n5_uOvUMqsHlT8iHMA2y-W0DtdzDNeEUOZj5mDAwfdTAIoXJc5-wieyLp27uLJqmJ0ZvchRT2CcM0SC_mDNaYXlJyn5uavmUkp4Ykh2LGN54lFFzbcOsVcVLzpdQJ0u2QF4QXIbzHMnw8ipejfMaN2zkXRGsex9BXcf9fIOxwPH8LTsLRArUz--pl8wq8x2_ZyRNC5ZPtZrWr3lTokTqXrb8gASoIchRTZDV8fQdPIPXIJE4A-Dn-8Hfrxnf63IKRoFv4ENTzOoycoNH4kyCh4LQSInGFeE5vAa3Iq_ctdHf6LlVnoURnZdrmC_c03UMJjv671ZYbzuS76jKRTAJF7PnJhDdAhV-xvZmRKzJpJ4k_ZmN9O19iXZVVv4ofjn3m0iOWY8N61suLBb9wErE0PJxzNQnLBFSXuC3qrd9IrVzEMUOsMloPH6bB-zGlRQP_gY3LzZ4tEF70ZuqIdwAYgjKGc9LqXfz0d5hXLLPE0MeJxiCJFuHyUCgPphf8gfCw6lw0gz7KiH87aXBbOTwcUl2bT6pDDmKSkZQPUv67c0JoB0j5IsH67XBFhYZHiyenTddXJHSKHXnLlhdZCifIDaYXElPZLdWT5SZ3Y_i1AAaLOk-h2esjagpMOWRZMzY97KHDINIMiUcW_aE5IrsGWkP8jnHu-rDHXU2L9VOzErnTMz8b-DXg==","id":"rs_09ce24a3ef4ef4c30169809075d9c881909a0602f2f9b94079","format":"openai-responses-v1","index":0}],"tool_calls":[{"id":"call_hw6yjnBO12c7jlYo4Ug0REvD","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}},{"id":"call_1DofUzAYzaNZecbxfrt2sRSv","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}],"provider_metadata":{"openai":{"responseId":"resp_09ce24a3ef4ef4c30169809075837481908f0f2e352bb0536c","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1376272.617242,"endTime":1380180.418282,"statusCode":200,"providerResponseId":"resp_09ce24a3ef4ef4c30169809075837481908f0f2e352bb0536c"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai/gpt-5","canonicalSlug":"openai/gpt-5","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.00609","marketCost":"0.00609","generationId":"gen_01KGF38JKSTNNP061DTA2R1QR6","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":56,"completion_tokens":346,"total_tokens":402,"cost":0.00609,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":256,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00609},"system_fingerprint":"fp_z6pyhzzwli","generationId":"gen_01KGF38JKSTNNP061DTA2R1QR6"}' + body: '{"id":"gen_01KKHTQCMWEN9M7ZV1VXWW71WF","object":"chat.completion","created":1773346215,"model":"openai/gpt-5","choices":[{"index":0,"message":{"role":"assistant","content":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABpsx2nWz7Qu94ZCj6UtwYGAW2QCjZuEoPDGwKjlkboS7oZusjxO2Fh7ZLl7_ghBocp__aWwZhJawnamO5a_JHWRbVS51OFxWXOZt_SDVVw8ONASMqdfAXrrDcj1d9hSwSzbQun27FQN5C8fH9dY_vtICJGSN7oG5jjeoeKkcUNY926kd-uh9bh5MxJqvi9nj21ZeGW2h-vD6WLGr2RMOHt5X1vJZgaFCFfr_eeWAxjrx1t0JGokRiWKAu4eA_9PV8zwVce8ML3hB-tW0npxZ4aqVLY2du93BV_s29HoHHnylM1_KwNsYc3Uj2EmtRKU_BfQ-lDN0qpn8KysCnmJ-h1MoWM2XzLCCK1ihQGfXuQ2fJ50sTMLVwYoY_c5nKUeqr-0_hNpJldqC1cU3sGJ-zx46rkDvkjMYCYSFF746cU5mvZhxKLkpngKAIKibrgKU1QAq322vHXspSyGovhhiWwh4Gad_HzdKHKxnX1VPNYNCkzww6LFo15MZSWc7ytzlQ2Yw4zKiP_oVeSMbfsn5MyH5dUHhZKeGa-goHuh7N9hpGQuSb3tKLdVdXjxcdoOadeBr0S2ouW1UhS5PzuI2zR8dJ7KWpgqgEzhRyC8PDtby5HmPMkvQoX73OAjn1FZoIuE5nutDGKNG0OryXFaRcv62Cemcrdvn6NrHLaK9dogGbuJCYg_PJTKjt_2iFvNKELmXgQ8ACGcg8-Zb4re15hKxTdL7enhTRfA0TjIAO0yJRnzee9XmlZx5-GimRPsbaYI9XG1dgEVJ7-VY-Ep9I40gl0xmgSN0TpnNJ1SlN2ejhY5HbCttMW3vMJiAHn8q1TllKvgKm1_WQTKDxjbwkyDZmky4k4O3Q4XGQZ6XxeeEadbHDw8lDE2vWlQZqHBNTW6T5KRwuMgnKvG1gvgPmzDcpbx3yajBJbyDO48BM6hDxWLgf37VILKLRs7C6MCuFwqjBAi-XlkZ7Wpc6W_EqeQ2Dm4Wgagg9-AKcBLOP5G0Losx_GViIjN42Zut1eQuHE4XvJo6uvL5gsALMIViTPP8NpVS9rd3adO_nRwOWyJ9_B7qRHAiuAPGb5sVGqMrvls8EKtpl3Gohh8WMHdyglWfTcOm_k1XTyUSk0oyUPB1dh5oT0TKgyFZBl6EXwngheTwZ1LUHUhdTIK0WiIVUTxyqQB9mcWCtbuPNb9agYWIrhUNstPwpXyf3zrxYfiLP1PfFDSIVgACL_atu070o9KGi3e-7v__FkGOfejyYPTJM7NOu9e7KOSAny3Gwsk9QN2yazamxkiVV_pqM8DFQfyRQMgOS7UjN-ljvJ6xo1bTnJTX_qBcfkFM9TXcBLuOiRTBW92k9o70_v0b-WpFLA5UfcaCNPjjEZJifxCVywG3WZWPnQgAtaAmBD3PANZObk1ettO-pUQPiHnCzMFVbcConTR0zS2HLxa2i_bXkqLMcpvHtdWtF3Kc60z8Lhs2OgDHZRj-6mPOACAKQnkpLXCQZ3LimJIh33ZgkxMD6YXIEZRZ3H01nksCP88TZGgnWjPeDGv9Rz6kDLVT5GEoj6lb9KO6H3k6cJC4WZ7IxLl8YSL_mYX_8SH_q-vJVTBxsfD-gt_9Xdt5aRGuVXgFauL4--etzk4PA3FMBiJqNRObDnhd7y2rvaaqW_J5m-9-pwbKZxyN-NIuci0KWhcdycI_YqBy_cfkFVJyxrR8zmlF2ciV-hVUZUEVQ_q1NoEGLwTzaq4qSg89r4JlYeNjlRLcOtT_S0R_Db7wfcGwpfwbt_YUxYXchcE6MyIR-JDLl9k3OGwjLGxKTW7BIoJxqJH_meh2ihUoa72XX7Nc4BIi7Bz3gKR6yScxvIK6WfTR-9voBfM4mUd7NAdlajIXZysYP2atJSbYHB2dMwtD--qIjapJBUFIJm1a6evsnqQnhHHvuO4R8IoPrgkaKuTwTo6V7cGz-AwGGlVCL9-owNV8FMv1FDnhXPe4fc0bT7lQXsA0v8fXSi-jgwidbVP60FzhXWoGPuo7ZFD24AF01U-Rv1Zfcwc6jo84Cng5Hyno6l1-MNOoNNZtXKHfnVlpw2P-0lQ3x8clqCsZYxHdRKty5_c7UTC3q7GZdabYzieX_hS_TAsN97nwkUp4NAtfj1nPbjemLFErBlN9q9KJwUmdiFHhnAsAYll5PUtBgv1a1sFrRDBZexVF0I03RjAl0nnwG157hjk1rEU4kD7n1gqmt8dLh5zOFDRoRWdWW5e5GTA-SF0t6vR6wTbrENjH_Xa5_1obNP64RuGHfpyI5MS7xmKQ86ZDMZpJWtswnrbY0qyZHAFM_9lwGpaxjk1x6p_vxXnLSnf7HKJ3j3v8B-w-PKMTXHH4dOUwz4Ps9HORT7fwfTsh76qMIHEduOAmb9bTZn8St1vsmGBq_envzgsK6Wfeg3kr1bSyjqu7lJBW-SG6b56PfiG-PM_08TdRUPU2jC_DSprm9EKXHdIYW5FDYQ4WJPpUSY-kMbzkzPB6a5ogag4vCIs0bHpwtbO09vPmmRwFenfmecoMd4x6J4XSZ4pmA=","id":"rs_0ad6ba22a72d850f0169b31d9f0e948190aee9b5b531ab5d35","format":"openai-responses-v1","index":0}],"tool_calls":[{"id":"call_ulMqJOy9WR0LRV2ImHkmBfEX","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}},{"id":"call_nIrswpoKOV3YHDGXlLHtmWwa","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}],"provider_metadata":{"openai":{"responseId":"resp_0ad6ba22a72d850f0169b31d9e6d4081909ece9ec9afb5a16d","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1225313.979148,"endTime":1234121.173749,"statusCode":200,"providerResponseId":"resp_0ad6ba22a72d850f0169b31d9e6d4081909ece9ec9afb5a16d"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai:gpt-5-2025-08-07","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1225313.979148,"endTime":1234121.173749,"statusCode":200,"providerResponseId":"resp_0ad6ba22a72d850f0169b31d9e6d4081909ece9ec9afb5a16d"}]}],"totalProviderAttemptCount":1},"cost":"0.00597125","marketCost":"0.00597125","generationId":"gen_01KKHTQCMWEN9M7ZV1VXWW71WF","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":113,"completion_tokens":327,"total_tokens":440,"cost":0.00597125,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":256,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00597125},"system_fingerprint":"fp_08nit8hrwg","service_tier":"default","generationId":"gen_01KKHTQCMWEN9M7ZV1VXWW71WF"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 3.998469542s + duration: 8.975822542s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4078 + content_length: 3970 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"},{"tool_calls":[{"id":"call_hw6yjnBO12c7jlYo4Ug0REvD","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_1DofUzAYzaNZecbxfrt2sRSv","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant","reasoning_details":[{"data":"gAAAAABpgJB5sMVU3E5XyBIYkGVYX_idbwIgEl6hyzl37P25LBkPxPxtSA-z_vG-ub3Ht2lLorQuxuYXJw5TvvQljT1wPC9GtS-3qVZwt_QhReZWbhESWHryCcV1WyEPUZj8oG3nUVCuV917iOoZgfkRgLG8X9Oi5ezb_M42WqRmF1XWXL302fu3bJRy_jT8mmoiLnCmS1wXX_78058GTTjjJLGqTBPni0y7sZDDHpFgUsgpoWv3gF9X9OClhk3JOfuqgNYIVTS90C6pQ-JUHWX-9q-v34qMHs-E_QnaCYQLShf4Fa04N_DY0SphPoP1UaJMp6A1spu8WjCNLr4KjkFsq3QirbYcp9pwZj_N_XmbDRSTE4DXcqLKUafsUjpQC9bNiEvZ2oh95CRmMwHznVetnUTXsmxPj3p7x8MRer9NM1LMetWxMLz28oAnDq6T1xHu1nhSdHVBG7DpVIDeXN6PYA6BLrCiVuB3K3_pooysaNVwv05EPDrCrvYotlHdbDPiU_OsF9uClsKkTguYjfCqihV48xgYqAQJqU_guhAe3NSacal5sjGMG8OBp_QrcTsRmCG-pUJ0_YkU3BKxN-h3FBBjBfnZrmJIHkV17oIvqyfd4mr_apHg_tNQJlyNr14usvYzzp65IK1jJ4UXepLHyBJfuBh6U1j9EQmRd2gS9gwwT_pvN0TVZaZZs32Pxakgq0wBNkRrto41JRHbpdYOuL_pWpcJ8fceSVv4rYxn7qewym_XxX1hFRz3on638qI70UUmPc64m3DzB60l0O83FLqHvlNEGOR6SSogOZc3M0oX9Zll-kgi02fb9deA6_HrhrGjYzAUDFQEuyFwML4u2mquXz7e1hmyKede1kBPnnZxhNODgFbRZrW_qZPf6D8fcLLR5KZHdhO4NjSGigxt3vbdBqRRPVJw5Ci9v2kXJLAczXB8Ifv5Vz9BUdQgAh_QWHmrirtcjU4Y84m1wCskcIpf_F5pduuGedRj6pnmEyYATiNxl0XCy6RmPGKjwgAz5qcQzOyHz013e4QzzB5Etmm6B01_oYpHXgmsi84z_LrSCtGSQI8S8l4RpESzGqaqQ84apbFvw4xJuA3fJPekyN6HkhK0cnD_NVxrUiEsmnhnLNSpUkwjzFGFWbasYYQj6Rik2WNOhoHpmPXzVgJsdrp94MrUGXWEgdUDcIWnH8LFizamKnBNox1e1i_phBxrQLLzqfgN2HABOE9WyDEIfpOgJOX2RfDn6q_RQ9WM79hDZJD7RUap1bC0dlxqomi0fYVqyOoW0RQyQ-_mrBK4nYFVwfDaZwrWXNzTsFvtlJzN8O8-L5J6UTx-AhSNcnI35O3AuxbNyRC72HhVzN-A0Ae4SouL25ouc582Oy8M1xzs9RjlkoSIHZYAe2wzfvD9B7N0F2tbahD-MOHCbLctCFRb_S4gO29xZgeGgdXxyykq5il4vya6f1GmTfCC9Ktg4dsdmmqbSAXV9Ck0iUhg4cZVSNliyxxUMjJfDLt8ZO0f_UxrD2RCoZL7zwRgCAldl4ndkmotvTH_0HSRxmob1Q6AwgItkWU7GcGdk_7PLUho5332sVdKbQcpLVZQNyKOVtreej8EkH47b8wEvVJ6lz2lKNKEz9tyHRUlEPBjW3yb3YvO3wyfRkkqMMXFO_PEuhQ66ceSOHJJW2zmJuZepwBMUiez3sZph3o1zjvB7tHAY7YCaTjbh8urPaYjGUrLyVmvAkwEbQQwE1-vpyhoztrqOinvOm6fUyU0HsQuQIEqCUtFqO8G755g3I_cFrgfjmgRXMMvhKk4iQ61rOL2YAPNozSdCGNtplTJIhnb2xZC-gbtK8YwcbWz7B1k2bICxfgAhX7W9cOsnGnJwB-wS_vAkmjSZrHmrkAAAEjPLaemIGxhPzZ9sU6R2TLKHL6wOA0LthE5ltRY5PGnsCK7NFcsHDcyFWCGLH10UYfV1n5_uOvUMqsHlT8iHMA2y-W0DtdzDNeEUOZj5mDAwfdTAIoXJc5-wieyLp27uLJqmJ0ZvchRT2CcM0SC_mDNaYXlJyn5uavmUkp4Ykh2LGN54lFFzbcOsVcVLzpdQJ0u2QF4QXIbzHMnw8ipejfMaN2zkXRGsex9BXcf9fIOxwPH8LTsLRArUz--pl8wq8x2_ZyRNC5ZPtZrWr3lTokTqXrb8gASoIchRTZDV8fQdPIPXIJE4A-Dn-8Hfrxnf63IKRoFv4ENTzOoycoNH4kyCh4LQSInGFeE5vAa3Iq_ctdHf6LlVnoURnZdrmC_c03UMJjv671ZYbzuS76jKRTAJF7PnJhDdAhV-xvZmRKzJpJ4k_ZmN9O19iXZVVv4ofjn3m0iOWY8N61suLBb9wErE0PJxzNQnLBFSXuC3qrd9IrVzEMUOsMloPH6bB-zGlRQP_gY3LzZ4tEF70ZuqIdwAYgjKGc9LqXfz0d5hXLLPE0MeJxiCJFuHyUCgPphf8gfCw6lw0gz7KiH87aXBbOTwcUl2bT6pDDmKSkZQPUv67c0JoB0j5IsH67XBFhYZHiyenTddXJHSKHXnLlhdZCifIDaYXElPZLdWT5SZ3Y_i1AAaLOk-h2esjagpMOWRZMzY97KHDINIMiUcW_aE5IrsGWkP8jnHu-rDHXU2L9VOzErnTMz8b-DXg==","format":"openai-responses-v1","id":"rs_09ce24a3ef4ef4c30169809075d9c881909a0602f2f9b94079","index":0,"type":"reasoning.encrypted"}]},{"content":"5","tool_call_id":"call_hw6yjnBO12c7jlYo4Ug0REvD","role":"tool"},{"content":"6","tool_call_id":"call_1DofUzAYzaNZecbxfrt2sRSv","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}]}' + 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":"call_ulMqJOy9WR0LRV2ImHkmBfEX","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_nIrswpoKOV3YHDGXlLHtmWwa","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant","reasoning_details":[{"data":"gAAAAABpsx2nWz7Qu94ZCj6UtwYGAW2QCjZuEoPDGwKjlkboS7oZusjxO2Fh7ZLl7_ghBocp__aWwZhJawnamO5a_JHWRbVS51OFxWXOZt_SDVVw8ONASMqdfAXrrDcj1d9hSwSzbQun27FQN5C8fH9dY_vtICJGSN7oG5jjeoeKkcUNY926kd-uh9bh5MxJqvi9nj21ZeGW2h-vD6WLGr2RMOHt5X1vJZgaFCFfr_eeWAxjrx1t0JGokRiWKAu4eA_9PV8zwVce8ML3hB-tW0npxZ4aqVLY2du93BV_s29HoHHnylM1_KwNsYc3Uj2EmtRKU_BfQ-lDN0qpn8KysCnmJ-h1MoWM2XzLCCK1ihQGfXuQ2fJ50sTMLVwYoY_c5nKUeqr-0_hNpJldqC1cU3sGJ-zx46rkDvkjMYCYSFF746cU5mvZhxKLkpngKAIKibrgKU1QAq322vHXspSyGovhhiWwh4Gad_HzdKHKxnX1VPNYNCkzww6LFo15MZSWc7ytzlQ2Yw4zKiP_oVeSMbfsn5MyH5dUHhZKeGa-goHuh7N9hpGQuSb3tKLdVdXjxcdoOadeBr0S2ouW1UhS5PzuI2zR8dJ7KWpgqgEzhRyC8PDtby5HmPMkvQoX73OAjn1FZoIuE5nutDGKNG0OryXFaRcv62Cemcrdvn6NrHLaK9dogGbuJCYg_PJTKjt_2iFvNKELmXgQ8ACGcg8-Zb4re15hKxTdL7enhTRfA0TjIAO0yJRnzee9XmlZx5-GimRPsbaYI9XG1dgEVJ7-VY-Ep9I40gl0xmgSN0TpnNJ1SlN2ejhY5HbCttMW3vMJiAHn8q1TllKvgKm1_WQTKDxjbwkyDZmky4k4O3Q4XGQZ6XxeeEadbHDw8lDE2vWlQZqHBNTW6T5KRwuMgnKvG1gvgPmzDcpbx3yajBJbyDO48BM6hDxWLgf37VILKLRs7C6MCuFwqjBAi-XlkZ7Wpc6W_EqeQ2Dm4Wgagg9-AKcBLOP5G0Losx_GViIjN42Zut1eQuHE4XvJo6uvL5gsALMIViTPP8NpVS9rd3adO_nRwOWyJ9_B7qRHAiuAPGb5sVGqMrvls8EKtpl3Gohh8WMHdyglWfTcOm_k1XTyUSk0oyUPB1dh5oT0TKgyFZBl6EXwngheTwZ1LUHUhdTIK0WiIVUTxyqQB9mcWCtbuPNb9agYWIrhUNstPwpXyf3zrxYfiLP1PfFDSIVgACL_atu070o9KGi3e-7v__FkGOfejyYPTJM7NOu9e7KOSAny3Gwsk9QN2yazamxkiVV_pqM8DFQfyRQMgOS7UjN-ljvJ6xo1bTnJTX_qBcfkFM9TXcBLuOiRTBW92k9o70_v0b-WpFLA5UfcaCNPjjEZJifxCVywG3WZWPnQgAtaAmBD3PANZObk1ettO-pUQPiHnCzMFVbcConTR0zS2HLxa2i_bXkqLMcpvHtdWtF3Kc60z8Lhs2OgDHZRj-6mPOACAKQnkpLXCQZ3LimJIh33ZgkxMD6YXIEZRZ3H01nksCP88TZGgnWjPeDGv9Rz6kDLVT5GEoj6lb9KO6H3k6cJC4WZ7IxLl8YSL_mYX_8SH_q-vJVTBxsfD-gt_9Xdt5aRGuVXgFauL4--etzk4PA3FMBiJqNRObDnhd7y2rvaaqW_J5m-9-pwbKZxyN-NIuci0KWhcdycI_YqBy_cfkFVJyxrR8zmlF2ciV-hVUZUEVQ_q1NoEGLwTzaq4qSg89r4JlYeNjlRLcOtT_S0R_Db7wfcGwpfwbt_YUxYXchcE6MyIR-JDLl9k3OGwjLGxKTW7BIoJxqJH_meh2ihUoa72XX7Nc4BIi7Bz3gKR6yScxvIK6WfTR-9voBfM4mUd7NAdlajIXZysYP2atJSbYHB2dMwtD--qIjapJBUFIJm1a6evsnqQnhHHvuO4R8IoPrgkaKuTwTo6V7cGz-AwGGlVCL9-owNV8FMv1FDnhXPe4fc0bT7lQXsA0v8fXSi-jgwidbVP60FzhXWoGPuo7ZFD24AF01U-Rv1Zfcwc6jo84Cng5Hyno6l1-MNOoNNZtXKHfnVlpw2P-0lQ3x8clqCsZYxHdRKty5_c7UTC3q7GZdabYzieX_hS_TAsN97nwkUp4NAtfj1nPbjemLFErBlN9q9KJwUmdiFHhnAsAYll5PUtBgv1a1sFrRDBZexVF0I03RjAl0nnwG157hjk1rEU4kD7n1gqmt8dLh5zOFDRoRWdWW5e5GTA-SF0t6vR6wTbrENjH_Xa5_1obNP64RuGHfpyI5MS7xmKQ86ZDMZpJWtswnrbY0qyZHAFM_9lwGpaxjk1x6p_vxXnLSnf7HKJ3j3v8B-w-PKMTXHH4dOUwz4Ps9HORT7fwfTsh76qMIHEduOAmb9bTZn8St1vsmGBq_envzgsK6Wfeg3kr1bSyjqu7lJBW-SG6b56PfiG-PM_08TdRUPU2jC_DSprm9EKXHdIYW5FDYQ4WJPpUSY-kMbzkzPB6a5ogag4vCIs0bHpwtbO09vPmmRwFenfmecoMd4x6J4XSZ4pmA=","format":"openai-responses-v1","id":"rs_0ad6ba22a72d850f0169b31d9f0e948190aee9b5b531ab5d35","index":0,"type":"reasoning.encrypted"}]},{"content":"5","tool_call_id":"call_ulMqJOy9WR0LRV2ImHkmBfEX","role":"tool"},{"content":"6","tool_call_id":"call_nIrswpoKOV3YHDGXlLHtmWwa","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF38PH89YBGB4JEVM3QY13Q","object":"chat.completion","created":1770033274,"model":"openai/gpt-5","choices":[{"index":0,"message":{"role":"assistant","content":"Sum: 5\nProduct: 6","provider_metadata":{"openai":{"responseId":"resp_09ce24a3ef4ef4c3016980907989e48190add2b3ea521eefd8","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":262916.844804,"endTime":263772.252753,"statusCode":200,"providerResponseId":"resp_09ce24a3ef4ef4c3016980907989e48190add2b3ea521eefd8"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai/gpt-5","canonicalSlug":"openai/gpt-5","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.00070875","marketCost":"0.00070875","generationId":"gen_01KGF38PH89YBGB4JEVM3QY13Q","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":463,"completion_tokens":13,"total_tokens":476,"cost":0.00070875,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00070875},"system_fingerprint":"fp_md8g0mkmrp","generationId":"gen_01KGF38PH89YBGB4JEVM3QY13Q"}' + body: '{"id":"gen_01KKHTQND2E4CWFRP9GEMWAWYR","object":"chat.completion","created":1773346216,"model":"openai/gpt-5","choices":[{"index":0,"message":{"role":"assistant","content":"Sum: 5\nProduct: 6","provider_metadata":{"openai":{"responseId":"resp_0ad6ba22a72d850f0169b31da7698c81908b7c694c708d0f7b","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1267446.393779,"endTime":1268561.962042,"statusCode":200,"providerResponseId":"resp_0ad6ba22a72d850f0169b31da7698c81908b7c694c708d0f7b"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai:gpt-5-2025-08-07","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1267446.393779,"endTime":1268561.962042,"statusCode":200,"providerResponseId":"resp_0ad6ba22a72d850f0169b31da7698c81908b7c694c708d0f7b"}]}],"totalProviderAttemptCount":1},"cost":"0.000685","marketCost":"0.000685","generationId":"gen_01KKHTQND2E4CWFRP9GEMWAWYR","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":444,"completion_tokens":13,"total_tokens":457,"cost":0.000685,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000685},"system_fingerprint":"fp_zzesij1bm1","service_tier":"default","generationId":"gen_01KKHTQND2E4CWFRP9GEMWAWYR"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 961.776042ms + duration: 1.406254958s diff --git a/providertests/testdata/TestVercelCommon/gpt-5/multi_tool_streaming.yaml b/providertests/testdata/TestVercelCommon/gpt-5/multi_tool_streaming.yaml index f2251f0326ff81db7a266e8ef7dc338f3d2ebeca..a52b09e7f40057a6f99b4ecd3515f2fe0ad998e9 100644 --- a/providertests/testdata/TestVercelCommon/gpt-5/multi_tool_streaming.yaml +++ b/providertests/testdata/TestVercelCommon/gpt-5/multi_tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,19 +24,19 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF38QHY01RX510GTJVENPPB","object":"chat.completion.chunk","created":1770033274,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_lwams5xjm0"} + data: {"id":"gen_01KKHTQPSHJ5CM7TAQZYWNAQTV","object":"chat.completion.chunk","created":1773346216,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_m0dg9o8dnf"} - data: {"id":"gen_01KGF38QHY01RX510GTJVENPPB","object":"chat.completion.chunk","created":1770033274,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABpgJB6xgaIX4YGTj3EZimfLMfl7lZ7SJq0aBMWfGDeorXxt6sRPjllCKcFat69Q1kpuEDG1tvuIG_6OxUZHOP_noSA63nkkhTluixdSHPde3XgwYgrm01hBIphFo1ztgQMsVXZaqNGBJKfB35qJ7zSKEFXWcB6olUNA4UUXTup_nH8KrNf0_JcRd4JmIXeaQTTaNLYxeUNljoVsLun6RwBzKf2sDmMFqa8wdE5v159EsaN20EgWQnJGlWdyWEZBixffGM4cXbWIpmZRCv8TCy4dYMh3Nz8FQt7JbWJvCWQskP_b3AFm3TV-h8yUBFhdXRYAeZxtIZsBmjCZZtwDPGnKJ3tLtSnQ3PtlYFn1l0vvPgHh7mdmnhdbWtkUh3hQozmpwGYE5G0LE1XlEQ9KqdR6_ERfztdnbWnxJqAly_m5uXFu6ymcMDmZhkdFvRM1M8923TpttfrkNlzsQM2pzRyZYhATSrBz8eMgJY7me3UHXo3FlGnf0Capm2MNNLVytVv0mgqa8WEMhPzpuga1kbqKt884QqnjHgozx0DYM68uOwTOlMBdRSf6MCE5aqn4fYK7sp3_ZclUNtDr7cM8Pz5GJX3dh_py69qCStpAhptt0smksFcHGezX9zrDehJ9bPvW6gTK4aBKUAndr6SXQ22Boa0kRTo2YWU6mNMr0yNQomEoupdUvc5FtsJ6PiaOz7rTHDS10SCZAvSv0cE2rdVAmh_j-2uDfYkKBs_wPDiNSXCdmIBtO8w4QFABeZQut22nlPTA7a6zV2-GV5m_7FumT6mn92tVW39uuZaWLgJWqa_KADeWM35JQTHrzOOLz54vm4M","id":"rs_0023798544b250b9016980907aebec81948e9042e8de044015","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_lwams5xjm0"} + data: {"id":"gen_01KKHTQPSHJ5CM7TAQZYWNAQTV","object":"chat.completion.chunk","created":1773346216,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABpsx2pQu0135fKIHkL8jzcesZIQSXEkuC3AeouXns8sjKhd7HDX9f3r3n4jzIbOn1um_OpE-UfF3DB7cwCFUmjgZDKfpog00NVUrAo27YuYD_RU625vzTw0htih2CsVoPQx22pTzj5_GtCbFpocZl1X5VsBTBjk9Ca8rC3mmY1X5t_XShK155Wk_QFRNn3f8dbeEEnDkUGJw6AapPwA_Lrv1DMP_ENnVbyP-DhAjCZ45yAxzChDNJMP6LGMBs5ziR5NSfbfgxgGNIwkvYz97tCSuURIyAx30MIAFiFylmOrykJlYXt4mTHi-cnqg98itg971fC2xHymlRqtcITx5ujY7kQ9EWAPWY9LNTni8p6yklg-ADt3hY-QmmtzorKF4mLA5UZ21C9o2Rg0BZ8aaosWBBra0_Niy7Z_tkbdOmaisFQbP8cBwyJ2ALk1HVXAE1jXYmsky5xxDpvl2wMXAHQjDxU-Js56tu0pOXK7jr8oAEJFy9Gjjj3qQ0r9vvHExG74rtP2Q1pvHLs4xn-OI6hL2lhxVu-sljUybqbtnfbrqjBL5g18SZIZFEDY9fa72hBvQKYwBds5vzPD2eTUc7j9eDi8zB0Y1cANnNTFJm6f_6HJmsjOlpqL7gvuxrXlXW4c7pY_UKXkVzEIRvJZSHbaKzBzuATtx8Wu4HgJsVFNme7WwcJH2FfndNgd1DSZbcwYI9UBBXvaoOC0dAGAR9evQMlT_eW0i0k3BQWFPXQhU9t-DZpw2LWzmI4Rf87SDnZzUQ0t6ni7cIWCb1QPhkpdgYxeMJEO6GA857EPcyhO88cQfgR3ZGix_mIjARMnIiK5fd8","id":"rs_0ba39c4cbf0914b60169b31da9489c81939625ac8c4748812b","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_m0dg9o8dnf"} - data: {"id":"gen_01KGF38QHY01RX510GTJVENPPB","object":"chat.completion.chunk","created":1770033274,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"call_tHpxKCS6xnVW3HBEkBww7S9T","type":"function","function":{"name":"add","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_lwams5xjm0"} + data: {"id":"gen_01KKHTQPSHJ5CM7TAQZYWNAQTV","object":"chat.completion.chunk","created":1773346216,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"call_NKBrzaRfgcLAkvIldhIYsqtH","type":"function","function":{"name":"add","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_m0dg9o8dnf"} - data: {"id":"gen_01KGF38QHY01RX510GTJVENPPB","object":"chat.completion.chunk","created":1770033274,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"a\":2,\"b\":3}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_lwams5xjm0"} + data: {"id":"gen_01KKHTQPSHJ5CM7TAQZYWNAQTV","object":"chat.completion.chunk","created":1773346216,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"a\":2,\"b\":3}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_m0dg9o8dnf"} - data: {"id":"gen_01KGF38QHY01RX510GTJVENPPB","object":"chat.completion.chunk","created":1770033274,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"call_qj0i1JW7dlNDPv5uNW5Tq6lO","type":"function","function":{"name":"multiply","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_lwams5xjm0"} + data: {"id":"gen_01KKHTQPSHJ5CM7TAQZYWNAQTV","object":"chat.completion.chunk","created":1773346216,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"call_RjOUujdrBGigQL7C1p7IpWtJ","type":"function","function":{"name":"multiply","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_m0dg9o8dnf"} - data: {"id":"gen_01KGF38QHY01RX510GTJVENPPB","object":"chat.completion.chunk","created":1770033274,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"a\":2,\"b\":3}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_lwams5xjm0"} + data: {"id":"gen_01KKHTQPSHJ5CM7TAQZYWNAQTV","object":"chat.completion.chunk","created":1773346216,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"a\":2,\"b\":3}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_m0dg9o8dnf"} - data: {"id":"gen_01KGF38QHY01RX510GTJVENPPB","object":"chat.completion.chunk","created":1770033274,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"provider_metadata":{"openai":{"responseId":"resp_0023798544b250b9016980907a944c8194aa354cf54822893e","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":7023589.520205,"endTime":7023819.54204,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai/gpt-5","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":7023589.520205,"endTime":7023819.54204,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.0049675","marketCost":"0.0049675","generationId":"gen_01KGF38QHY01RX510GTJVENPPB","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":54,"completion_tokens":298,"total_tokens":352,"cost":0.0049675,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":192,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0049675},"system_fingerprint":"fp_lwams5xjm0","generationId":"gen_01KGF38QHY01RX510GTJVENPPB"} + data: {"id":"gen_01KKHTQPSHJ5CM7TAQZYWNAQTV","object":"chat.completion.chunk","created":1773346216,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"provider_metadata":{"openai":{"responseId":"resp_0ba39c4cbf0914b60169b31da8cc048193995714a7063051e2","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1235703.983183,"endTime":1245068.347047,"providerRequestId":"req_8f7cb4a574204810bf7002b2921f4e25","statusCode":200,"providerResponseId":"resp_0ba39c4cbf0914b60169b31da8cc048193995714a7063051e2"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai:gpt-5-2025-08-07","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1235703.983183,"endTime":1245068.347047,"providerRequestId":"req_8f7cb4a574204810bf7002b2921f4e25","statusCode":200,"providerResponseId":"resp_0ba39c4cbf0914b60169b31da8cc048193995714a7063051e2"}]}],"totalProviderAttemptCount":1},"cost":"0.00637625","marketCost":"0.00637625","generationId":"gen_01KKHTQPSHJ5CM7TAQZYWNAQTV","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":109,"completion_tokens":368,"total_tokens":477,"cost":0.00637625,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":256,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00637625},"system_fingerprint":"fp_m0dg9o8dnf","service_tier":"default","generationId":"gen_01KKHTQPSHJ5CM7TAQZYWNAQTV"} data: [DONE] @@ -45,7 +45,7 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 408.927458ms + duration: 338.276375ms - id: 1 request: proto: HTTP/1.1 @@ -53,14 +53,14 @@ interactions: proto_minor: 1 content_length: 2299 host: "" - body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_tHpxKCS6xnVW3HBEkBww7S9T","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_qj0i1JW7dlNDPv5uNW5Tq6lO","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant","reasoning_details":[{"data":"gAAAAABpgJB6xgaIX4YGTj3EZimfLMfl7lZ7SJq0aBMWfGDeorXxt6sRPjllCKcFat69Q1kpuEDG1tvuIG_6OxUZHOP_noSA63nkkhTluixdSHPde3XgwYgrm01hBIphFo1ztgQMsVXZaqNGBJKfB35qJ7zSKEFXWcB6olUNA4UUXTup_nH8KrNf0_JcRd4JmIXeaQTTaNLYxeUNljoVsLun6RwBzKf2sDmMFqa8wdE5v159EsaN20EgWQnJGlWdyWEZBixffGM4cXbWIpmZRCv8TCy4dYMh3Nz8FQt7JbWJvCWQskP_b3AFm3TV-h8yUBFhdXRYAeZxtIZsBmjCZZtwDPGnKJ3tLtSnQ3PtlYFn1l0vvPgHh7mdmnhdbWtkUh3hQozmpwGYE5G0LE1XlEQ9KqdR6_ERfztdnbWnxJqAly_m5uXFu6ymcMDmZhkdFvRM1M8923TpttfrkNlzsQM2pzRyZYhATSrBz8eMgJY7me3UHXo3FlGnf0Capm2MNNLVytVv0mgqa8WEMhPzpuga1kbqKt884QqnjHgozx0DYM68uOwTOlMBdRSf6MCE5aqn4fYK7sp3_ZclUNtDr7cM8Pz5GJX3dh_py69qCStpAhptt0smksFcHGezX9zrDehJ9bPvW6gTK4aBKUAndr6SXQ22Boa0kRTo2YWU6mNMr0yNQomEoupdUvc5FtsJ6PiaOz7rTHDS10SCZAvSv0cE2rdVAmh_j-2uDfYkKBs_wPDiNSXCdmIBtO8w4QFABeZQut22nlPTA7a6zV2-GV5m_7FumT6mn92tVW39uuZaWLgJWqa_KADeWM35JQTHrzOOLz54vm4M","format":"openai-responses-v1","id":"rs_0023798544b250b9016980907aebec81948e9042e8de044015","index":0,"type":"reasoning.encrypted"}]},{"content":"5","tool_call_id":"call_tHpxKCS6xnVW3HBEkBww7S9T","role":"tool"},{"content":"6","tool_call_id":"call_qj0i1JW7dlNDPv5uNW5Tq6lO","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"call_NKBrzaRfgcLAkvIldhIYsqtH","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_RjOUujdrBGigQL7C1p7IpWtJ","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant","reasoning_details":[{"data":"gAAAAABpsx2pQu0135fKIHkL8jzcesZIQSXEkuC3AeouXns8sjKhd7HDX9f3r3n4jzIbOn1um_OpE-UfF3DB7cwCFUmjgZDKfpog00NVUrAo27YuYD_RU625vzTw0htih2CsVoPQx22pTzj5_GtCbFpocZl1X5VsBTBjk9Ca8rC3mmY1X5t_XShK155Wk_QFRNn3f8dbeEEnDkUGJw6AapPwA_Lrv1DMP_ENnVbyP-DhAjCZ45yAxzChDNJMP6LGMBs5ziR5NSfbfgxgGNIwkvYz97tCSuURIyAx30MIAFiFylmOrykJlYXt4mTHi-cnqg98itg971fC2xHymlRqtcITx5ujY7kQ9EWAPWY9LNTni8p6yklg-ADt3hY-QmmtzorKF4mLA5UZ21C9o2Rg0BZ8aaosWBBra0_Niy7Z_tkbdOmaisFQbP8cBwyJ2ALk1HVXAE1jXYmsky5xxDpvl2wMXAHQjDxU-Js56tu0pOXK7jr8oAEJFy9Gjjj3qQ0r9vvHExG74rtP2Q1pvHLs4xn-OI6hL2lhxVu-sljUybqbtnfbrqjBL5g18SZIZFEDY9fa72hBvQKYwBds5vzPD2eTUc7j9eDi8zB0Y1cANnNTFJm6f_6HJmsjOlpqL7gvuxrXlXW4c7pY_UKXkVzEIRvJZSHbaKzBzuATtx8Wu4HgJsVFNme7WwcJH2FfndNgd1DSZbcwYI9UBBXvaoOC0dAGAR9evQMlT_eW0i0k3BQWFPXQhU9t-DZpw2LWzmI4Rf87SDnZzUQ0t6ni7cIWCb1QPhkpdgYxeMJEO6GA857EPcyhO88cQfgR3ZGix_mIjARMnIiK5fd8","format":"openai-responses-v1","id":"rs_0ba39c4cbf0914b60169b31da9489c81939625ac8c4748812b","index":0,"type":"reasoning.encrypted"}]},{"content":"5","tool_call_id":"call_NKBrzaRfgcLAkvIldhIYsqtH","role":"tool"},{"content":"6","tool_call_id":"call_RjOUujdrBGigQL7C1p7IpWtJ","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -69,27 +69,33 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF38VW9EJPCTC0TED93SGM2","object":"chat.completion.chunk","created":1770033279,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_rb8lymwxwp"} + data: {"id":"gen_01KKHTR02H1JD24V076NHGMQJ6","object":"chat.completion.chunk","created":1773346226,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_vg2bpgwyp7"} - data: {"id":"gen_01KGF38VW9EJPCTC0TED93SGM2","object":"chat.completion.chunk","created":1770033279,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"Add"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_rb8lymwxwp"} + data: {"id":"gen_01KKHTR02H1JD24V076NHGMQJ6","object":"chat.completion.chunk","created":1773346226,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"Addition"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_vg2bpgwyp7"} - data: {"id":"gen_01KGF38VW9EJPCTC0TED93SGM2","object":"chat.completion.chunk","created":1770033279,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_rb8lymwxwp"} + data: {"id":"gen_01KKHTR02H1JD24V076NHGMQJ6","object":"chat.completion.chunk","created":1773346226,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" result"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_vg2bpgwyp7"} - data: {"id":"gen_01KGF38VW9EJPCTC0TED93SGM2","object":"chat.completion.chunk","created":1770033279,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_rb8lymwxwp"} + data: {"id":"gen_01KKHTR02H1JD24V076NHGMQJ6","object":"chat.completion.chunk","created":1773346226,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_vg2bpgwyp7"} - data: {"id":"gen_01KGF38VW9EJPCTC0TED93SGM2","object":"chat.completion.chunk","created":1770033279,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"5"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_rb8lymwxwp"} + data: {"id":"gen_01KKHTR02H1JD24V076NHGMQJ6","object":"chat.completion.chunk","created":1773346226,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_vg2bpgwyp7"} - data: {"id":"gen_01KGF38VW9EJPCTC0TED93SGM2","object":"chat.completion.chunk","created":1770033279,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"\n"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_rb8lymwxwp"} + data: {"id":"gen_01KKHTR02H1JD24V076NHGMQJ6","object":"chat.completion.chunk","created":1773346226,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"5"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_vg2bpgwyp7"} - data: {"id":"gen_01KGF38VW9EJPCTC0TED93SGM2","object":"chat.completion.chunk","created":1770033279,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"Multiply"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_rb8lymwxwp"} + data: {"id":"gen_01KKHTR02H1JD24V076NHGMQJ6","object":"chat.completion.chunk","created":1773346226,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"\n"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_vg2bpgwyp7"} - data: {"id":"gen_01KGF38VW9EJPCTC0TED93SGM2","object":"chat.completion.chunk","created":1770033279,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_rb8lymwxwp"} + data: {"id":"gen_01KKHTR02H1JD24V076NHGMQJ6","object":"chat.completion.chunk","created":1773346226,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"Multip"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_vg2bpgwyp7"} - data: {"id":"gen_01KGF38VW9EJPCTC0TED93SGM2","object":"chat.completion.chunk","created":1770033279,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_rb8lymwxwp"} + data: {"id":"gen_01KKHTR02H1JD24V076NHGMQJ6","object":"chat.completion.chunk","created":1773346226,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"lication"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_vg2bpgwyp7"} - data: {"id":"gen_01KGF38VW9EJPCTC0TED93SGM2","object":"chat.completion.chunk","created":1770033279,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"6"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_rb8lymwxwp"} + data: {"id":"gen_01KKHTR02H1JD24V076NHGMQJ6","object":"chat.completion.chunk","created":1773346226,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" result"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_vg2bpgwyp7"} - data: {"id":"gen_01KGF38VW9EJPCTC0TED93SGM2","object":"chat.completion.chunk","created":1770033279,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"provider_metadata":{"openai":{"responseId":"resp_0023798544b250b9016980907efc7c81948203b5d78adfea6b","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":3192786.860293,"endTime":3193009.179478,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai/gpt-5","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":3192786.860293,"endTime":3193009.179478,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.000345","marketCost":"0.000345","generationId":"gen_01KGF38VW9EJPCTC0TED93SGM2","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":172,"completion_tokens":13,"total_tokens":185,"cost":0.000345,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000345},"system_fingerprint":"fp_rb8lymwxwp","generationId":"gen_01KGF38VW9EJPCTC0TED93SGM2"} + data: {"id":"gen_01KKHTR02H1JD24V076NHGMQJ6","object":"chat.completion.chunk","created":1773346226,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_vg2bpgwyp7"} + + data: {"id":"gen_01KKHTR02H1JD24V076NHGMQJ6","object":"chat.completion.chunk","created":1773346226,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_vg2bpgwyp7"} + + data: {"id":"gen_01KKHTR02H1JD24V076NHGMQJ6","object":"chat.completion.chunk","created":1773346226,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"6"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_vg2bpgwyp7"} + + data: {"id":"gen_01KKHTR02H1JD24V076NHGMQJ6","object":"chat.completion.chunk","created":1773346226,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"provider_metadata":{"openai":{"responseId":"resp_0ba39c4cbf0914b60169b31db25b4c81938ba6cc3de21e4567","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1243850.788993,"endTime":1244848.245616,"providerRequestId":"req_e33036c09ec84d5997e63842a014076f","statusCode":200,"providerResponseId":"resp_0ba39c4cbf0914b60169b31db25b4c81938ba6cc3de21e4567"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai:gpt-5-2025-08-07","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1243850.788993,"endTime":1244848.245616,"providerRequestId":"req_e33036c09ec84d5997e63842a014076f","statusCode":200,"providerResponseId":"resp_0ba39c4cbf0914b60169b31db25b4c81938ba6cc3de21e4567"}]}],"totalProviderAttemptCount":1},"cost":"0.000375","marketCost":"0.000375","generationId":"gen_01KKHTR02H1JD24V076NHGMQJ6","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":172,"completion_tokens":16,"total_tokens":188,"cost":0.000375,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000375},"system_fingerprint":"fp_vg2bpgwyp7","service_tier":"default","generationId":"gen_01KKHTR02H1JD24V076NHGMQJ6"} data: [DONE] @@ -98,4 +104,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 315.780916ms + duration: 399.454625ms diff --git a/providertests/testdata/TestVercelCommon/gpt-5/simple.yaml b/providertests/testdata/TestVercelCommon/gpt-5/simple.yaml index 1fec0eebb331f02f3e7e2d1900755a0b200041dc..66e997e4c21ff4e4a9d66080883a134e51517686 100644 --- a/providertests/testdata/TestVercelCommon/gpt-5/simple.yaml +++ b/providertests/testdata/TestVercelCommon/gpt-5/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF3857W5E69F2H2ANCE2CYB","object":"chat.completion","created":1770033258,"model":"openai/gpt-5","choices":[{"index":0,"message":{"role":"assistant","content":"Olá!","reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABpgJBqe4UanBDshmkUO5UeBgKTle4JTA6JRhnoTGSFte1-ryTvUUbT5rmqGZ7FNrxFvny6dsrNnl1pd4YxeeFus-r67hkBoXsTVYnvct-B0l_CJHcuIZGAD0KSmHfXF0VozKzfZ8Lir1W5zaRJjS_o06nJ-YlqE-V__aYAPeSAhqdscK2B0AJZH4auLrNQolMQq-9d-A7SMnqComX-a1dpu8dZug7-EN9DrypPQqfrBg311Wf4Od2HNwmZS_SqAvOofhi6gkcN2p8MqSiWZNKJRDAJjC_cJsGJ-LQ3tmyPJEzclcMbjehRvjT_IDk0qKqEJqWLSLiDbTH6QaXvSTBQAaSUT8QB6_p42tstR_Jhelyhy1GSfYyny__5FrEmoqLE4sxu16Z1nEdE8MYvcJaUl0KT5Q32GziBMefLQQq9wwhcx6rXJUc29dt6xvntz__4w_kmJismJ8Etb1eVlSLtZwNGF0OyO6K7jar7EL93mbxjmpzu4olDI93EnyxiEDmpz6UOSjFbq-Ey5Kw8AL_L9TwgIMXgLrG-UYYXyzXRhyIL_hWAzMHhcyQs1cvm_RaDmCRC_zFGyKE3cd4QDxC4mnzru7vhWSykmT4A8VyBm57hhxk7wEFxz0_KDfnmrSCUxZiMwGVujBWY6BeqzNd-fF1OvLrYiTmyLzRql_mQ4ED6WeFtq3bFGfp4VdLqJ7Huzg7r0_7o5mQwQ3JpjWE_iay8JtHQfsFXuFCmH_VRdA604UOsuYLdnoGej4hES3jqECSwvJQQXNASQyJbQ2_uGsG1C56IlCzE-vDhqp2PShFoYvEDJ3_gb6TdgiF0ASS3NyFq5PIa1J2zTk3gRJnXkYGgO4kD_iHpkTKhn75LEFLOCuWb4DBpB8qHIUDPHU8odqcGLPjng7NKat7wp5PQGQRVJ_8ulRxyLf5_rP85jB5n_eNDg1MXIO7KALnJE0X9303JThanVo9c7hgvmgE_dbwNbmdzYasxIqYpTH524aoW4Pv3Py7C13Y4PH8WeWY5PeKoEEcyeleiBC1YO1G25JG1e91p-HcOcGWxGHzmln74j9H_LO16zqJias3tT4gRLAphcrHe-a6Ao7pFxwdut9Dw2Lg_79zGR5h5gjN8LBaCJSwMg-pcZ-V1_TAbFCjbeCYfze7ndt9OWOXjS2T05xKAal_21dveRfiuK7-6phUWQ7TgruezFhpPQXoOp8sXHpieyRR8K3_DYGm4qCFbtqUM_SReW2m7qr805a-C5OaDurcQmq--ex8ORV4y6YxD2pA0uriVy60L8vTwX3o82fIhjxvkBNsR1wwjb0puBzUfxX_hvLbbZ8SV1UeNwe0tsnCD0TOtTLczGreq3HkSy25_JQ==","id":"rs_0195d9d352e85fe40169809068318c8190b2bbf966d0dcd881","format":"openai-responses-v1","index":0}],"provider_metadata":{"openai":{"responseId":"resp_0195d9d352e85fe40169809067d3bc8190a9e940c7bf350bb4","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":435303.593243,"endTime":437939.710829,"statusCode":200,"providerResponseId":"resp_0195d9d352e85fe40169809067d3bc8190a9e940c7bf350bb4"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai/gpt-5","canonicalSlug":"openai/gpt-5","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.00168375","marketCost":"0.00168375","generationId":"gen_01KGF3857W5E69F2H2ANCE2CYB","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":19,"completion_tokens":102,"total_tokens":121,"cost":0.00168375,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00168375},"system_fingerprint":"fp_7r70i7ytcp","generationId":"gen_01KGF3857W5E69F2H2ANCE2CYB"}' + body: '{"id":"gen_01KKHTPR6079KRB242AQ8KAPH7","object":"chat.completion","created":1773346188,"model":"openai/gpt-5","choices":[{"index":0,"message":{"role":"assistant","content":"Olá!","reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABpsx2MXX5j5zh_wPv9wXKPsDGSrYu8F_Vjr48YrwKWZYWMoaf597jXbICNxgfAMZE8rc1tw0NILxdz9ZQW-OTJwMuIZ-Ha0sC9pWJNmPRBNBHfordRbvIc6AEa6EvX6ewExxsJZBgpE7l2sjrrwq8nOjkMr_maWw5ITHEMjHHlLc-swEcGCyF9wD4ng09se6Bp4uMwYUUHpUNQ7vfHvYj85U_8zYlaVwHGkttSOm-QRtxVVlf79O68KgmYpgmFBQ3-xjAD1gg4fIL-DZ9ZlgQS2B8b6pg25_D7fwNrHDdlkZoL1kDcaidINpG0j7GouWQFrm2cetbZF71IOj0jn4o3nAgG0cOlU0UEdscYdr1xsaxFHIT0KX7JY2zFxAUN8vtb7Md_2ZWitpzboBgzHtL6O1qjXugRcFhnTlf6I_StUFpcLprJChXh4-rWkOTyqWMWbuMhfxRu4orP4TOkHQPF76Xuf-Y8bcScbbl2Wr9ZZF_doqoPd9UhJRuJ3eLz2SG1Cqus_YlvUQmbFFGnHdPCCrweOLrLEUu91NUxGgFnjygNMYHjhflefOv0Whq7gJ6cbTGxZvqI3G_9ttzALhj_C6y4K8DRIBV9cRHWCYYzQOoxGctQnnQ_TUKE4J0eKbvjWe-UAG1-0FkWs3nLE9LWXRkTlulgK3y7jhdlr9go2EvsArFdLHv4jxBMKaod2FKeSB8Hgi-ol4EoDRQEIs0RBQYM-l0Wjw00zqBugGrwlO_QTfewjcfWZKXhWBxyL0Ja_IZah5QudsIXz5bm2QcZje0QSQbjLEew4AqenvRZ7oq-nPRlnC_wGvYwdROJQ4dIWmLqEd5E_xubQ68UZXFaZy5KVgLNFTJ-cIPSIcY3DEwHru-RGJmEEXelvyUS5wQwkMNXbVrtHMchmSPZrFazZdqwmtk_rIBznpORzS4NwK39siA68swi-UBhd_fZepGOkZGDYBWbwzTKmCXYVxhcLd-oRFjv_GuAtNzLUEyxBdBMx4HDDAwBozcef5h7UOq49td8nuMdeHrYd6ZpKf0_ZsHcbt2shouAt5wv7Ovor6eDL2UwSqcjgweSgv1Ev3irohJPgUkEWLAZOAkXUmwWRTiiVAqgiMCDOdX_4H-gB53Ea-UdmFQ3rdNgO0uXT_f5v_-_g6ZH1WuR1d7OSuK0RaqStaVfT8TOq0LBzLAavg8QbMmGfW0Ec_JgpjP2M8vvPfoi_ijkTG1lw8wMBFu8zSGWMkjIvHam8xc2Za8P9jQ-LD63ghVds3mJ22qR4AeoBqiznRLFpMJBBu8-sdav4wLmjXMBdMU8dc_-S10Qfo-qN2hF2VblrfOXd0GWV3tPjISN1s1i2U_BQ1chLbrTq03AFO-KX_m0f77tjai2y4ZKdI2prux3Eiq_AWvS8mG9lp1mBuA_sLQE5wdNdSx8WoOfsbpni5uPoZ27VyZGMyDI-U96gURcjDsEaGAgzVaBh0AN-MTw9I5rOOG9bYzAADWadWZzvsXyP_aR1MzuVf_roig=","id":"rs_008ebf5c29a30fb00169b31d89faf881979b0b0460b02db6b8","format":"openai-responses-v1","index":0}],"provider_metadata":{"openai":{"responseId":"resp_008ebf5c29a30fb00169b31d8976c0819780ba44f97c2cdabb","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":257240.555879,"endTime":260698.98202,"statusCode":200,"providerResponseId":"resp_008ebf5c29a30fb00169b31d8976c0819780ba44f97c2cdabb"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai:gpt-5-2025-08-07","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":257240.555879,"endTime":260698.98202,"statusCode":200,"providerResponseId":"resp_008ebf5c29a30fb00169b31d8976c0819780ba44f97c2cdabb"}]}],"totalProviderAttemptCount":1},"cost":"0.00190375","marketCost":"0.00190375","generationId":"gen_01KKHTPR6079KRB242AQ8KAPH7","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":19,"completion_tokens":124,"total_tokens":143,"cost":0.00190375,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00190375},"system_fingerprint":"fp_p2efo90h5o","service_tier":"default","generationId":"gen_01KKHTPR6079KRB242AQ8KAPH7"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.791494792s + duration: 3.675478166s diff --git a/providertests/testdata/TestVercelCommon/gpt-5/simple_streaming.yaml b/providertests/testdata/TestVercelCommon/gpt-5/simple_streaming.yaml index 620cf9ab29f545a6f6d683df496db838c7a639aa..9b296752c2a3fc7e206ee9e3458c495ca1687ac3 100644 --- a/providertests/testdata/TestVercelCommon/gpt-5/simple_streaming.yaml +++ b/providertests/testdata/TestVercelCommon/gpt-5/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,15 +24,15 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF387XY51D0GDDRCM6KB8NB","object":"chat.completion.chunk","created":1770033258,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_tmpp8eb0yq"} + data: {"id":"gen_01KKHTPVSAYPGBCBH3AE1FZJSQ","object":"chat.completion.chunk","created":1773346189,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_d3cprdwpgu"} - data: {"id":"gen_01KGF387XY51D0GDDRCM6KB8NB","object":"chat.completion.chunk","created":1770033258,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABpgJBr1JtCCwq4H63wpwrzBisIFa5cozvaVKPCSa_QKdqiKVGM1bH7JXlt53SbT0JsAPDQ_zh4dp6N57-9-WHBZGeFpXVhBWOVjECwI-Sx19ug89zVfZf0Xc7GmgO2C6uR35S0kkVN76bxn8_4ofEGjaGB_P-yjp6oLE4wLzAkH082bkzjww6Yv-2Hqw1FSJsdzCEIuf_FwQkoFPnRdBb5PPPGfyRnIAiS9lFGsMLEA1k8VpOfAWsM5q_UR_pJ8YAFK9MG8gPH8qsaG9rMZSLq5kPoz6lkbX3ZEsBcnpIzJLoYGIKRHPQFXehUxj1ml0hy38aNBv22zgZc0bvQUcM7dsnX-4iaNrUa2YskUJ7TPPuaHGR79KBIwfv0qqFiFDdaa38pJEM_-gAKIv2JcBoNZnui6bCEFNIcyTn-sDU9lhqfbXvFt7jnu7ZNV4kCqe8mhrC3x4V_n7ip2Gd_nA849tPiQmeGlMAgGUiBR3-dGOo-quuJp1nBWSiUvj5DisGkI8NlG_-lAPaVQQfjCc32bn3KY2Ch5a5RltI-DJuCzvpcrDkl4RZIeMoJfaQHUImhpmpZn3Y05ckwCdy1n0difkQIXPgNGcbVXLW5RD7xYDC375nYL4qHfbIWxjPjVv7Jsc8jMWjMhHWC_XCDdon4BhZ9LSj70ppMxkaxl3wgZW8o-s1xeSOM-AbviX_ZBjj63WfeTsUS24-tRDRmfbVSApDHbt7GVJMRr-7AsNZkvuDKMC-URk5Omp8eXJVzhaPnaQVhYPyh3jYmPHWbldKPiu6HZ2QZksn-tIM4M3rse2wJXf4ffk8rbBCcsJPIgT-R9cfq","id":"rs_04b3b5ea2112e2f2016980906b0aa4819087bc5b624622f5c1","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_tmpp8eb0yq"} + data: {"id":"gen_01KKHTPVSAYPGBCBH3AE1FZJSQ","object":"chat.completion.chunk","created":1773346189,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABpsx2NIyHMLvvhqDMglxGBZRK_M3CQWUX25R8u1hgnNEpn_LQlNHVzoLzz9ie3osFWaeC3Ir2KFj3FrAK7_Sunu_OKmNHGNJ9ZVdmI0rxYMld6yntzAGDuX78y4CepMxETrO66xcIcFdNuaWKwkBnPbf7Re7ZJRWfUAtLDZlluXjsJ3yYX1Ltng35Vl4oeNBjbjpy5wCQ6C7r3HD0IiJqtTCaiP5OtrLHeO3J9OiX032erzstj5bY5_U58GMjVxs1hjDnfGtUlhdI-gqOj_MerXPajZB2zQnktn50b2zydf_17p2lMXyK9G6tXLkGD-6zch2k81pWoiTt6Dn1jg6XaZUxX-FrjMpq9YP8pg6tXOnhjH8TOpxJfk8AzLVPnnV6hXr_QcLd3q2IMXfPrSnLUhEq0DumAa1PiLAoSZMwPt3GlDfFYLEenQ1UwAbdnoH1kUdyvVqK8E7-99vAX2A05lE8aZIK24g8X4WmZpUn7-13yfSh0qkj1fqIbuE_xf5BcKg84rUD9ZoF-o0X7gJg1VyT4wHuSn4mlMuCnb37HYMbqNYYVaJXyUpODppqZedaA4h6TGbOkfBOfB1UeFI37aiDWlFh-vN7bU9P8at4CJN8HU_2tgIdsoa7WoYG34dmgy3s6ti1EO2AIqZfyL85UpDRwIE1Gj92PPu3c1-GiNi_MLiVTtUq8c1I6DU_RKLKzv7C9II_rHRhFig0fxhITMFC5wxKt-tcMDUmokLYJInoPJqdinbtI18fxKDCxcVU8162Qn0Env_jazBoM9mqWEad7veHPvhnLtYi9ckppA3hROp0HVUwErRCPgMgOwKe4n4nq","id":"rs_0123852b10b5a0f70169b31d8da47c8196837a722f3072fd78","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_d3cprdwpgu"} - data: {"id":"gen_01KGF387XY51D0GDDRCM6KB8NB","object":"chat.completion.chunk","created":1770033258,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"Olá"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_tmpp8eb0yq"} + data: {"id":"gen_01KKHTPVSAYPGBCBH3AE1FZJSQ","object":"chat.completion.chunk","created":1773346189,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"Olá"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_d3cprdwpgu"} - data: {"id":"gen_01KGF387XY51D0GDDRCM6KB8NB","object":"chat.completion.chunk","created":1770033258,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"!"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_tmpp8eb0yq"} + data: {"id":"gen_01KKHTPVSAYPGBCBH3AE1FZJSQ","object":"chat.completion.chunk","created":1773346189,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"!"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_d3cprdwpgu"} - data: {"id":"gen_01KGF387XY51D0GDDRCM6KB8NB","object":"chat.completion.chunk","created":1770033258,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"provider_metadata":{"openai":{"responseId":"resp_04b3b5ea2112e2f2016980906a921c81908b97d5d38611d5a6","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":356384.393513,"endTime":356580.787605,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai/gpt-5","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":356384.393513,"endTime":356580.787605,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.00148375","marketCost":"0.00148375","generationId":"gen_01KGF387XY51D0GDDRCM6KB8NB","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":19,"completion_tokens":82,"total_tokens":101,"cost":0.00148375,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00148375},"system_fingerprint":"fp_tmpp8eb0yq","generationId":"gen_01KGF387XY51D0GDDRCM6KB8NB"} + data: {"id":"gen_01KKHTPVSAYPGBCBH3AE1FZJSQ","object":"chat.completion.chunk","created":1773346189,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"provider_metadata":{"openai":{"responseId":"resp_0123852b10b5a0f70169b31d8d26dc8196acfcef1f6661971c","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":339172.831454,"endTime":343701.441793,"providerRequestId":"req_a95d4a6ae87f43039a41e071547bd85f","statusCode":200,"providerResponseId":"resp_0123852b10b5a0f70169b31d8d26dc8196acfcef1f6661971c"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai:gpt-5-2025-08-07","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":339172.831454,"endTime":343701.441793,"providerRequestId":"req_a95d4a6ae87f43039a41e071547bd85f","statusCode":200,"providerResponseId":"resp_0123852b10b5a0f70169b31d8d26dc8196acfcef1f6661971c"}]}],"totalProviderAttemptCount":1},"cost":"0.00159375","marketCost":"0.00159375","generationId":"gen_01KKHTPVSAYPGBCBH3AE1FZJSQ","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":19,"completion_tokens":93,"total_tokens":112,"cost":0.00159375,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00159375},"system_fingerprint":"fp_d3cprdwpgu","service_tier":"default","generationId":"gen_01KKHTPVSAYPGBCBH3AE1FZJSQ"} data: [DONE] @@ -41,4 +41,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 284.897458ms + duration: 505.86125ms diff --git a/providertests/testdata/TestVercelCommon/gpt-5/tool.yaml b/providertests/testdata/TestVercelCommon/gpt-5/tool.yaml index b1ffe90a9d3154d2930e3a94b01f303ed67b8c4d..f45e026cdcc2713e1cc9f5dd7acab37bef4f0363 100644 --- a/providertests/testdata/TestVercelCommon/gpt-5/tool.yaml +++ b/providertests/testdata/TestVercelCommon/gpt-5/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,28 +24,28 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF389FA00FX9W76TJBD2FY0","object":"chat.completion","created":1770033261,"model":"openai/gpt-5","choices":[{"index":0,"message":{"role":"assistant","content":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABpgJBt9rDWBVUu57Qp4eDPgvhNl_yejTP7GQIvS9aR9c0rc2udBHMKWf6Lov1QwiEeQbCc8LROQ_SbUEvfyEl-9PofdGalnrJON5sqNjhFmugyAnTzQwIbCLzHhViPQYcKTeDxYUNkLO-WUzh9UcgCE3H9-JaGFMFgvpEtK2izjoSXQAfcM4N4TpIjSZVLKCARs9L3jzHHdIMx1God2c7H0MErV3MDZ_7J_xlIDaVOQPKOOMzVO6EjBEWH9TQn_C3f2h5bm6YphGwIfcI7TxOmQVmf7NV0r9e5Tl0v2NQ6L5alFvBllJiKLOsmO6jShYoPT_i119sexG8bSw0w8qqlOvJJxA3nSmKgimH9TJXIynwqntgKw2sf3TUov2ZcXBXuuWEvwwuzvJZ-IblbQ4tp3voRndpGGLL5RaUAnVJxsawXAC7ghykRDhuqBywJVrc0HuNZKsl0qLjEi22IYXAhdbVerM84pD1IMgA-9XbzPryB6R6vvwk6UBQH7H35sSIywXRK0pWMJftKwUIfh87K8iPyt2sdvdxFgeCv1zygTwsvRNIyxrdLznmOlPPEmgeapkBzXMnpnhkIDRkm0q1owi849hYpArAr5dP9KonpVSkJEx_hO4Nu125WOtKG6kt59lWzVy5ntGaQbQx0Y9Ekg-YrVAt0MRBDTHbyYFvg01tRDT5qX7RTjVrxcnBJaS4jiHsE3ThGQCvlyUKDLrBD891lSuLZHJ-b_WDXiAZW63-INaU6dm7rkw0-kCCg6f02WEiTbwrUI3la4iJ_OHvO5dX8HMzO566TT_VPay9vmSAzBcO9vYyJHqAahlce6fc8HSC6yM4FmArFa7fAI24qzACBtcwPZGufHi6SvIarOzZ_Hqhs0K1707Jlm8Nad1QR-mSS4dhXCAWyFuF7uyAA9TrsmKQHIUPXQH3ohsYNkJ-MJwm168NoHL0_Bj2j00JLENHX1oK0iUQLFy2RasyOO6-ChpeYo4GCPxbXkXRNMst9RdOwswtqZKS9lKa4mSrV8_-rlb4exerAjDg2YPPoMSsXEZEZt1BmtnA_xEk2Ba9FhOw6p8n2zakljygABYj__RQ7pwvQZL9AQdpzrDu4eiYkl538d02K0It_d39qaUF-MQVNIqUv40OTI17kDAUhq9MFcYquHywFRcBzS2h0L5siHwieTqTaCPk9LEJwen2JlDWeXovmqX-bxuByh1TNemfkHKSG4lDhIW8Jg2wcilnNEuvvMRmVEAPDen8IaOiP3-S3gjXPv2wqrpG_HD4-XxjugEB0lTmtEn-tA-8jBTTG__H4kUjAv8gX94FW4QYmA9x-xKJwb8mVI_f9xTUMgmx7OsBXoGY1ddAmKfNA5dN4wtTYwKUIoj_VQ9LpXK86DNVlIuT-OaRE_wjLPxnUc0aTXGUUUQJNhmzLRa6xLeyw1A==","id":"rs_0c750dfa299f673c016980906c83288193a268c0d2c594d1ed","format":"openai-responses-v1","index":0}],"tool_calls":[{"id":"call_Rpqo15PMdWRph6Je9FbyRkrP","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"}}],"provider_metadata":{"openai":{"responseId":"resp_0c750dfa299f673c016980906c2e748193aacbf2a1a14f5495","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":4677952.648505,"endTime":4679832.007624,"statusCode":200,"providerResponseId":"resp_0c750dfa299f673c016980906c2e748193aacbf2a1a14f5495"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai/gpt-5","canonicalSlug":"openai/gpt-5","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.00185875","marketCost":"0.00185875","generationId":"gen_01KGF389FA00FX9W76TJBD2FY0","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":63,"completion_tokens":114,"total_tokens":177,"cost":0.00185875,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00185875},"system_fingerprint":"fp_4kn76nn85u","generationId":"gen_01KGF389FA00FX9W76TJBD2FY0"}' + body: '{"id":"gen_01KKHTQ0CJTY0140JR88RN7YAK","object":"chat.completion","created":1773346197,"model":"openai/gpt-5","choices":[{"index":0,"message":{"role":"assistant","content":null,"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABpsx2Va4wvGFY7powe3oKGIz8wsphbF8wA7jVDY4l2kdJzCFr7JWCvKeH6tmagRQlNjWnE2NNeGAOYzmPnBOOWiF4VqV8g7tU8nFznCveIboY_urduTLeegsFAcN-i03_pgpC-IjPs_V1u4mIqlOrOixHIGJLHUIHU23ToeDX6sQhVyMz7-2aXJBY3Z90E3UNHX-yunTq-iO5UnmE4ywEL1B1XNwfENnKIBRmWycJv1EOW0c-z3bv6yR51AW0ROrtw5SewVr3eJo_eY5j7-xEdNxUy9LpaMJPaNTIMcSSbPFrt_JUmK0XExEdzh_QBmAf2vZLXZTXwBv4vnAovBfKUox196bdqGgLvWmsvBgfSKwa8NVa5ci5MNJAp97bTFoYY0wGgIZ_P-Ao31csmwu1wn5NCkpkE4jIrF0Yfgp6nRRDnZLueHZIPGO6xeck0PGb6j8Iiqr-rFg_s6ZzNTj4B3jO1zHMsJc4PdbWqMGoo2EqD0Z5715WetcTf3-3qBeiViD78GQBF417ubelNwFePwIox419BvaYiCww5NM_WOJUXH25ESotFh30JBeLdHBsGhLenrO_Dp84uj0BfS4tlltzm-RZWlRKalhKgyk3mImLJU6ap0CrnvUSNeF2SltCOWGd1Obxc-x_8QBTL540hQQpKlH1JK_yGUryU9_P01wj4Gx3JW4tRd9irwAF94BhurdNfmF3VmojuaWqPgfwZX2huANHgozWdpOn_8mRrKNwmXu32PRSNzunR5Lb4fcBx22XR-srpa9oRKvJX6FoC3cDhf5BR712tHsfrL98PT22SprdKrbpj_SmMrQt1xmR5pfb6zsgtccSzA5lgO5gjRgft2-iD2Nl8nYZrBhtNJ0cwZClOJAs2jqRAvGuyprwjxh47wIUw7kPlOqBQ22lsyUWMtZ30Clk3jQ6eKIQ_UXbaGEqsrjr1K8pFLUM9LZamHTmsZ2GSq3OQhG0CJKoCaMd4rW00Y_oayh4f-gaLJMQUjyPMvhUGxL2edP029UIbo8_p_mwNgouD-ZySliqgBpE-7GtS9GcJFOYPuqJdm2ojhd4dEBOkv4JC7przRmgjrXAv12DZ_Bmvpg10S0BIzauOWf8oxIKt8zYmB8WoGio47iRMycoDuytf7up_Uwn-Kyaa_iSchdREy8i1JekmHlyZtcUlvL5IKSFd67u82bhNxJXq2ojfO_oFHDTpIvb1TH2I1_94IAzh10rg0T3zOx9Gac91OKVWwIxQvBxtR--lp_Cdvc2G39ro8gbUqzi3PUEIopgOvQdeVQGhgHTFVj4gUGMxGmz0q3SQRwJFR-v2oKwv4l4egDWqhF-RR6WXDHPcy-XmNpBgvi5GboodDuEs0UGxd2Fn7O_nhH6yp-ObfnrFnbLDzs8UVOsXvwDhDqLNffPpiefSdNbNyUB38TLXrcUReN8F-ujibY6WYk8DLpgAHgPRTfSRKbU9zPlc7iZU6erF31_37Sk8ciMVtKw9ecCeZozm4Jsx70jsjN1zkfw=","id":"rs_0db9d6348a03ce940169b31d9262788190af880d148e48099d","format":"openai-responses-v1","index":0}],"tool_calls":[{"id":"call_AoJljp4UK0bvFbTCY7Fk80CO","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"}}],"provider_metadata":{"openai":{"responseId":"resp_0db9d6348a03ce940169b31d91e4508190a9c736e9e09fc659","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1212778.214971,"endTime":1216138.899976,"statusCode":200,"providerResponseId":"resp_0db9d6348a03ce940169b31d91e4508190a9c736e9e09fc659"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai:gpt-5-2025-08-07","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1212778.214971,"endTime":1216138.899976,"statusCode":200,"providerResponseId":"resp_0db9d6348a03ce940169b31d91e4508190a9c736e9e09fc659"}]}],"totalProviderAttemptCount":1},"cost":"0.00200875","marketCost":"0.00200875","generationId":"gen_01KKHTQ0CJTY0140JR88RN7YAK","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":63,"completion_tokens":129,"total_tokens":192,"cost":0.00200875,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00200875},"system_fingerprint":"fp_m166kuwmda","service_tier":"default","generationId":"gen_01KKHTQ0CJTY0140JR88RN7YAK"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.189340917s + duration: 3.541367833s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2326 + content_length: 2410 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_Rpqo15PMdWRph6Je9FbyRkrP","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_details":[{"data":"gAAAAABpgJBt9rDWBVUu57Qp4eDPgvhNl_yejTP7GQIvS9aR9c0rc2udBHMKWf6Lov1QwiEeQbCc8LROQ_SbUEvfyEl-9PofdGalnrJON5sqNjhFmugyAnTzQwIbCLzHhViPQYcKTeDxYUNkLO-WUzh9UcgCE3H9-JaGFMFgvpEtK2izjoSXQAfcM4N4TpIjSZVLKCARs9L3jzHHdIMx1God2c7H0MErV3MDZ_7J_xlIDaVOQPKOOMzVO6EjBEWH9TQn_C3f2h5bm6YphGwIfcI7TxOmQVmf7NV0r9e5Tl0v2NQ6L5alFvBllJiKLOsmO6jShYoPT_i119sexG8bSw0w8qqlOvJJxA3nSmKgimH9TJXIynwqntgKw2sf3TUov2ZcXBXuuWEvwwuzvJZ-IblbQ4tp3voRndpGGLL5RaUAnVJxsawXAC7ghykRDhuqBywJVrc0HuNZKsl0qLjEi22IYXAhdbVerM84pD1IMgA-9XbzPryB6R6vvwk6UBQH7H35sSIywXRK0pWMJftKwUIfh87K8iPyt2sdvdxFgeCv1zygTwsvRNIyxrdLznmOlPPEmgeapkBzXMnpnhkIDRkm0q1owi849hYpArAr5dP9KonpVSkJEx_hO4Nu125WOtKG6kt59lWzVy5ntGaQbQx0Y9Ekg-YrVAt0MRBDTHbyYFvg01tRDT5qX7RTjVrxcnBJaS4jiHsE3ThGQCvlyUKDLrBD891lSuLZHJ-b_WDXiAZW63-INaU6dm7rkw0-kCCg6f02WEiTbwrUI3la4iJ_OHvO5dX8HMzO566TT_VPay9vmSAzBcO9vYyJHqAahlce6fc8HSC6yM4FmArFa7fAI24qzACBtcwPZGufHi6SvIarOzZ_Hqhs0K1707Jlm8Nad1QR-mSS4dhXCAWyFuF7uyAA9TrsmKQHIUPXQH3ohsYNkJ-MJwm168NoHL0_Bj2j00JLENHX1oK0iUQLFy2RasyOO6-ChpeYo4GCPxbXkXRNMst9RdOwswtqZKS9lKa4mSrV8_-rlb4exerAjDg2YPPoMSsXEZEZt1BmtnA_xEk2Ba9FhOw6p8n2zakljygABYj__RQ7pwvQZL9AQdpzrDu4eiYkl538d02K0It_d39qaUF-MQVNIqUv40OTI17kDAUhq9MFcYquHywFRcBzS2h0L5siHwieTqTaCPk9LEJwen2JlDWeXovmqX-bxuByh1TNemfkHKSG4lDhIW8Jg2wcilnNEuvvMRmVEAPDen8IaOiP3-S3gjXPv2wqrpG_HD4-XxjugEB0lTmtEn-tA-8jBTTG__H4kUjAv8gX94FW4QYmA9x-xKJwb8mVI_f9xTUMgmx7OsBXoGY1ddAmKfNA5dN4wtTYwKUIoj_VQ9LpXK86DNVlIuT-OaRE_wjLPxnUc0aTXGUUUQJNhmzLRa6xLeyw1A==","format":"openai-responses-v1","id":"rs_0c750dfa299f673c016980906c83288193a268c0d2c594d1ed","index":0,"type":"reasoning.encrypted"}]},{"content":"40 C","tool_call_id":"call_Rpqo15PMdWRph6Je9FbyRkrP","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_AoJljp4UK0bvFbTCY7Fk80CO","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_details":[{"data":"gAAAAABpsx2Va4wvGFY7powe3oKGIz8wsphbF8wA7jVDY4l2kdJzCFr7JWCvKeH6tmagRQlNjWnE2NNeGAOYzmPnBOOWiF4VqV8g7tU8nFznCveIboY_urduTLeegsFAcN-i03_pgpC-IjPs_V1u4mIqlOrOixHIGJLHUIHU23ToeDX6sQhVyMz7-2aXJBY3Z90E3UNHX-yunTq-iO5UnmE4ywEL1B1XNwfENnKIBRmWycJv1EOW0c-z3bv6yR51AW0ROrtw5SewVr3eJo_eY5j7-xEdNxUy9LpaMJPaNTIMcSSbPFrt_JUmK0XExEdzh_QBmAf2vZLXZTXwBv4vnAovBfKUox196bdqGgLvWmsvBgfSKwa8NVa5ci5MNJAp97bTFoYY0wGgIZ_P-Ao31csmwu1wn5NCkpkE4jIrF0Yfgp6nRRDnZLueHZIPGO6xeck0PGb6j8Iiqr-rFg_s6ZzNTj4B3jO1zHMsJc4PdbWqMGoo2EqD0Z5715WetcTf3-3qBeiViD78GQBF417ubelNwFePwIox419BvaYiCww5NM_WOJUXH25ESotFh30JBeLdHBsGhLenrO_Dp84uj0BfS4tlltzm-RZWlRKalhKgyk3mImLJU6ap0CrnvUSNeF2SltCOWGd1Obxc-x_8QBTL540hQQpKlH1JK_yGUryU9_P01wj4Gx3JW4tRd9irwAF94BhurdNfmF3VmojuaWqPgfwZX2huANHgozWdpOn_8mRrKNwmXu32PRSNzunR5Lb4fcBx22XR-srpa9oRKvJX6FoC3cDhf5BR712tHsfrL98PT22SprdKrbpj_SmMrQt1xmR5pfb6zsgtccSzA5lgO5gjRgft2-iD2Nl8nYZrBhtNJ0cwZClOJAs2jqRAvGuyprwjxh47wIUw7kPlOqBQ22lsyUWMtZ30Clk3jQ6eKIQ_UXbaGEqsrjr1K8pFLUM9LZamHTmsZ2GSq3OQhG0CJKoCaMd4rW00Y_oayh4f-gaLJMQUjyPMvhUGxL2edP029UIbo8_p_mwNgouD-ZySliqgBpE-7GtS9GcJFOYPuqJdm2ojhd4dEBOkv4JC7przRmgjrXAv12DZ_Bmvpg10S0BIzauOWf8oxIKt8zYmB8WoGio47iRMycoDuytf7up_Uwn-Kyaa_iSchdREy8i1JekmHlyZtcUlvL5IKSFd67u82bhNxJXq2ojfO_oFHDTpIvb1TH2I1_94IAzh10rg0T3zOx9Gac91OKVWwIxQvBxtR--lp_Cdvc2G39ro8gbUqzi3PUEIopgOvQdeVQGhgHTFVj4gUGMxGmz0q3SQRwJFR-v2oKwv4l4egDWqhF-RR6WXDHPcy-XmNpBgvi5GboodDuEs0UGxd2Fn7O_nhH6yp-ObfnrFnbLDzs8UVOsXvwDhDqLNffPpiefSdNbNyUB38TLXrcUReN8F-ujibY6WYk8DLpgAHgPRTfSRKbU9zPlc7iZU6erF31_37Sk8ciMVtKw9ecCeZozm4Jsx70jsjN1zkfw=","format":"openai-responses-v1","id":"rs_0db9d6348a03ce940169b31d9262788190af880d148e48099d","index":0,"type":"reasoning.encrypted"}]},{"content":"40 C","tool_call_id":"call_AoJljp4UK0bvFbTCY7Fk80CO","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF38BGEDFPFYA0YSVGK53PZ","object":"chat.completion","created":1770033266,"model":"openai/gpt-5","choices":[{"index":0,"message":{"role":"assistant","content":"The current temperature in Florence, Italy is 40°C (104°F). Would you like a forecast or more details?","reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABpgJBy04wiPgHZlcnRtMeJdCXiXkMzEOjA4bYMCrCHqVuCdI7vEDq8PlukdtI96JyxomTXvXxRPCIzKJdzHSXR3OLLYvNzwfNDgNQ1dW4bvh69vQpp54zP4Dhs57GgfsfZAB7q9RB0Kg-6eJD86w2NsGfTIO2ITYeN-_Y5Bqeg8rOb4V9XK1pf-bLaeZsL4uBfvriH8M_uL5nEyaaZupiXTiZfv0A6Lb-lMWH9SS0PPy5LsSx0H_w-4OR8G6J2isU7-bG12BGklNspMvMmtj5JWmZbgbb-JHvR_NO7p--3Q6QCQzg088E_Uh1lQTqvnX3AffKuPJNgxVaiivOQwZXXLEG0NYULjeB20PNsMBVTi_OF4frTljlCvvTzecAd9iaeIECwDBEJDEgqTQefE0linoyLBeey8kD6DIweziBNn8ezoWU7ACiWCqz8FtB0smGue1W949AEmHfRizTjaqEbVpUiW3CA4aVp3eNZiu1XbE3b514H7XMG-6SBBohs0YfPdlTIez7To3Ptzv2x0t7KPiPZi7uDYTscYS1AWdTeB7LJRoLy3mO74Jmq0w0ZnSF3U2zu7-cHkyk6_x1R66bH8uLTtuQRzmyZtef-7T8QGt8k_belGqnRr9o9rdvLp80rwEjjwwPK9lIcR_mA1XDZZHEqoNWOQKINWxwwrjypgRDwSxs_FI3zi-OviKBsFe8YJTn3sJx1ppVkoBU-czhIfpfeF1wqjgGxIIcGGXm8wVXGqWG1Nm-AZwNLxnf34CfhcBddIL4lbPwMa39aaGYGU2qc9Qj8egNg7Bzk0wysMxC4ttsQSpcGM1CXVuyYY9nKiNybsbFQGSB6S32blf05IVD6J1WRqRWlQjJ-doPxmRMqKkXVWOuLN6jHpjAVhtQt2a2jMOvzkuj1bkmrxwLZ6HVKdFEgTN1tVRZ8URSvN3KAQxkOmLr0qPFjqEocjCM8CCTvWSZPbEGTKmHGZBqWFRkOTTC9r0XL_NmeDPZ8x9IfRRTjHg4lJpMixQyrTpgqUHJ_YWgo_jQGFWGntrj8YVfTaOjJmDXigBb2eUr22Tu72U8sBFURrBFDvXQvrL_gbgP4KifJ9ablHQ5M7k2W-I1wD9SgW77LZYYtsDdr_bv1tLIv9zn7tien8eAv1RQN4cICC8yJSnd_8RpzVnpVg6ZyDHOMRL9fU5URSQvtl0ld8c-Hu46NRTR_Ua6b1bIrCVswrbFF0j1tvEA3UBKnuN92LNavwOlu_N7AAPy0tmSvTk0bxfuus3AHDMAEzeHbQBH2OclogxZcfnrm1dXk3ee24hksoxJjfMVTzRBaVPssUCN_ZLzu1T6GwQ4YCdMl2QKX1KWz9ONt6zDNjvkhbZKGYod9E0anXx91NMzhIwou15N1USmduEuklufFN6adsQDWyJ_dK-mS1tlVI9GcDVNnbRUbHvtNui2qwtCzLGxyY82blpFO6dZRjpzY1YRtqo9QA-3MXT1J1mwPmnP2nQh8x5DQPZ-wxs3TcC0DuPVhu-pWmc1RyUtrri3vUy6evRKkezMqybI2zSibyq96ORSAQfB6jZmkyGCNj_w3oCEgYpFJRpPdK42z7SydPItcHGyTbFIE72QqD5lbMA37vCx6iCN38tTUNRYhmeXcKAot9wN5TZ_zNs8TY6BbW1PaIGnPumEudzJCFZhlwPkN6_93U57l23S0chlyA34JN7JMrjI3gVyI0WYFY6IrgQzknsiwpmMAqi9_RQaY6wgVBHadORhAufCHOvq-Qgrcbzpgppuc6zWp7qpc-PACaXLdG2HBvD_whxNmKjaW8b4sUu0IEhHv4esQ4Cxdurb6PAsPPRyUqAyfYX3uYKePFCSGe_Gv6Zss6Lbd5hp0GBvLoVdCxa_81e0EH62Oi5OzbiUpWGY1717a9l6SepkbpbyYnllAMuNGI8whTOBJrDXNR85-lNMSEfVIg6Pjw7Imle0jFkZX1ASfHLXCta9elSYiw7pYIzW67aO3DUacyqKYUxEqO2kVWtcllcO1-_s3rJzKAM4_Qp7A80_0B9X1CfkEKWKLpdJTjfeAiMKtqOTEs0IXngkbaxppW6KdxBsj5bhGCTAXhq_yXeCkBei_aVteFzK2BO1vvLlUhMysIzxs8CLs1YLdAA6vO2dEznTujNxz9Rc=","id":"rs_0c750dfa299f673c016980906e9f1c8193a6477099ec37fe1e","format":"openai-responses-v1","index":0}],"provider_metadata":{"openai":{"responseId":"resp_0c750dfa299f673c016980906e3c00819389d21d48153004b1","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1368084.873343,"endTime":1372326.249053,"statusCode":200,"providerResponseId":"resp_0c750dfa299f673c016980906e3c00819389d21d48153004b1"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai/gpt-5","canonicalSlug":"openai/gpt-5","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.0045725","marketCost":"0.0045725","generationId":"gen_01KGF38BGEDFPFYA0YSVGK53PZ","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":186,"completion_tokens":242,"total_tokens":428,"cost":0.0045725,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":192,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0045725},"system_fingerprint":"fp_4lohj8xzuj","generationId":"gen_01KGF38BGEDFPFYA0YSVGK53PZ"}' + body: '{"id":"gen_01KKHTQ3TYGHA6QQ996QJ1Z7AA","object":"chat.completion","created":1773346201,"model":"openai/gpt-5","choices":[{"index":0,"message":{"role":"assistant","content":"It’s currently 40°C (104°F) in Florence, Italy. Would you like a short forecast or tips for dealing with the heat?","reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABpsx2ZevGiCVbvGP4-CangVCwbJl8h-s639k0sCjD2cWJoi438obovCRIshHX06gW7RWoZmVaheMiarXFaFD6Yisvd4lGqZxzFhNwuDvq66aciifVR6lAf223HoVjbYONOxtnrYAc3UdWVm03-6QYj-NFnf_q834kwioKkpVa-5ehQTHkKSIA9iQ_qL8LjcnJ6ba0g94zJjtGp8OwNuHj384J3_8fIGIsO4WUCocPBefZ12n1RDXig9SszTbB5UG0ZshMSMtdWPUOv8CUu1aZayaWmNNwe49lqa2yFG96pfocTJMmvpEt_b0D7N2XFSxDogxRH4Gf8t7lFWT52FaBaqLrsY0aKQ6xxlyhsuJ27KR6JqHEc_L_43ZzJTLJnGZSRO_42LJu3lyTSvxn_oBlyD0cMKsbMyTlLv7NQSVcajw54YlnSSFatZY_lG8EoBBqvDCwBrJn1TkEvmllJcNGGylyQhIjdB4mwck2yRMxxSVmDWUelZkInlRKupxEj0H3EOrH263ykoPVuN1VXHGMlRF9vOOQYrlye283cfu4FyBRTEuNm98wEUW__AuRt0KzWcAGawfh-woKue-crosoKg1OSAvh-HfxNdbBMYyZ2FeH-nA5wTavIhJVYDSvOAKCveROl8LCXL8uT-8Hd34nJG1efzZjt74YypavV58o3QtfH_rPCSk-tJ04cU-0dr0dvjTQE0ZhxjMqmoszc-9UsjUhnP7FsRk0FeZw789quu6abu4G68xop_nV5RIUW1hDlK64OokTUz0Mmk6iriLxAnIxvi23oAp7ircGEXnhFB2Vf6W6HxQz5QHdKbQ6PB1N38sH5V93mk2M_yGhqgBLxTDv3au4ve91kviNhplzEZgBnfA44MQQlhGHDikTbT7GUjJP9H36MA4edUdtF50X7fn9mcqCLvBLR1_1xxdMgdGfVjrnzyu6pakgdzFkaqJ7yTwAIqXmGGPTIEEiRNdMCGcsz8xZuitKqHkvIkjsavATugaEAw4VWBudQ3xH-bx8RiQ8fcXiW5sydNae8b4xP57tnqKmrOcJn0-gabtl239kllkQKNMt8JbaQbzOaFMnmKBMFNHJ1x2OIY5MfNHrIihRdKfDytKr_wzDub95ko3aWx7wSk7A_bNYXdx-NPfddlEpi9NC_HHay4xYpDIwYppiHACl-2a7W5UDfZ_9C6r4hQJoAuWNH5xf2jRrfI3KJrE6uPxgT406RjqJTtMwKYc43GfgZKgC_a-O9ZJgtnP6Jn4itpW06Sw01jnxT9HVyWHrIApk1xa1322O0ZX_KjkmUQ5GWu04hC3FP7wl3AN-EaiP5UEheER2AcjdHIglFZnZ-AgyYksAQlm11fcUcDYkYU5hFzxB-vZKo7nh9RB30jlHfnUAfe8A_dyGoTNaTM-IwneAoYHe6xsV5nM04pCOwjh8UaMpPpte8W4PtFYDFHwX7_HeNcAuCeNSKKGPV8PQz3-PpuGAyxRXTO2DH42UXFJky_JR_t1Ag7ANjR1HtTlEWc5nyV3x4XcFF8BM7EGIju5CTH_8EI7fDwZDI03gNBA==","id":"rs_0db9d6348a03ce940169b31d95f9fc81909c0506a3f32d8fa8","format":"openai-responses-v1","index":0}],"provider_metadata":{"openai":{"responseId":"resp_0db9d6348a03ce940169b31d9570648190be551b5812db89cf","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":844644.532921,"endTime":848866.673993,"statusCode":200,"providerResponseId":"resp_0db9d6348a03ce940169b31d9570648190be551b5812db89cf"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai:gpt-5-2025-08-07","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":844644.532921,"endTime":848866.673993,"statusCode":200,"providerResponseId":"resp_0db9d6348a03ce940169b31d9570648190be551b5812db89cf"}]}],"totalProviderAttemptCount":1},"cost":"0.00249125","marketCost":"0.00249125","generationId":"gen_01KKHTQ3TYGHA6QQ996QJ1Z7AA","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":201,"completion_tokens":160,"total_tokens":361,"cost":0.00249125,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00249125},"system_fingerprint":"fp_93qjt7xfq2","service_tier":"default","generationId":"gen_01KKHTQ3TYGHA6QQ996QJ1Z7AA"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 4.324064375s + duration: 4.432285375s diff --git a/providertests/testdata/TestVercelCommon/gpt-5/tool_streaming.yaml b/providertests/testdata/TestVercelCommon/gpt-5/tool_streaming.yaml index 1b7e34bb5dc1ff97e3bc648d4b1a893862bb0aa7..9e06865b66b1b5abd844ce0bec993a99b241faeb 100644 --- a/providertests/testdata/TestVercelCommon/gpt-5/tool_streaming.yaml +++ b/providertests/testdata/TestVercelCommon/gpt-5/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,29 +24,29 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF38FRCNWV564Q8599HRRAW","object":"chat.completion.chunk","created":1770033266,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_147br1mgel"} + data: {"id":"gen_01KKHTQ85GD6CXP31EJTEPPJSR","object":"chat.completion.chunk","created":1773346202,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_zjw0mgcpqr"} - data: {"id":"gen_01KGF38FRCNWV564Q8599HRRAW","object":"chat.completion.chunk","created":1770033266,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABpgJByBdy9g4TuHPa7DgknLNhMVPGBacw6RSFlD86GixiOuj40lDELdX_Q4KpFNDGcs2gWwNHn1H7rIRCRF7wxROP_609IYjQjHTHB5_0by_qtfPjubqMYZbBfLC9pD5LMt3wpLFWxvAkk-PckiEuLpg1NcdorEuBFlJgwEOKUgO51ZGJbVvpwBsqrcv2xrMSS1jp8NIwy70pS8GS8Chq74_U4FIB26Mpvi_67J_zuXCqiIL9YklAwao0gdOCNGRyKoioVhcOMpS85FvFB8Sg5HstfrBPyKxqNx65gAT9PkL-YS4Fnu403tFbWXIQEZK-oC4oMqpjZKSllX6lYRQdEMZ8TdGLX1FuzXT8apGuqpEcKKeSlUaF_4T5UzLszir9DvQRwapFdiyBrZaR1lWGvkfB6695EQLjgF0cM0qiyBmQ2QHcfEPWIvB4s_kvbE7VxZbZwzAQJwtevqnU1V4ZbG8uh60jClbHOLOiK-Ty5xntV9Pai9ISDeUpmVlfv60cvjRGyxYOIR6fu3uwZSZrje-OfnYUmC9_s6aDhbrNe-IEvhnlhBSbemJwolxE6buieN4kdjZ2xlqDFY2mk8nLx8tF6ZiP4IROD0_ZRz-k7k9cGEncfvTFtkITcfum_0_M-v94SuvRSGMjW6QjMun8UgSiMxBoAlftJWtZxlVBLiCao2fNlbaXdKEUuFS7CG8lfRUybrwSZiOgIPp7mLx05blU6MApN1vE6iSEHuNncRTKryb58XchOLOJRld1OH1NjFsE5_cczhvguSKkJb8uqdl_kOgtQea4XNRWlirogKKKiKdbpOH2F2wVwrYGXCdqGQBE5","id":"rs_02e57b3492270d950169809072df2c81958978be9de09c65c6","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_147br1mgel"} + data: {"id":"gen_01KKHTQ85GD6CXP31EJTEPPJSR","object":"chat.completion.chunk","created":1773346202,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABpsx2aAob_dcE5mhudxDzzAG63j04ig7HqUletWX4FEbhTGi3XFAwzf7UHBnUceX7TzaFR6UdV6aUvLz-yGxRKFBDsuGB0cA_nt9Z_ihfGaj0y3kzXPoHd9OrwdTl_Q-NP-Ezp2d57dh9x0ZR98go8C2lKElyYbZzf9kYMm4xKr7zNHLL5qsmMcEnx3wN0OqYt70FJgfJa5AmKpB-6jgF590w6eyKj1zou0GIMJcO3hIkhmSBrDDNGXPFdtgfTuSEzADQi21MhLrJzcC_NC_1SQbIVTD5hn6X4kSi0b-0awG6IfxQo1CvC68-e1RArV6FTSo5HewvnbK0slXo6bIdyt5tWETKZrM0_krG3UGJgBrhs4mV0FBLJws-yMshjPiJVECPjWoUbFg5Yjy1a536Py1BHxJAP1VutpgcWuUs1hyi-VOO3mwX8k1sJNrACe-Mv0DBrLsHoUjnEVCPHqDXmtVHcMwsuh1ebBVgdpCudexhyl0LYxwsieKZ2yi7SpIXLKtqsA6-ykOkzKxUmxM_a8sLL1Rc2WISS-7tt2gd3O-c9q1zXf27mr58BI4ZT3vQ2rXZJHdX6bc9Z-guISneLJ5ejCGA1bpOTYjlg--EHZnNwGhfFmLpIfNWTnjb9IdGTIxf0l59K4K0UPggkIXG94pqyRcTOyoebKTGbvOaF_8x9Oe1IrGaeyOvbJhwwpUPYAxqBnR2P4bUhuGILZqC5LISevAnUEjzW9mH94U_7dCT0DfVYvd0O-ZipL6jeR94SIOkEl3adDForcniFsWhSM1Dp34YczkFvbM5Gm4NXh23ZDSbEoiuFC4TMmdOO89tzypk8","id":"rs_0a1966083dfec53c0169b31d9a86f88197ad226e39316ccf60","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_zjw0mgcpqr"} - data: {"id":"gen_01KGF38FRCNWV564Q8599HRRAW","object":"chat.completion.chunk","created":1770033266,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"call_kjY7wC8Gbmob78vc6x7vvFRl","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_147br1mgel"} + data: {"id":"gen_01KKHTQ85GD6CXP31EJTEPPJSR","object":"chat.completion.chunk","created":1773346202,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"call_2sPqS2wAxxnsgDb6WsoqYYQI","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_zjw0mgcpqr"} - data: {"id":"gen_01KGF38FRCNWV564Q8599HRRAW","object":"chat.completion.chunk","created":1770033266,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_147br1mgel"} + data: {"id":"gen_01KKHTQ85GD6CXP31EJTEPPJSR","object":"chat.completion.chunk","created":1773346202,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_zjw0mgcpqr"} - data: {"id":"gen_01KGF38FRCNWV564Q8599HRRAW","object":"chat.completion.chunk","created":1770033266,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"location"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_147br1mgel"} + data: {"id":"gen_01KKHTQ85GD6CXP31EJTEPPJSR","object":"chat.completion.chunk","created":1773346202,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"location"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_zjw0mgcpqr"} - data: {"id":"gen_01KGF38FRCNWV564Q8599HRRAW","object":"chat.completion.chunk","created":1770033266,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\":\""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_147br1mgel"} + data: {"id":"gen_01KKHTQ85GD6CXP31EJTEPPJSR","object":"chat.completion.chunk","created":1773346202,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\":\""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_zjw0mgcpqr"} - data: {"id":"gen_01KGF38FRCNWV564Q8599HRRAW","object":"chat.completion.chunk","created":1770033266,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Flor"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_147br1mgel"} + data: {"id":"gen_01KKHTQ85GD6CXP31EJTEPPJSR","object":"chat.completion.chunk","created":1773346202,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Flor"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_zjw0mgcpqr"} - data: {"id":"gen_01KGF38FRCNWV564Q8599HRRAW","object":"chat.completion.chunk","created":1770033266,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ence"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_147br1mgel"} + data: {"id":"gen_01KKHTQ85GD6CXP31EJTEPPJSR","object":"chat.completion.chunk","created":1773346202,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ence"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_zjw0mgcpqr"} - data: {"id":"gen_01KGF38FRCNWV564Q8599HRRAW","object":"chat.completion.chunk","created":1770033266,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":","}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_147br1mgel"} + data: {"id":"gen_01KKHTQ85GD6CXP31EJTEPPJSR","object":"chat.completion.chunk","created":1773346202,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":","}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_zjw0mgcpqr"} - data: {"id":"gen_01KGF38FRCNWV564Q8599HRRAW","object":"chat.completion.chunk","created":1770033266,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" Italy"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_147br1mgel"} + data: {"id":"gen_01KKHTQ85GD6CXP31EJTEPPJSR","object":"chat.completion.chunk","created":1773346202,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" Italy"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_zjw0mgcpqr"} - data: {"id":"gen_01KGF38FRCNWV564Q8599HRRAW","object":"chat.completion.chunk","created":1770033266,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_147br1mgel"} + data: {"id":"gen_01KKHTQ85GD6CXP31EJTEPPJSR","object":"chat.completion.chunk","created":1773346202,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_zjw0mgcpqr"} - data: {"id":"gen_01KGF38FRCNWV564Q8599HRRAW","object":"chat.completion.chunk","created":1770033266,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"provider_metadata":{"openai":{"responseId":"resp_02e57b3492270d9501698090728f488195b501a282cdac33a5","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":3180361.719299,"endTime":3180600.837456,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai/gpt-5","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":3180361.719299,"endTime":3180600.837456,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.00191875","marketCost":"0.00191875","generationId":"gen_01KGF38FRCNWV564Q8599HRRAW","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":63,"completion_tokens":120,"total_tokens":183,"cost":0.00191875,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00191875},"system_fingerprint":"fp_147br1mgel","generationId":"gen_01KGF38FRCNWV564Q8599HRRAW"} + data: {"id":"gen_01KKHTQ85GD6CXP31EJTEPPJSR","object":"chat.completion.chunk","created":1773346202,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"provider_metadata":{"openai":{"responseId":"resp_0a1966083dfec53c0169b31d99d60c8197bc41471bc7184100","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":849040.113997,"endTime":852056.598613,"providerRequestId":"req_8b5d0bc7c06b4330a7d34a5a5683dd2f","statusCode":200,"providerResponseId":"resp_0a1966083dfec53c0169b31d99d60c8197bc41471bc7184100"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai:gpt-5-2025-08-07","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":849040.113997,"endTime":852056.598613,"providerRequestId":"req_8b5d0bc7c06b4330a7d34a5a5683dd2f","statusCode":200,"providerResponseId":"resp_0a1966083dfec53c0169b31d99d60c8197bc41471bc7184100"}]}],"totalProviderAttemptCount":1},"cost":"0.00187875","marketCost":"0.00187875","generationId":"gen_01KKHTQ85GD6CXP31EJTEPPJSR","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":63,"completion_tokens":116,"total_tokens":179,"cost":0.00187875,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00187875},"system_fingerprint":"fp_zjw0mgcpqr","service_tier":"default","generationId":"gen_01KKHTQ85GD6CXP31EJTEPPJSR"} data: [DONE] @@ -55,7 +55,7 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 376.16525ms + duration: 555.709542ms - id: 1 request: proto: HTTP/1.1 @@ -63,14 +63,14 @@ interactions: proto_minor: 1 content_length: 1780 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_kjY7wC8Gbmob78vc6x7vvFRl","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_details":[{"data":"gAAAAABpgJByBdy9g4TuHPa7DgknLNhMVPGBacw6RSFlD86GixiOuj40lDELdX_Q4KpFNDGcs2gWwNHn1H7rIRCRF7wxROP_609IYjQjHTHB5_0by_qtfPjubqMYZbBfLC9pD5LMt3wpLFWxvAkk-PckiEuLpg1NcdorEuBFlJgwEOKUgO51ZGJbVvpwBsqrcv2xrMSS1jp8NIwy70pS8GS8Chq74_U4FIB26Mpvi_67J_zuXCqiIL9YklAwao0gdOCNGRyKoioVhcOMpS85FvFB8Sg5HstfrBPyKxqNx65gAT9PkL-YS4Fnu403tFbWXIQEZK-oC4oMqpjZKSllX6lYRQdEMZ8TdGLX1FuzXT8apGuqpEcKKeSlUaF_4T5UzLszir9DvQRwapFdiyBrZaR1lWGvkfB6695EQLjgF0cM0qiyBmQ2QHcfEPWIvB4s_kvbE7VxZbZwzAQJwtevqnU1V4ZbG8uh60jClbHOLOiK-Ty5xntV9Pai9ISDeUpmVlfv60cvjRGyxYOIR6fu3uwZSZrje-OfnYUmC9_s6aDhbrNe-IEvhnlhBSbemJwolxE6buieN4kdjZ2xlqDFY2mk8nLx8tF6ZiP4IROD0_ZRz-k7k9cGEncfvTFtkITcfum_0_M-v94SuvRSGMjW6QjMun8UgSiMxBoAlftJWtZxlVBLiCao2fNlbaXdKEUuFS7CG8lfRUybrwSZiOgIPp7mLx05blU6MApN1vE6iSEHuNncRTKryb58XchOLOJRld1OH1NjFsE5_cczhvguSKkJb8uqdl_kOgtQea4XNRWlirogKKKiKdbpOH2F2wVwrYGXCdqGQBE5","format":"openai-responses-v1","id":"rs_02e57b3492270d950169809072df2c81958978be9de09c65c6","index":0,"type":"reasoning.encrypted"}]},{"content":"40 C","tool_call_id":"call_kjY7wC8Gbmob78vc6x7vvFRl","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_2sPqS2wAxxnsgDb6WsoqYYQI","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_details":[{"data":"gAAAAABpsx2aAob_dcE5mhudxDzzAG63j04ig7HqUletWX4FEbhTGi3XFAwzf7UHBnUceX7TzaFR6UdV6aUvLz-yGxRKFBDsuGB0cA_nt9Z_ihfGaj0y3kzXPoHd9OrwdTl_Q-NP-Ezp2d57dh9x0ZR98go8C2lKElyYbZzf9kYMm4xKr7zNHLL5qsmMcEnx3wN0OqYt70FJgfJa5AmKpB-6jgF590w6eyKj1zou0GIMJcO3hIkhmSBrDDNGXPFdtgfTuSEzADQi21MhLrJzcC_NC_1SQbIVTD5hn6X4kSi0b-0awG6IfxQo1CvC68-e1RArV6FTSo5HewvnbK0slXo6bIdyt5tWETKZrM0_krG3UGJgBrhs4mV0FBLJws-yMshjPiJVECPjWoUbFg5Yjy1a536Py1BHxJAP1VutpgcWuUs1hyi-VOO3mwX8k1sJNrACe-Mv0DBrLsHoUjnEVCPHqDXmtVHcMwsuh1ebBVgdpCudexhyl0LYxwsieKZ2yi7SpIXLKtqsA6-ykOkzKxUmxM_a8sLL1Rc2WISS-7tt2gd3O-c9q1zXf27mr58BI4ZT3vQ2rXZJHdX6bc9Z-guISneLJ5ejCGA1bpOTYjlg--EHZnNwGhfFmLpIfNWTnjb9IdGTIxf0l59K4K0UPggkIXG94pqyRcTOyoebKTGbvOaF_8x9Oe1IrGaeyOvbJhwwpUPYAxqBnR2P4bUhuGILZqC5LISevAnUEjzW9mH94U_7dCT0DfVYvd0O-ZipL6jeR94SIOkEl3adDForcniFsWhSM1Dp34YczkFvbM5Gm4NXh23ZDSbEoiuFC4TMmdOO89tzypk8","format":"openai-responses-v1","id":"rs_0a1966083dfec53c0169b31d9a86f88197ad226e39316ccf60","index":0,"type":"reasoning.encrypted"}]},{"content":"40 C","tool_call_id":"call_2sPqS2wAxxnsgDb6WsoqYYQI","role":"tool"}],"model":"openai/gpt-5","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -79,35 +79,57 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF38HQ7R9XH4N23YXVZ2V51","object":"chat.completion.chunk","created":1770033268,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_9trj17vyed"} + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} - data: {"id":"gen_01KGF38HQ7R9XH4N23YXVZ2V51","object":"chat.completion.chunk","created":1770033268,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_9trj17vyed"} + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"It"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} - data: {"id":"gen_01KGF38HQ7R9XH4N23YXVZ2V51","object":"chat.completion.chunk","created":1770033268,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" current"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_9trj17vyed"} + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"’s"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} - data: {"id":"gen_01KGF38HQ7R9XH4N23YXVZ2V51","object":"chat.completion.chunk","created":1770033268,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" weather"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_9trj17vyed"} + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" currently"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} - data: {"id":"gen_01KGF38HQ7R9XH4N23YXVZ2V51","object":"chat.completion.chunk","created":1770033268,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_9trj17vyed"} + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" about"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} - data: {"id":"gen_01KGF38HQ7R9XH4N23YXVZ2V51","object":"chat.completion.chunk","created":1770033268,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" Florence"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_9trj17vyed"} + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} - data: {"id":"gen_01KGF38HQ7R9XH4N23YXVZ2V51","object":"chat.completion.chunk","created":1770033268,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_9trj17vyed"} + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"40"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} - data: {"id":"gen_01KGF38HQ7R9XH4N23YXVZ2V51","object":"chat.completion.chunk","created":1770033268,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" Italy"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_9trj17vyed"} + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"°C"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} - data: {"id":"gen_01KGF38HQ7R9XH4N23YXVZ2V51","object":"chat.completion.chunk","created":1770033268,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_9trj17vyed"} + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} - data: {"id":"gen_01KGF38HQ7R9XH4N23YXVZ2V51","object":"chat.completion.chunk","created":1770033268,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" about"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_9trj17vyed"} + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" Florence"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} - data: {"id":"gen_01KGF38HQ7R9XH4N23YXVZ2V51","object":"chat.completion.chunk","created":1770033268,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_9trj17vyed"} + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} - data: {"id":"gen_01KGF38HQ7R9XH4N23YXVZ2V51","object":"chat.completion.chunk","created":1770033268,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"40"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_9trj17vyed"} + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" Italy"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} - data: {"id":"gen_01KGF38HQ7R9XH4N23YXVZ2V51","object":"chat.completion.chunk","created":1770033268,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"°C"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_9trj17vyed"} + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} - data: {"id":"gen_01KGF38HQ7R9XH4N23YXVZ2V51","object":"chat.completion.chunk","created":1770033268,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_9trj17vyed"} + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" Stay"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} - data: {"id":"gen_01KGF38HQ7R9XH4N23YXVZ2V51","object":"chat.completion.chunk","created":1770033268,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"provider_metadata":{"openai":{"responseId":"resp_02e57b3492270d950169809074a41c8195b28990630eb61d38","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":3182379.990316,"endTime":3182610.529457,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai/gpt-5","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":3182379.990316,"endTime":3182610.529457,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.00029125","marketCost":"0.00029125","generationId":"gen_01KGF38HQ7R9XH4N23YXVZ2V51","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":97,"completion_tokens":17,"total_tokens":114,"cost":0.00029125,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00029125},"system_fingerprint":"fp_9trj17vyed","generationId":"gen_01KGF38HQ7R9XH4N23YXVZ2V51"} + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" hydrated"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} + + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} + + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" avoid"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} + + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" prolonged"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} + + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" sun"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} + + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" exposure"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} + + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" during"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} + + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" peak"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} + + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" afternoon"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} + + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" hours"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} + + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_oviize2n33"} + + data: {"id":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","object":"chat.completion.chunk","created":1773346205,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"provider_metadata":{"openai":{"responseId":"resp_0a1966083dfec53c0169b31d9d0f7c8197b5113dbefefe6dba","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":355068.285189,"endTime":356251.105957,"providerRequestId":"req_9a4c736413e64cc19e53b485ba2e86a5","statusCode":200,"providerResponseId":"resp_0a1966083dfec53c0169b31d9d0f7c8197b5113dbefefe6dba"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai:gpt-5-2025-08-07","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":355068.285189,"endTime":356251.105957,"providerRequestId":"req_9a4c736413e64cc19e53b485ba2e86a5","statusCode":200,"providerResponseId":"resp_0a1966083dfec53c0169b31d9d0f7c8197b5113dbefefe6dba"}]}],"totalProviderAttemptCount":1},"cost":"0.00040125","marketCost":"0.00040125","generationId":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":97,"completion_tokens":28,"total_tokens":125,"cost":0.00040125,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00040125},"system_fingerprint":"fp_oviize2n33","service_tier":"default","generationId":"gen_01KKHTQB9Z3EMMZFKJN3CSQH3W"} data: [DONE] @@ -116,4 +138,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 378.669292ms + duration: 377.344375ms diff --git a/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/multi_tool.yaml b/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/multi_tool.yaml index fa6b1b6d6a431fd7d75d5f8074b75582d0103a85..ec320000b463cd513e8d3691f6efd49dbf7ed701 100644 --- a/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/multi_tool.yaml +++ b/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/multi_tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,13 +24,13 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF3AEN63MVZD10V5VWY1NFK","object":"chat.completion","created":1770033333,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_018Bqrp5E4LTkWWKFAWjJcPw","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}},{"id":"toolu_01ModQEwNzE9utyENTnUKDzE","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}],"provider_metadata":{"anthropic":{"usage":{"input_tokens":507,"output_tokens":137,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":7080018.781706,"endTime":7082515.69486,"statusCode":200,"providerResponseId":"msg_0198xyvGQtALbxVJ6en1oy92"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.003576","marketCost":"0.003576","generationId":"gen_01KGF3AEN63MVZD10V5VWY1NFK","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":507,"completion_tokens":137,"total_tokens":644,"cost":0.003576,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.003576},"system_fingerprint":"fp_hbuq90twge","generationId":"gen_01KGF3AEN63MVZD10V5VWY1NFK"}' + body: '{"id":"gen_01KKHTSS76ZWQA66RPG21X3C5R","object":"chat.completion","created":1773346286,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_017xBrnU2wm7B5qJHXAWLWTZ","type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}},{"id":"toolu_01Ctibf2hfhsW1QEmoPx8RtM","type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}],"provider_metadata":{"anthropic":{"usage":{"input_tokens":507,"output_tokens":137,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":522496.774607,"endTime":524578.617259,"statusCode":200,"providerResponseId":"msg_01W3e8mLa61H6RU3GkL7c6aL"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":522496.774607,"endTime":524578.617259,"statusCode":200,"providerResponseId":"msg_01W3e8mLa61H6RU3GkL7c6aL"}]}],"totalProviderAttemptCount":1},"cost":"0.003576","marketCost":"0.003576","generationId":"gen_01KKHTSS76ZWQA66RPG21X3C5R","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":507,"completion_tokens":137,"total_tokens":644,"cost":0.003576,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.003576},"system_fingerprint":"fp_m11d6w7fk3","generationId":"gen_01KKHTSS76ZWQA66RPG21X3C5R"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.724311375s + duration: 2.247647417s - id: 1 request: proto: HTTP/1.1 @@ -38,14 +38,14 @@ interactions: proto_minor: 1 content_length: 1333 host: "" - body: '{"messages":[{"content":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS.","role":"system","cache_control":{"type":"ephemeral"}},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"toolu_018Bqrp5E4LTkWWKFAWjJcPw","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"toolu_01ModQEwNzE9utyENTnUKDzE","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function","cache_control":{"type":"ephemeral"}}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_018Bqrp5E4LTkWWKFAWjJcPw","role":"tool"},{"content":"6","tool_call_id":"toolu_01ModQEwNzE9utyENTnUKDzE","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}]}' + body: '{"messages":[{"content":"You are a helpful assistant. CRITICAL: Always use both add and multiply at the same time ALWAYS.","role":"system","cache_control":{"type":"ephemeral"}},{"content":"Add and multiply the number 2 and 3","role":"user"},{"tool_calls":[{"id":"toolu_017xBrnU2wm7B5qJHXAWLWTZ","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"toolu_01Ctibf2hfhsW1QEmoPx8RtM","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function","cache_control":{"type":"ephemeral"}}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_017xBrnU2wm7B5qJHXAWLWTZ","role":"tool"},{"content":"6","tool_call_id":"toolu_01Ctibf2hfhsW1QEmoPx8RtM","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF3AH9QQJ48CR5J8VYYZN30","object":"chat.completion","created":1770033335,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":"I''ve performed both operations with the numbers 2 and 3:\n- Addition: 2 + 3 = 5\n- Multiplication: 2 × 3 = 6","provider_metadata":{"anthropic":{"usage":{"input_tokens":688,"output_tokens":47,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1440501.815188,"endTime":1442379.185058,"statusCode":200,"providerResponseId":"msg_01HoW3wJwr4Hqen1m7PJHcEL"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.002769","marketCost":"0.002769","generationId":"gen_01KGF3AH9QQJ48CR5J8VYYZN30","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":688,"completion_tokens":47,"total_tokens":735,"cost":0.002769,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002769},"system_fingerprint":"fp_yb4k07q27e","generationId":"gen_01KGF3AH9QQJ48CR5J8VYYZN30"}' + body: '{"id":"gen_01KKHTSVF9W0ZDC29ERPQAF3RF","object":"chat.completion","created":1773346288,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":"The results are:\n- Adding 2 and 3: **5**\n- Multiplying 2 and 3: **6**","provider_metadata":{"anthropic":{"usage":{"input_tokens":688,"output_tokens":35,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1303447.377492,"endTime":1304866.291489,"statusCode":200,"providerResponseId":"msg_01PTiw3wqXTSKZUYSQydQi9z"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1303447.377492,"endTime":1304866.291489,"statusCode":200,"providerResponseId":"msg_01PTiw3wqXTSKZUYSQydQi9z"}]}],"totalProviderAttemptCount":1},"cost":"0.002589","marketCost":"0.002589","generationId":"gen_01KKHTSVF9W0ZDC29ERPQAF3RF","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":688,"completion_tokens":35,"total_tokens":723,"cost":0.002589,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002589},"system_fingerprint":"fp_ilpgfaaqak","generationId":"gen_01KKHTSVF9W0ZDC29ERPQAF3RF"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.006164709s + duration: 1.640505792s diff --git a/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/multi_tool_streaming.yaml b/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/multi_tool_streaming.yaml index 53b09c8f2c1751498f998fe8c5027aaf5713b905..85d7945969093e4b8216c73e12362a906de9ff78 100644 --- a/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/multi_tool_streaming.yaml +++ b/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/multi_tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,43 +24,29 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF3AK848QW52MG188A9XZRA","object":"chat.completion.chunk","created":1770033336,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kk4h3svyf"} + data: {"id":"gen_01KKHTSX236D1FEGSZ9W8ST5R5","object":"chat.completion.chunk","created":1773346289,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_12trgkxgr2"} - data: {"id":"gen_01KGF3AK848QW52MG188A9XZRA","object":"chat.completion.chunk","created":1770033336,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"I"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kk4h3svyf"} + data: {"id":"gen_01KKHTSX236D1FEGSZ9W8ST5R5","object":"chat.completion.chunk","created":1773346289,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"I'll add and"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_12trgkxgr2"} - data: {"id":"gen_01KGF3AK848QW52MG188A9XZRA","object":"chat.completion.chunk","created":1770033336,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"'ll"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kk4h3svyf"} + data: {"id":"gen_01KKHTSX236D1FEGSZ9W8ST5R5","object":"chat.completion.chunk","created":1773346289,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" multiply the numbers"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_12trgkxgr2"} - data: {"id":"gen_01KGF3AK848QW52MG188A9XZRA","object":"chat.completion.chunk","created":1770033336,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" ad"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kk4h3svyf"} + data: {"id":"gen_01KKHTSX236D1FEGSZ9W8ST5R5","object":"chat.completion.chunk","created":1773346289,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" 2 and 3 for"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_12trgkxgr2"} - data: {"id":"gen_01KGF3AK848QW52MG188A9XZRA","object":"chat.completion.chunk","created":1770033336,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"d an"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kk4h3svyf"} + data: {"id":"gen_01KKHTSX236D1FEGSZ9W8ST5R5","object":"chat.completion.chunk","created":1773346289,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" you."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_12trgkxgr2"} - data: {"id":"gen_01KGF3AK848QW52MG188A9XZRA","object":"chat.completion.chunk","created":1770033336,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"d multiply the"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kk4h3svyf"} + data: {"id":"gen_01KKHTSX236D1FEGSZ9W8ST5R5","object":"chat.completion.chunk","created":1773346289,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"toolu_018nsjoYvpEgDt9YVftLaq7w","type":"function","function":{"name":"add","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_12trgkxgr2"} - data: {"id":"gen_01KGF3AK848QW52MG188A9XZRA","object":"chat.completion.chunk","created":1770033336,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" numbers 2 and 3 "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kk4h3svyf"} + data: {"id":"gen_01KKHTSX236D1FEGSZ9W8ST5R5","object":"chat.completion.chunk","created":1773346289,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"a\": 2"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_12trgkxgr2"} - data: {"id":"gen_01KGF3AK848QW52MG188A9XZRA","object":"chat.completion.chunk","created":1770033336,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"for you."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kk4h3svyf"} + data: {"id":"gen_01KKHTSX236D1FEGSZ9W8ST5R5","object":"chat.completion.chunk","created":1773346289,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":", \"b\": 3}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_12trgkxgr2"} - data: {"id":"gen_01KGF3AK848QW52MG188A9XZRA","object":"chat.completion.chunk","created":1770033336,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"toolu_01EbUPM9AHLKandFdpD3hR2d","type":"function","function":{"name":"add","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kk4h3svyf"} + data: {"id":"gen_01KKHTSX236D1FEGSZ9W8ST5R5","object":"chat.completion.chunk","created":1773346289,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"toolu_011V64RqpHWpxKAL2Wn728hN","type":"function","function":{"name":"multiply","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_12trgkxgr2"} - data: {"id":"gen_01KGF3AK848QW52MG188A9XZRA","object":"chat.completion.chunk","created":1770033336,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"a\": 2"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kk4h3svyf"} + data: {"id":"gen_01KKHTSX236D1FEGSZ9W8ST5R5","object":"chat.completion.chunk","created":1773346289,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"a\": 2"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_12trgkxgr2"} - data: {"id":"gen_01KGF3AK848QW52MG188A9XZRA","object":"chat.completion.chunk","created":1770033336,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":", \"b\""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kk4h3svyf"} + data: {"id":"gen_01KKHTSX236D1FEGSZ9W8ST5R5","object":"chat.completion.chunk","created":1773346289,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":", \"b\": 3}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_12trgkxgr2"} - data: {"id":"gen_01KGF3AK848QW52MG188A9XZRA","object":"chat.completion.chunk","created":1770033336,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":": 3}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kk4h3svyf"} - - data: {"id":"gen_01KGF3AK848QW52MG188A9XZRA","object":"chat.completion.chunk","created":1770033336,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"id":"toolu_01WJxb3WgmL33DJCq2hw4DFL","type":"function","function":{"name":"multiply","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kk4h3svyf"} - - data: {"id":"gen_01KGF3AK848QW52MG188A9XZRA","object":"chat.completion.chunk","created":1770033336,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"{\"a\": "}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kk4h3svyf"} - - data: {"id":"gen_01KGF3AK848QW52MG188A9XZRA","object":"chat.completion.chunk","created":1770033336,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"2"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kk4h3svyf"} - - data: {"id":"gen_01KGF3AK848QW52MG188A9XZRA","object":"chat.completion.chunk","created":1770033336,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":", "}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kk4h3svyf"} - - data: {"id":"gen_01KGF3AK848QW52MG188A9XZRA","object":"chat.completion.chunk","created":1770033336,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":"\"b\""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kk4h3svyf"} - - data: {"id":"gen_01KGF3AK848QW52MG188A9XZRA","object":"chat.completion.chunk","created":1770033336,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":1,"function":{"arguments":": 3}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kk4h3svyf"} - - data: {"id":"gen_01KGF3AK848QW52MG188A9XZRA","object":"chat.completion.chunk","created":1770033336,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":502,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":137,"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":4753514.35299,"endTime":4754858.992657,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":4753514.35299,"endTime":4754858.992657,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.003561","marketCost":"0.003561","generationId":"gen_01KGF3AK848QW52MG188A9XZRA","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":502,"completion_tokens":137,"total_tokens":639,"cost":0.003561,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.003561},"system_fingerprint":"fp_kk4h3svyf","generationId":"gen_01KGF3AK848QW52MG188A9XZRA"} + data: {"id":"gen_01KKHTSX236D1FEGSZ9W8ST5R5","object":"chat.completion.chunk","created":1773346289,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":502,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":137,"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1307632.745509,"endTime":1309633.090666,"providerRequestId":"req_011CYyo4SdLugYPeFMUcQj8n","statusCode":200,"providerResponseId":"msg_01X8ZyAZHiU6AiujLZ4W3y71"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1307632.745509,"endTime":1309633.090666,"providerRequestId":"req_011CYyo4SdLugYPeFMUcQj8n","statusCode":200,"providerResponseId":"msg_01X8ZyAZHiU6AiujLZ4W3y71"}]}],"totalProviderAttemptCount":1},"cost":"0.003561","marketCost":"0.003561","generationId":"gen_01KKHTSX236D1FEGSZ9W8ST5R5","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":502,"completion_tokens":137,"total_tokens":639,"cost":0.003561,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.003561},"system_fingerprint":"fp_12trgkxgr2","generationId":"gen_01KKHTSX236D1FEGSZ9W8ST5R5"} data: [DONE] @@ -69,7 +55,7 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 1.471487583s + duration: 1.126806916s - id: 1 request: proto: HTTP/1.1 @@ -77,14 +63,14 @@ interactions: proto_minor: 1 content_length: 1439 host: "" - body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system","cache_control":{"type":"ephemeral"}},{"content":"Add and multiply the number 2 and 3","role":"user"},{"content":"I''ll add and multiply the numbers 2 and 3 for you.","tool_calls":[{"id":"toolu_01EbUPM9AHLKandFdpD3hR2d","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"toolu_01WJxb3WgmL33DJCq2hw4DFL","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function","cache_control":{"type":"ephemeral"}}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_01EbUPM9AHLKandFdpD3hR2d","role":"tool"},{"content":"6","tool_call_id":"toolu_01WJxb3WgmL33DJCq2hw4DFL","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system","cache_control":{"type":"ephemeral"}},{"content":"Add and multiply the number 2 and 3","role":"user"},{"content":"I''ll add and multiply the numbers 2 and 3 for you.","tool_calls":[{"id":"toolu_018nsjoYvpEgDt9YVftLaq7w","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"toolu_011V64RqpHWpxKAL2Wn728hN","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function","cache_control":{"type":"ephemeral"}}],"role":"assistant"},{"content":"5","tool_call_id":"toolu_018nsjoYvpEgDt9YVftLaq7w","role":"tool"},{"content":"6","tool_call_id":"toolu_011V64RqpHWpxKAL2Wn728hN","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"add","strict":false,"description":"Add two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"},{"function":{"name":"multiply","strict":false,"description":"Multiply two numbers","parameters":{"properties":{"a":{"description":"first number","type":"integer"},"b":{"description":"second number","type":"integer"}},"required":["a","b"],"type":"object"}},"type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -93,21 +79,21 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF3ANVSZB8AH86G2J0K92JN","object":"chat.completion.chunk","created":1770033339,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_jv4rc3pqm1"} + data: {"id":"gen_01KKHTSZ5E3HBMXS2NMT9NN5MR","object":"chat.completion.chunk","created":1773346291,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_q1t5pqatrl"} - data: {"id":"gen_01KGF3ANVSZB8AH86G2J0K92JN","object":"chat.completion.chunk","created":1770033339,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_jv4rc3pqm1"} + data: {"id":"gen_01KKHTSZ5E3HBMXS2NMT9NN5MR","object":"chat.completion.chunk","created":1773346291,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"The results"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_q1t5pqatrl"} - data: {"id":"gen_01KGF3ANVSZB8AH86G2J0K92JN","object":"chat.completion.chunk","created":1770033339,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" results"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_jv4rc3pqm1"} + data: {"id":"gen_01KKHTSZ5E3HBMXS2NMT9NN5MR","object":"chat.completion.chunk","created":1773346291,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" are"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_q1t5pqatrl"} - data: {"id":"gen_01KGF3ANVSZB8AH86G2J0K92JN","object":"chat.completion.chunk","created":1770033339,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" are:\n- "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_jv4rc3pqm1"} + data: {"id":"gen_01KKHTSZ5E3HBMXS2NMT9NN5MR","object":"chat.completion.chunk","created":1773346291,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":":\n- "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_q1t5pqatrl"} - data: {"id":"gen_01KGF3ANVSZB8AH86G2J0K92JN","object":"chat.completion.chunk","created":1770033339,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"2 + 3 = "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_jv4rc3pqm1"} + data: {"id":"gen_01KKHTSZ5E3HBMXS2NMT9NN5MR","object":"chat.completion.chunk","created":1773346291,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"2 + 3 = "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_q1t5pqatrl"} - data: {"id":"gen_01KGF3ANVSZB8AH86G2J0K92JN","object":"chat.completion.chunk","created":1770033339,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"5\n- 2 × "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_jv4rc3pqm1"} + data: {"id":"gen_01KKHTSZ5E3HBMXS2NMT9NN5MR","object":"chat.completion.chunk","created":1773346291,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"5\n- 2 × "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_q1t5pqatrl"} - data: {"id":"gen_01KGF3ANVSZB8AH86G2J0K92JN","object":"chat.completion.chunk","created":1770033339,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"3 = 6"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_jv4rc3pqm1"} + data: {"id":"gen_01KKHTSZ5E3HBMXS2NMT9NN5MR","object":"chat.completion.chunk","created":1773346291,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"3 = 6"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_q1t5pqatrl"} - data: {"id":"gen_01KGF3ANVSZB8AH86G2J0K92JN","object":"chat.completion.chunk","created":1770033339,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":700,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":31,"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1445140.487939,"endTime":1446016.149192,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1445140.487939,"endTime":1446016.149192,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.002565","marketCost":"0.002565","generationId":"gen_01KGF3ANVSZB8AH86G2J0K92JN","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":700,"completion_tokens":31,"total_tokens":731,"cost":0.002565,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002565},"system_fingerprint":"fp_jv4rc3pqm1","generationId":"gen_01KGF3ANVSZB8AH86G2J0K92JN"} + data: {"id":"gen_01KKHTSZ5E3HBMXS2NMT9NN5MR","object":"chat.completion.chunk","created":1773346291,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":700,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":31,"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":440939.144819,"endTime":442365.362981,"providerRequestId":"req_011CYyo4bryBiaWHGYnEAEUy","statusCode":200,"providerResponseId":"msg_017tjfndB3kgqyiHTHVQiF9m"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":440939.144819,"endTime":442365.362981,"providerRequestId":"req_011CYyo4bryBiaWHGYnEAEUy","statusCode":200,"providerResponseId":"msg_017tjfndB3kgqyiHTHVQiF9m"}]}],"totalProviderAttemptCount":1},"cost":"0.002565","marketCost":"0.002565","generationId":"gen_01KKHTSZ5E3HBMXS2NMT9NN5MR","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":700,"completion_tokens":31,"total_tokens":731,"cost":0.002565,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002565},"system_fingerprint":"fp_q1t5pqatrl","generationId":"gen_01KKHTSZ5E3HBMXS2NMT9NN5MR"} data: [DONE] @@ -116,4 +102,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 1.063098791s + duration: 1.148573375s diff --git a/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/simple.yaml b/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/simple.yaml index 664b864eb776e6c23f8416d682b0e473ba7527c4..156250b4399fa061fdc802e02679e1fa8a9f4bd2 100644 --- a/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/simple.yaml +++ b/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/simple.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,10 +24,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF3A0GNP7F130T7D4SZFNFG","object":"chat.completion","created":1770033318,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":"Olá! (Oh-LAH)\n\nThis is the most common way to say \"hi\" in Portuguese. You can also use \"Oi!\" (OH-ee) for a more casual greeting.","provider_metadata":{"anthropic":{"usage":{"input_tokens":16,"output_tokens":48,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":305884.462307,"endTime":307858.655195,"statusCode":200,"providerResponseId":"msg_01NUekGRWWJS2rvj8HY222rZ"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.000768","marketCost":"0.000768","generationId":"gen_01KGF3A0GNP7F130T7D4SZFNFG","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":16,"completion_tokens":48,"total_tokens":64,"cost":0.000768,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000768},"system_fingerprint":"fp_qvkh98zees","generationId":"gen_01KGF3A0GNP7F130T7D4SZFNFG"}' + body: "{\"id\":\"gen_01KKHTS7NB41SBFV7E4QDAKG2Z\",\"object\":\"chat.completion\",\"created\":1773346273,\"model\":\"anthropic/claude-sonnet-4\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Olá! \U0001F44B\\n\\nThat's \\\"hi\\\" in Portuguese. You could also say \\\"Oi!\\\" which is a more casual way to greet someone.\",\"provider_metadata\":{\"anthropic\":{\"usage\":{\"input_tokens\":16,\"output_tokens\":39,\"cache_creation_input_tokens\":0,\"cache_read_input_tokens\":0,\"cache_creation\":{\"ephemeral_5m_input_tokens\":0,\"ephemeral_1h_input_tokens\":0},\"service_tier\":\"standard\",\"inference_geo\":\"not_available\"},\"cacheCreationInputTokens\":0,\"stopSequence\":null,\"iterations\":null,\"container\":null,\"contextManagement\":null},\"gateway\":{\"routing\":{\"originalModelId\":\"anthropic/claude-sonnet-4\",\"resolvedProvider\":\"anthropic\",\"resolvedProviderApiModelId\":\"claude-sonnet-4-20250514\",\"internalResolvedModelId\":\"anthropic:claude-sonnet-4-20250514\",\"fallbacksAvailable\":[\"vertexAnthropic\",\"bedrock\"],\"internalReasoning\":\"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock\",\"planningReasoning\":\"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)\",\"canonicalSlug\":\"anthropic/claude-sonnet-4\",\"finalProvider\":\"anthropic\",\"attempts\":[{\"provider\":\"anthropic\",\"internalModelId\":\"anthropic:claude-sonnet-4-20250514\",\"providerApiModelId\":\"claude-sonnet-4-20250514\",\"credentialType\":\"system\",\"success\":true,\"startTime\":458093.288614,\"endTime\":464478.853362,\"statusCode\":200,\"providerResponseId\":\"msg_01Bnd6F1THVdXs8TcfYSEmWS\"}],\"modelAttemptCount\":1,\"modelAttempts\":[{\"modelId\":\"anthropic:claude-sonnet-4-20250514\",\"canonicalSlug\":\"anthropic/claude-sonnet-4\",\"success\":true,\"providerAttemptCount\":1,\"providerAttempts\":[{\"provider\":\"anthropic\",\"internalModelId\":\"anthropic:claude-sonnet-4-20250514\",\"providerApiModelId\":\"claude-sonnet-4-20250514\",\"credentialType\":\"system\",\"success\":true,\"startTime\":458093.288614,\"endTime\":464478.853362,\"statusCode\":200,\"providerResponseId\":\"msg_01Bnd6F1THVdXs8TcfYSEmWS\"}]}],\"totalProviderAttemptCount\":1},\"cost\":\"0.000633\",\"marketCost\":\"0.000633\",\"generationId\":\"gen_01KKHTS7NB41SBFV7E4QDAKG2Z\",\"billableWebSearchCalls\":0}}},\"logprobs\":null,\"finish_reason\":\"stop\"}],\"usage\":{\"prompt_tokens\":16,\"completion_tokens\":39,\"total_tokens\":55,\"cost\":0.000633,\"is_byok\":false,\"prompt_tokens_details\":{\"cached_tokens\":0,\"audio_tokens\":0,\"video_tokens\":0},\"cost_details\":{\"upstream_inference_cost\":null,\"upstream_inference_prompt_cost\":0,\"upstream_inference_completions_cost\":0},\"completion_tokens_details\":{\"reasoning_tokens\":0,\"image_tokens\":0},\"cache_creation_input_tokens\":0,\"market_cost\":0.000633},\"system_fingerprint\":\"fp_01ury2mkxu\",\"generationId\":\"gen_01KKHTS7NB41SBFV7E4QDAKG2Z\"}" headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.145596209s + duration: 6.581583041s diff --git a/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/simple_streaming.yaml b/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/simple_streaming.yaml index 219e897efea9268d5d8aef772f0001f3a4605260..7c9919cd5a0975c5e04e907e8a02fb5f8602bf2e 100644 --- a/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/simple_streaming.yaml +++ b/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/simple_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,31 +24,11 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF3A2KGQFE5BW4K7TRSZ9DF","object":"chat.completion.chunk","created":1770033319,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_c0bnftwhqr"} + data: {"id":"gen_01KKHTSE32P3E47RYGNHN4S0G1","object":"chat.completion.chunk","created":1773346276,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_i493olvuxm"} - data: {"id":"gen_01KGF3A2KGQFE5BW4K7TRSZ9DF","object":"chat.completion.chunk","created":1770033319,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"Olá! "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_c0bnftwhqr"} + data: {"id":"gen_01KKHTSE32P3E47RYGNHN4S0G1","object":"chat.completion.chunk","created":1773346276,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"Olá!"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_i493olvuxm"} - data: {"id":"gen_01KGF3A2KGQFE5BW4K7TRSZ9DF","object":"chat.completion.chunk","created":1770033319,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"\n\n("},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_c0bnftwhqr"} - - data: {"id":"gen_01KGF3A2KGQFE5BW4K7TRSZ9DF","object":"chat.completion.chunk","created":1770033319,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"That"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_c0bnftwhqr"} - - data: {"id":"gen_01KGF3A2KGQFE5BW4K7TRSZ9DF","object":"chat.completion.chunk","created":1770033319,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"'s \""},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_c0bnftwhqr"} - - data: {"id":"gen_01KGF3A2KGQFE5BW4K7TRSZ9DF","object":"chat.completion.chunk","created":1770033319,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"hello"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_c0bnftwhqr"} - - data: {"id":"gen_01KGF3A2KGQFE5BW4K7TRSZ9DF","object":"chat.completion.chunk","created":1770033319,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"\" in Portuguese -"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_c0bnftwhqr"} - - data: {"id":"gen_01KGF3A2KGQFE5BW4K7TRSZ9DF","object":"chat.completion.chunk","created":1770033319,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" a"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_c0bnftwhqr"} - - data: {"id":"gen_01KGF3A2KGQFE5BW4K7TRSZ9DF","object":"chat.completion.chunk","created":1770033319,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" friendly"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_c0bnftwhqr"} - - data: {"id":"gen_01KGF3A2KGQFE5BW4K7TRSZ9DF","object":"chat.completion.chunk","created":1770033319,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" way"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_c0bnftwhqr"} - - data: {"id":"gen_01KGF3A2KGQFE5BW4K7TRSZ9DF","object":"chat.completion.chunk","created":1770033319,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" to say hi"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_c0bnftwhqr"} - - data: {"id":"gen_01KGF3A2KGQFE5BW4K7TRSZ9DF","object":"chat.completion.chunk","created":1770033319,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"!)"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_c0bnftwhqr"} - - data: {"id":"gen_01KGF3A2KGQFE5BW4K7TRSZ9DF","object":"chat.completion.chunk","created":1770033319,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":25,"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1425425.670751,"endTime":1426422.314773,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1425425.670751,"endTime":1426422.314773,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.000423","marketCost":"0.000423","generationId":"gen_01KGF3A2KGQFE5BW4K7TRSZ9DF","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":16,"completion_tokens":25,"total_tokens":41,"cost":0.000423,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000423},"system_fingerprint":"fp_c0bnftwhqr","generationId":"gen_01KGF3A2KGQFE5BW4K7TRSZ9DF"} + data: {"id":"gen_01KKHTSE32P3E47RYGNHN4S0G1","object":"chat.completion.chunk","created":1773346276,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":16,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":7,"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1292426.53421,"endTime":1295784.585291,"providerRequestId":"req_011CYyo3KUhhPaTvp4M2b7BA","statusCode":200,"providerResponseId":"msg_01RHQb4X5beUud4qjxkFXSq2"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1292426.53421,"endTime":1295784.585291,"providerRequestId":"req_011CYyo3KUhhPaTvp4M2b7BA","statusCode":200,"providerResponseId":"msg_01RHQb4X5beUud4qjxkFXSq2"}]}],"totalProviderAttemptCount":1},"cost":"0.000153","marketCost":"0.000153","generationId":"gen_01KKHTSE32P3E47RYGNHN4S0G1","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":16,"completion_tokens":7,"total_tokens":23,"cost":0.000153,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000153},"system_fingerprint":"fp_i493olvuxm","generationId":"gen_01KKHTSE32P3E47RYGNHN4S0G1"} data: [DONE] @@ -57,4 +37,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 1.097552958s + duration: 3.566641667s diff --git a/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/tool.yaml b/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/tool.yaml index cfd728d52da0845fa653c2c2478a210cb50eee5d..107408f7e16c2ca80c1d70b51da2edc09486baed 100644 --- a/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/tool.yaml +++ b/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/tool.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,13 +24,13 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF3A4CMTZP7AVTFGEHA9VZ3","object":"chat.completion","created":1770033322,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_0199hSTV5K6aGu7K5MRpvNEk","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"}}],"provider_metadata":{"anthropic":{"usage":{"input_tokens":394,"output_tokens":68,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":7069466.244378,"endTime":7071689.075105,"statusCode":200,"providerResponseId":"msg_01CtwtuZqqwryJAuJDdMoG65"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.002202","marketCost":"0.002202","generationId":"gen_01KGF3A4CMTZP7AVTFGEHA9VZ3","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":394,"completion_tokens":68,"total_tokens":462,"cost":0.002202,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002202},"system_fingerprint":"fp_nd3kr99iaq","generationId":"gen_01KGF3A4CMTZP7AVTFGEHA9VZ3"}' + body: '{"id":"gen_01KKHTSHKPC7EQQTMMNF5V43QJ","object":"chat.completion","created":1773346278,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":null,"tool_calls":[{"id":"toolu_01HKZKf11CsN9crwBqrsn3yX","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"}}],"provider_metadata":{"anthropic":{"usage":{"input_tokens":394,"output_tokens":66,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":348714.567459,"endTime":350299.730817,"statusCode":200,"providerResponseId":"msg_013FUfitY1FzxwTuJpkZ9Gnx"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":348714.567459,"endTime":350299.730817,"statusCode":200,"providerResponseId":"msg_013FUfitY1FzxwTuJpkZ9Gnx"}]}],"totalProviderAttemptCount":1},"cost":"0.002172","marketCost":"0.002172","generationId":"gen_01KKHTSHKPC7EQQTMMNF5V43QJ","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":394,"completion_tokens":66,"total_tokens":460,"cost":0.002172,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002172},"system_fingerprint":"fp_uui9eaqsvp","generationId":"gen_01KKHTSHKPC7EQQTMMNF5V43QJ"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.395244583s + duration: 1.780843792s - id: 1 request: proto: HTTP/1.1 @@ -38,14 +38,14 @@ interactions: proto_minor: 1 content_length: 794 host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system","cache_control":{"type":"ephemeral"}},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"toolu_0199hSTV5K6aGu7K5MRpvNEk","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function","cache_control":{"type":"ephemeral"}}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_0199hSTV5K6aGu7K5MRpvNEk","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system","cache_control":{"type":"ephemeral"}},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"toolu_01HKZKf11CsN9crwBqrsn3yX","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function","cache_control":{"type":"ephemeral"}}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_01HKZKf11CsN9crwBqrsn3yX","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF3A6QKNJNQRZ2JER4MQD46","object":"chat.completion","created":1770033325,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":"The weather in Florence, Italy is currently 40°C (104°F). That''s quite hot! It''s a very warm day in Florence.","provider_metadata":{"anthropic":{"usage":{"input_tokens":463,"output_tokens":34,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":7072056.878135,"endTime":7074733.980106,"statusCode":200,"providerResponseId":"msg_01EYzxaa6Ayp7ACF78uvBrqV"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.001899","marketCost":"0.001899","generationId":"gen_01KGF3A6QKNJNQRZ2JER4MQD46","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":463,"completion_tokens":34,"total_tokens":497,"cost":0.001899,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.001899},"system_fingerprint":"fp_4i6565f6ii","generationId":"gen_01KGF3A6QKNJNQRZ2JER4MQD46"}' + body: '{"id":"gen_01KKHTSKAZH21N9W68N002RMQS","object":"chat.completion","created":1773346280,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":"The current weather in Florence, Italy shows a temperature of 40°C (104°F). That''s quite hot! If you''re planning to visit or are currently there, make sure to stay hydrated and seek shade during the hottest parts of the day.","provider_metadata":{"anthropic":{"usage":{"input_tokens":463,"output_tokens":57,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1567389.170708,"endTime":1569303.439725,"statusCode":200,"providerResponseId":"msg_017P1pCZ3m2RWiJQkS7VEhBy"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1567389.170708,"endTime":1569303.439725,"statusCode":200,"providerResponseId":"msg_017P1pCZ3m2RWiJQkS7VEhBy"}]}],"totalProviderAttemptCount":1},"cost":"0.002244","marketCost":"0.002244","generationId":"gen_01KKHTSKAZH21N9W68N002RMQS","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":463,"completion_tokens":57,"total_tokens":520,"cost":0.002244,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002244},"system_fingerprint":"fp_9egjj0u80m","generationId":"gen_01KKHTSKAZH21N9W68N002RMQS"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.949003792s + duration: 2.101869208s diff --git a/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/tool_streaming.yaml b/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/tool_streaming.yaml index 104f05bd52a1620fe503a32655af025c6725394e..e3f7f8bf3e37ef2f0a3101c00cc5495303ae6c40 100644 --- a/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/tool_streaming.yaml +++ b/providertests/testdata/TestVercelCommonWithAnthropicCache/claude-sonnet-4/tool_streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,25 +24,25 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF3A9P5RW4MNWQD4RZQY7FA","object":"chat.completion.chunk","created":1770033327,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_afeigrmiv8"} + data: {"id":"gen_01KKHTSND812NZDS0MTHAP9G37","object":"chat.completion.chunk","created":1773346281,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_46li7cdhsq"} - data: {"id":"gen_01KGF3A9P5RW4MNWQD4RZQY7FA","object":"chat.completion.chunk","created":1770033327,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"I'll get"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_afeigrmiv8"} + data: {"id":"gen_01KKHTSND812NZDS0MTHAP9G37","object":"chat.completion.chunk","created":1773346281,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"I'll check the weather in"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_46li7cdhsq"} - data: {"id":"gen_01KGF3A9P5RW4MNWQD4RZQY7FA","object":"chat.completion.chunk","created":1770033327,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" the weather information"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_afeigrmiv8"} + data: {"id":"gen_01KKHTSND812NZDS0MTHAP9G37","object":"chat.completion.chunk","created":1773346281,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" Florence, Italy for you."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_46li7cdhsq"} - data: {"id":"gen_01KGF3A9P5RW4MNWQD4RZQY7FA","object":"chat.completion.chunk","created":1770033327,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" for Florence, Italy for you."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_afeigrmiv8"} + data: {"id":"gen_01KKHTSND812NZDS0MTHAP9G37","object":"chat.completion.chunk","created":1773346281,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"toolu_01M5YDg4x4mT5NJ8zPJB7y3S","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_46li7cdhsq"} - data: {"id":"gen_01KGF3A9P5RW4MNWQD4RZQY7FA","object":"chat.completion.chunk","created":1770033327,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"toolu_01NEeARJCxoJWc8F8yKkyTK2","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_afeigrmiv8"} + data: {"id":"gen_01KKHTSND812NZDS0MTHAP9G37","object":"chat.completion.chunk","created":1773346281,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"loc"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_46li7cdhsq"} - data: {"id":"gen_01KGF3A9P5RW4MNWQD4RZQY7FA","object":"chat.completion.chunk","created":1770033327,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"l"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_afeigrmiv8"} + data: {"id":"gen_01KKHTSND812NZDS0MTHAP9G37","object":"chat.completion.chunk","created":1773346281,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"at"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_46li7cdhsq"} - data: {"id":"gen_01KGF3A9P5RW4MNWQD4RZQY7FA","object":"chat.completion.chunk","created":1770033327,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ocati"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_afeigrmiv8"} + data: {"id":"gen_01KKHTSND812NZDS0MTHAP9G37","object":"chat.completion.chunk","created":1773346281,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ion\": \"Flor"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_46li7cdhsq"} - data: {"id":"gen_01KGF3A9P5RW4MNWQD4RZQY7FA","object":"chat.completion.chunk","created":1770033327,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"on\": \"Flore"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_afeigrmiv8"} + data: {"id":"gen_01KKHTSND812NZDS0MTHAP9G37","object":"chat.completion.chunk","created":1773346281,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ence,I"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_46li7cdhsq"} - data: {"id":"gen_01KGF3A9P5RW4MNWQD4RZQY7FA","object":"chat.completion.chunk","created":1770033327,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"nce,Italy\"}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_afeigrmiv8"} + data: {"id":"gen_01KKHTSND812NZDS0MTHAP9G37","object":"chat.completion.chunk","created":1773346281,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"taly\"}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_46li7cdhsq"} - data: {"id":"gen_01KGF3A9P5RW4MNWQD4RZQY7FA","object":"chat.completion.chunk","created":1770033327,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":67,"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":7695608.34416,"endTime":7697403.6705,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":7695608.34416,"endTime":7697403.6705,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.002187","marketCost":"0.002187","generationId":"gen_01KGF3A9P5RW4MNWQD4RZQY7FA","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":394,"completion_tokens":67,"total_tokens":461,"cost":0.002187,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002187},"system_fingerprint":"fp_afeigrmiv8","generationId":"gen_01KGF3A9P5RW4MNWQD4RZQY7FA"} + data: {"id":"gen_01KKHTSND812NZDS0MTHAP9G37","object":"chat.completion.chunk","created":1773346281,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":394,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":66,"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":518595.43927,"endTime":519975.460834,"providerRequestId":"req_011CYyo3sBSKgfwDhVw2nQd8","statusCode":200,"providerResponseId":"msg_01KJuhRQU2jX5otB38xymtw9"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":518595.43927,"endTime":519975.460834,"providerRequestId":"req_011CYyo3sBSKgfwDhVw2nQd8","statusCode":200,"providerResponseId":"msg_01KJuhRQU2jX5otB38xymtw9"}]}],"totalProviderAttemptCount":1},"cost":"0.002172","marketCost":"0.002172","generationId":"gen_01KKHTSND812NZDS0MTHAP9G37","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":394,"completion_tokens":66,"total_tokens":460,"cost":0.002172,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002172},"system_fingerprint":"fp_46li7cdhsq","generationId":"gen_01KKHTSND812NZDS0MTHAP9G37"} data: [DONE] @@ -51,22 +51,22 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 2.320939125s + duration: 1.066485542s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 923 + content_length: 912 host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system","cache_control":{"type":"ephemeral"}},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"I''ll get the weather information for Florence, Italy for you.","tool_calls":[{"id":"toolu_01NEeARJCxoJWc8F8yKkyTK2","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function","cache_control":{"type":"ephemeral"}}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_01NEeARJCxoJWc8F8yKkyTK2","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system","cache_control":{"type":"ephemeral"}},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"I''ll check the weather in Florence, Italy for you.","tool_calls":[{"id":"toolu_01M5YDg4x4mT5NJ8zPJB7y3S","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function","cache_control":{"type":"ephemeral"}}],"role":"assistant"},{"content":"40 C","tool_call_id":"toolu_01M5YDg4x4mT5NJ8zPJB7y3S","role":"tool"}],"model":"anthropic/claude-sonnet-4","max_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -75,37 +75,39 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF3ACA8VVD000VSTT20BPP5","object":"chat.completion.chunk","created":1770033330,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_273kaqn10v"} + data: {"id":"gen_01KKHTSPYA281H4TCZCMY6VRZ8","object":"chat.completion.chunk","created":1773346283,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_dphiy253um"} - data: {"id":"gen_01KGF3ACA8VVD000VSTT20BPP5","object":"chat.completion.chunk","created":1770033330,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"The current"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_273kaqn10v"} + data: {"id":"gen_01KKHTSPYA281H4TCZCMY6VRZ8","object":"chat.completion.chunk","created":1773346283,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_dphiy253um"} - data: {"id":"gen_01KGF3ACA8VVD000VSTT20BPP5","object":"chat.completion.chunk","created":1770033330,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" weather in Florence, Italy is 40"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_273kaqn10v"} + data: {"id":"gen_01KKHTSPYA281H4TCZCMY6VRZ8","object":"chat.completion.chunk","created":1773346283,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" current"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_dphiy253um"} - data: {"id":"gen_01KGF3ACA8VVD000VSTT20BPP5","object":"chat.completion.chunk","created":1770033330,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"°C (104°F). That"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_273kaqn10v"} + data: {"id":"gen_01KKHTSPYA281H4TCZCMY6VRZ8","object":"chat.completion.chunk","created":1773346283,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" weather in Florence, Italy is 40"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_dphiy253um"} - data: {"id":"gen_01KGF3ACA8VVD000VSTT20BPP5","object":"chat.completion.chunk","created":1770033330,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"'s quite"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_273kaqn10v"} + data: {"id":"gen_01KKHTSPYA281H4TCZCMY6VRZ8","object":"chat.completion.chunk","created":1773346283,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"°C (104°F). That"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_dphiy253um"} - data: {"id":"gen_01KGF3ACA8VVD000VSTT20BPP5","object":"chat.completion.chunk","created":1770033330,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" hot"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_273kaqn10v"} + data: {"id":"gen_01KKHTSPYA281H4TCZCMY6VRZ8","object":"chat.completion.chunk","created":1773346283,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"'s quite"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_dphiy253um"} - data: {"id":"gen_01KGF3ACA8VVD000VSTT20BPP5","object":"chat.completion.chunk","created":1770033330,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"! If"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_273kaqn10v"} + data: {"id":"gen_01KKHTSPYA281H4TCZCMY6VRZ8","object":"chat.completion.chunk","created":1773346283,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" hot"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_dphiy253um"} - data: {"id":"gen_01KGF3ACA8VVD000VSTT20BPP5","object":"chat.completion.chunk","created":1770033330,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" you're planning to visit or"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_273kaqn10v"} + data: {"id":"gen_01KKHTSPYA281H4TCZCMY6VRZ8","object":"chat.completion.chunk","created":1773346283,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"!"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_dphiy253um"} - data: {"id":"gen_01KGF3ACA8VVD000VSTT20BPP5","object":"chat.completion.chunk","created":1770033330,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" are currently"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_273kaqn10v"} + data: {"id":"gen_01KKHTSPYA281H4TCZCMY6VRZ8","object":"chat.completion.chunk","created":1773346283,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" Make"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_dphiy253um"} - data: {"id":"gen_01KGF3ACA8VVD000VSTT20BPP5","object":"chat.completion.chunk","created":1770033330,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" there, make"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_273kaqn10v"} + data: {"id":"gen_01KKHTSPYA281H4TCZCMY6VRZ8","object":"chat.completion.chunk","created":1773346283,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" sure to"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_dphiy253um"} - data: {"id":"gen_01KGF3ACA8VVD000VSTT20BPP5","object":"chat.completion.chunk","created":1770033330,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" sure to"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_273kaqn10v"} + data: {"id":"gen_01KKHTSPYA281H4TCZCMY6VRZ8","object":"chat.completion.chunk","created":1773346283,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" stay"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_dphiy253um"} - data: {"id":"gen_01KGF3ACA8VVD000VSTT20BPP5","object":"chat.completion.chunk","created":1770033330,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" stay"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_273kaqn10v"} + data: {"id":"gen_01KKHTSPYA281H4TCZCMY6VRZ8","object":"chat.completion.chunk","created":1773346283,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" hydrated and seek"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_dphiy253um"} - data: {"id":"gen_01KGF3ACA8VVD000VSTT20BPP5","object":"chat.completion.chunk","created":1770033330,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" hydrated and seek"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_273kaqn10v"} + data: {"id":"gen_01KKHTSPYA281H4TCZCMY6VRZ8","object":"chat.completion.chunk","created":1773346283,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" shade if"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_dphiy253um"} - data: {"id":"gen_01KGF3ACA8VVD000VSTT20BPP5","object":"chat.completion.chunk","created":1770033330,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" shade during the hottest parts of the"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_273kaqn10v"} + data: {"id":"gen_01KKHTSPYA281H4TCZCMY6VRZ8","object":"chat.completion.chunk","created":1773346283,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" you're planning to be"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_dphiy253um"} - data: {"id":"gen_01KGF3ACA8VVD000VSTT20BPP5","object":"chat.completion.chunk","created":1770033330,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" day."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_273kaqn10v"} + data: {"id":"gen_01KKHTSPYA281H4TCZCMY6VRZ8","object":"chat.completion.chunk","created":1773346283,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" outd"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_dphiy253um"} - data: {"id":"gen_01KGF3ACA8VVD000VSTT20BPP5","object":"chat.completion.chunk","created":1770033330,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":476,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":54,"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":7697797.908831,"endTime":7699158.038376,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":7697797.908831,"endTime":7699158.038376,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.002238","marketCost":"0.002238","generationId":"gen_01KGF3ACA8VVD000VSTT20BPP5","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":476,"completion_tokens":54,"total_tokens":530,"cost":0.002238,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002238},"system_fingerprint":"fp_273kaqn10v","generationId":"gen_01KGF3ACA8VVD000VSTT20BPP5"} + data: {"id":"gen_01KKHTSPYA281H4TCZCMY6VRZ8","object":"chat.completion.chunk","created":1773346283,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"oors."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_dphiy253um"} + + data: {"id":"gen_01KKHTSPYA281H4TCZCMY6VRZ8","object":"chat.completion.chunk","created":1773346283,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":475,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":43,"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":929522.882273,"endTime":931679.270343,"providerRequestId":"req_011CYyo3yyiZntUNi9utRggx","statusCode":200,"providerResponseId":"msg_0144nKXoXiuDDSEJg2bKu27z"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":929522.882273,"endTime":931679.270343,"providerRequestId":"req_011CYyo3yyiZntUNi9utRggx","statusCode":200,"providerResponseId":"msg_0144nKXoXiuDDSEJg2bKu27z"}]}],"totalProviderAttemptCount":1},"cost":"0.00207","marketCost":"0.00207","generationId":"gen_01KKHTSPYA281H4TCZCMY6VRZ8","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":475,"completion_tokens":43,"total_tokens":518,"cost":0.00207,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00207},"system_fingerprint":"fp_dphiy253um","generationId":"gen_01KKHTSPYA281H4TCZCMY6VRZ8"} data: [DONE] @@ -114,4 +116,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 1.463354875s + duration: 1.508029125s diff --git a/providertests/testdata/TestVercelThinking/claude-sonnet-4-sig/thinking-streaming.yaml b/providertests/testdata/TestVercelThinking/claude-sonnet-4-sig/thinking-streaming.yaml index cb7d1b4b15c269eb9d4b8a6c4ce2b23afec9fa75..933c05b0a0e87ed7d54fcea74bf4be1802ec92aa 100644 --- a/providertests/testdata/TestVercelThinking/claude-sonnet-4-sig/thinking-streaming.yaml +++ b/providertests/testdata/TestVercelThinking/claude-sonnet-4-sig/thinking-streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,55 +24,55 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":"The user is asking for","reasoning_details":[{"type":"reasoning.text","text":"The user is asking for","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":"The user is asking for","reasoning_details":[{"type":"reasoning.text","text":"The user is asking for","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" information for Florence, Italy. I have","reasoning_details":[{"type":"reasoning.text","text":" information for Florence, Italy. I have","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" information for Florence, Italy. I have","reasoning_details":[{"type":"reasoning.text","text":" information for Florence, Italy. I have","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" a","reasoning_details":[{"type":"reasoning.text","text":" a","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" access","reasoning_details":[{"type":"reasoning.text","text":" access","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" to a weather","reasoning_details":[{"type":"reasoning.text","text":" to a weather","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" function","reasoning_details":[{"type":"reasoning.text","text":" function","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" function","reasoning_details":[{"type":"reasoning.text","text":" function","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" available that takes","reasoning_details":[{"type":"reasoning.text","text":" available that takes","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" that takes","reasoning_details":[{"type":"reasoning.text","text":" that takes","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" a location parameter.","reasoning_details":[{"type":"reasoning.text","text":" a location parameter.","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" a location parameter. The","reasoning_details":[{"type":"reasoning.text","text":" a location parameter. The","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" The","reasoning_details":[{"type":"reasoning.text","text":" The","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" user has","reasoning_details":[{"type":"reasoning.text","text":" user has","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" location","reasoning_details":[{"type":"reasoning.text","text":" location","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" provided a","reasoning_details":[{"type":"reasoning.text","text":" provided a","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" specific","reasoning_details":[{"type":"reasoning.text","text":" specific","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" clearly","reasoning_details":[{"type":"reasoning.text","text":" clearly","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" location:","reasoning_details":[{"type":"reasoning.text","text":" location:","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" specified as \"Florence, Italy\" so","reasoning_details":[{"type":"reasoning.text","text":" specified as \"Florence, Italy\" so","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" \"Florence, Italy\". I have","reasoning_details":[{"type":"reasoning.text","text":" \"Florence, Italy\". I have","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" I have","reasoning_details":[{"type":"reasoning.text","text":" I have","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" all the required parameters to","reasoning_details":[{"type":"reasoning.text","text":" all the required parameters to","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" all the required parameters to","reasoning_details":[{"type":"reasoning.text","text":" all the required parameters to","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" make this function call.","reasoning_details":[{"type":"reasoning.text","text":" make this function call.","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" make the function call.","reasoning_details":[{"type":"reasoning.text","text":" make the function call.","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":"","reasoning_details":[{"type":"reasoning.text","text":"","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":"","reasoning_details":[{"type":"reasoning.text","text":"","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":"","reasoning_details":[{"type":"reasoning.text","text":"","signature":"EqoDCkYICxgCKkBZgA2aLmZQDmRH4RVCT4iXR95b6oYoMjp4e2kPdf2Po5wKmOD2b4fyCcDgesqaf1am+tK5ghnLAfrPp0kAa4ZmEgyr3vKacUE8Up4nmkEaDPSXiNk4qskaSGtX/SIwgMopXKoF3DpGk3fOv181uIm/f8HJ08ME1rmg6zZtGL4GtujpmslDyrwtjxrxO4smKpECS2RKM2atZyXfC1hyYQfo8sgorqv9FxMHT810784iWAY4BVOmNcynU6aIgYb9uBl/rcOGdPa+o7mRq6+RSDIruhx92GtIeX7RQc3rKFQ8X1OBN3onj6DgBAQaQtetnhOrYbnNKx9HU7KO2duHhdEonmJA/+mlA0lLoy/uuGXH+BDljjOxM9PtvO8vNgbeuFlgTwudm/y28jfdg/UuDF3EtsDDgfLsi3VOiHc5l6O719rluaMv+rlum8nfFZd8z9ZRuxg5W1ZB9WWbk/j9FOsDyi2XlPdmZcHz/Q8EfOBjXkIobPPeFO9/COPWffp614f5FgVYOU/IzQaobIPRxZrVgzdgMHuWN86ucRpk0rYi1Y2MGAE=","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":"","reasoning_details":[{"type":"reasoning.text","text":"","signature":"EqUDCkYICxgCKkB94vhGG6xKjNnGimHMfRxMKRoDnfxu8X0ubqexC/CZ0gU1q1TlbdRN/J4R0tWVpSFl6fFlfjxBILkP/+4vk0rsEgwiokH4mommeOQbO0kaDDeTcsDepWKtbzn7RCIwM9YXOvgQOWNhGfjjNVXcLf20mCH4hUPTSpIp3F2WEOxI0CLOTKxuwGTgRB4axXhdKowCQwf95zMeALPR1ZZHRXqVm3Dm8Lf9W0kR2/G/irnQLoTR/lxZ5gB6FqUdPqNJHXmn3r6KxrQlxTM97UEZ0hEZHhBvwLk24e4KQitX5oHkNp+XMFCzjaym/Pryfjo4qxde8drr9TmHH1ajVYHkXue2L/RWEDrbUWITgtUP0CgkbAGijhpdJm4xVIMLHOD2cJS2+gChTu85uzdvdowlgHwMB7G5rHR+c1NB/2BV9iwhgVMgVjZlGB0SZmUoPEvPr2ZW2Y56tpnQ5d5zl4GdxImJBTSzoQzEKoGxt94MsXE207I0sp5L0Zzm+p4bDGTU6V0SI+eumemcejIt9O/jlGFFLf539LcU1+qeMWFdpBgB","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"toolu_01BSgre5nzVkzeu74htYGhf9","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"toolu_01YVA3v6AcXDxaGjsKS8DiUq","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"loc"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"locati"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ation"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"on\": \"Flore"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\": \"Florenc"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"nce, Ital"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"e, It"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"y\"}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_iqjm7xgvli"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"aly\"}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_1e0wb1el6z"} - data: {"id":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","object":"chat.completion.chunk","created":1770033404,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":424,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":109,"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":162863.303643,"endTime":164602.735825,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":162863.303643,"endTime":164602.735825,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.002907","marketCost":"0.002907","generationId":"gen_01KGF3CMBNWVQFHD13H2B0XSBK","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":424,"completion_tokens":109,"total_tokens":533,"cost":0.002907,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002907},"system_fingerprint":"fp_iqjm7xgvli","generationId":"gen_01KGF3CMBNWVQFHD13H2B0XSBK"} + data: {"id":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","object":"chat.completion.chunk","created":1773346348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":424,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":111,"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":497829.598457,"endTime":500097.557676,"providerRequestId":"req_011CYyo8o5WrnbXNzSBKeyC5","statusCode":200,"providerResponseId":"msg_01X8A8EsxKzc7E6urRBoeCTP"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":497829.598457,"endTime":500097.557676,"providerRequestId":"req_011CYyo8o5WrnbXNzSBKeyC5","statusCode":200,"providerResponseId":"msg_01X8A8EsxKzc7E6urRBoeCTP"}]}],"totalProviderAttemptCount":1},"cost":"0.002937","marketCost":"0.002937","generationId":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":424,"completion_tokens":111,"total_tokens":535,"cost":0.002937,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002937},"system_fingerprint":"fp_1e0wb1el6z","generationId":"gen_01KKHTVPQBBT30Q2MRPZKYTGBC"} data: [DONE] @@ -81,22 +81,22 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 1.897754625s + duration: 1.531697833s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1993 + content_length: 2011 host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"toolu_01YVA3v6AcXDxaGjsKS8DiUq","function":{"arguments":"{\"location\": \"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_details":[{"format":"anthropic-claude-v1","index":0,"signature":"EqUDCkYICxgCKkB94vhGG6xKjNnGimHMfRxMKRoDnfxu8X0ubqexC/CZ0gU1q1TlbdRN/J4R0tWVpSFl6fFlfjxBILkP/+4vk0rsEgwiokH4mommeOQbO0kaDDeTcsDepWKtbzn7RCIwM9YXOvgQOWNhGfjjNVXcLf20mCH4hUPTSpIp3F2WEOxI0CLOTKxuwGTgRB4axXhdKowCQwf95zMeALPR1ZZHRXqVm3Dm8Lf9W0kR2/G/irnQLoTR/lxZ5gB6FqUdPqNJHXmn3r6KxrQlxTM97UEZ0hEZHhBvwLk24e4KQitX5oHkNp+XMFCzjaym/Pryfjo4qxde8drr9TmHH1ajVYHkXue2L/RWEDrbUWITgtUP0CgkbAGijhpdJm4xVIMLHOD2cJS2+gChTu85uzdvdowlgHwMB7G5rHR+c1NB/2BV9iwhgVMgVjZlGB0SZmUoPEvPr2ZW2Y56tpnQ5d5zl4GdxImJBTSzoQzEKoGxt94MsXE207I0sp5L0Zzm+p4bDGTU6V0SI+eumemcejIt9O/jlGFFLf539LcU1+qeMWFdpBgB","text":"The user is asking for weather information for Florence, Italy. I have a weather function available that takes a location parameter. The location is clearly specified as \"Florence, Italy\" so I have all the required parameters to make the function call.","type":"reasoning.text"}],"reasoning":"The user is asking for weather information for Florence, Italy. I have a weather function available that takes a location parameter. The location is clearly specified as \"Florence, Italy\" so I have all the required parameters to make the function call."},{"content":"40 C","tool_call_id":"toolu_01YVA3v6AcXDxaGjsKS8DiUq","role":"tool"}],"model":"anthropic/claude-sonnet-4","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":{"enabled":true},"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"toolu_01BSgre5nzVkzeu74htYGhf9","function":{"arguments":"{\"location\": \"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_details":[{"format":"anthropic-claude-v1","index":0,"signature":"EqoDCkYICxgCKkBZgA2aLmZQDmRH4RVCT4iXR95b6oYoMjp4e2kPdf2Po5wKmOD2b4fyCcDgesqaf1am+tK5ghnLAfrPp0kAa4ZmEgyr3vKacUE8Up4nmkEaDPSXiNk4qskaSGtX/SIwgMopXKoF3DpGk3fOv181uIm/f8HJ08ME1rmg6zZtGL4GtujpmslDyrwtjxrxO4smKpECS2RKM2atZyXfC1hyYQfo8sgorqv9FxMHT810784iWAY4BVOmNcynU6aIgYb9uBl/rcOGdPa+o7mRq6+RSDIruhx92GtIeX7RQc3rKFQ8X1OBN3onj6DgBAQaQtetnhOrYbnNKx9HU7KO2duHhdEonmJA/+mlA0lLoy/uuGXH+BDljjOxM9PtvO8vNgbeuFlgTwudm/y28jfdg/UuDF3EtsDDgfLsi3VOiHc5l6O719rluaMv+rlum8nfFZd8z9ZRuxg5W1ZB9WWbk/j9FOsDyi2XlPdmZcHz/Q8EfOBjXkIobPPeFO9/COPWffp614f5FgVYOU/IzQaobIPRxZrVgzdgMHuWN86ucRpk0rYi1Y2MGAE=","text":"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":"reasoning.text"}],"reasoning":"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."},{"content":"40 C","tool_call_id":"toolu_01BSgre5nzVkzeu74htYGhf9","role":"tool"}],"model":"anthropic/claude-sonnet-4","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":{"enabled":true},"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -105,27 +105,41 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF3CQFX23W6JXADQ1QTEY98","object":"chat.completion.chunk","created":1770033406,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_95h77ud38a"} + data: {"id":"gen_01KKHTVS46PBEVCGXG19NVGNMN","object":"chat.completion.chunk","created":1773346351,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pl8zjdnv4r"} - data: {"id":"gen_01KGF3CQFX23W6JXADQ1QTEY98","object":"chat.completion.chunk","created":1770033406,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"The current"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_95h77ud38a"} + data: {"id":"gen_01KKHTVS46PBEVCGXG19NVGNMN","object":"chat.completion.chunk","created":1773346351,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pl8zjdnv4r"} - data: {"id":"gen_01KGF3CQFX23W6JXADQ1QTEY98","object":"chat.completion.chunk","created":1770033406,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" weather in Florence, Italy is 40"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_95h77ud38a"} + data: {"id":"gen_01KKHTVS46PBEVCGXG19NVGNMN","object":"chat.completion.chunk","created":1773346351,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" current"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pl8zjdnv4r"} - data: {"id":"gen_01KGF3CQFX23W6JXADQ1QTEY98","object":"chat.completion.chunk","created":1770033406,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"°C (104°F). That"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_95h77ud38a"} + data: {"id":"gen_01KKHTVS46PBEVCGXG19NVGNMN","object":"chat.completion.chunk","created":1773346351,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" temperature"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pl8zjdnv4r"} - data: {"id":"gen_01KGF3CQFX23W6JXADQ1QTEY98","object":"chat.completion.chunk","created":1770033406,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"'s quite"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_95h77ud38a"} + data: {"id":"gen_01KKHTVS46PBEVCGXG19NVGNMN","object":"chat.completion.chunk","created":1773346351,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" in Florence, Italy is 40°"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pl8zjdnv4r"} - data: {"id":"gen_01KGF3CQFX23W6JXADQ1QTEY98","object":"chat.completion.chunk","created":1770033406,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" hot!"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_95h77ud38a"} + data: {"id":"gen_01KKHTVS46PBEVCGXG19NVGNMN","object":"chat.completion.chunk","created":1773346351,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"C (104°F). That"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pl8zjdnv4r"} - data: {"id":"gen_01KGF3CQFX23W6JXADQ1QTEY98","object":"chat.completion.chunk","created":1770033406,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" It"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_95h77ud38a"} + data: {"id":"gen_01KKHTVS46PBEVCGXG19NVGNMN","object":"chat.completion.chunk","created":1773346351,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"'s quite"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pl8zjdnv4r"} - data: {"id":"gen_01KGF3CQFX23W6JXADQ1QTEY98","object":"chat.completion.chunk","created":1770033406,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"'s a very"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_95h77ud38a"} + data: {"id":"gen_01KKHTVS46PBEVCGXG19NVGNMN","object":"chat.completion.chunk","created":1773346351,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" hot"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pl8zjdnv4r"} - data: {"id":"gen_01KGF3CQFX23W6JXADQ1QTEY98","object":"chat.completion.chunk","created":1770033406,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" warm day in"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_95h77ud38a"} + data: {"id":"gen_01KKHTVS46PBEVCGXG19NVGNMN","object":"chat.completion.chunk","created":1773346351,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"! Make"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pl8zjdnv4r"} - data: {"id":"gen_01KGF3CQFX23W6JXADQ1QTEY98","object":"chat.completion.chunk","created":1770033406,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" Florence."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_95h77ud38a"} + data: {"id":"gen_01KKHTVS46PBEVCGXG19NVGNMN","object":"chat.completion.chunk","created":1773346351,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" sure to"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pl8zjdnv4r"} - data: {"id":"gen_01KGF3CQFX23W6JXADQ1QTEY98","object":"chat.completion.chunk","created":1770033406,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":548,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":34,"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":4956.113352,"endTime":6171.847632,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":4956.113352,"endTime":6171.847632,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.002154","marketCost":"0.002154","generationId":"gen_01KGF3CQFX23W6JXADQ1QTEY98","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":548,"completion_tokens":34,"total_tokens":582,"cost":0.002154,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002154},"system_fingerprint":"fp_95h77ud38a","generationId":"gen_01KGF3CQFX23W6JXADQ1QTEY98"} + data: {"id":"gen_01KKHTVS46PBEVCGXG19NVGNMN","object":"chat.completion.chunk","created":1773346351,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" stay"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pl8zjdnv4r"} + + data: {"id":"gen_01KKHTVS46PBEVCGXG19NVGNMN","object":"chat.completion.chunk","created":1773346351,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" hydrated and seek"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pl8zjdnv4r"} + + data: {"id":"gen_01KKHTVS46PBEVCGXG19NVGNMN","object":"chat.completion.chunk","created":1773346351,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" shade"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pl8zjdnv4r"} + + data: {"id":"gen_01KKHTVS46PBEVCGXG19NVGNMN","object":"chat.completion.chunk","created":1773346351,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" if"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pl8zjdnv4r"} + + data: {"id":"gen_01KKHTVS46PBEVCGXG19NVGNMN","object":"chat.completion.chunk","created":1773346351,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" you're planning"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pl8zjdnv4r"} + + data: {"id":"gen_01KKHTVS46PBEVCGXG19NVGNMN","object":"chat.completion.chunk","created":1773346351,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" to be outd"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pl8zjdnv4r"} + + data: {"id":"gen_01KKHTVS46PBEVCGXG19NVGNMN","object":"chat.completion.chunk","created":1773346351,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"oors."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_pl8zjdnv4r"} + + data: {"id":"gen_01KKHTVS46PBEVCGXG19NVGNMN","object":"chat.completion.chunk","created":1773346351,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"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":43,"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":421755.257908,"endTime":423645.33994,"providerRequestId":"req_011CYyo8yjyBTzwqH112rSoj","statusCode":200,"providerResponseId":"msg_01C3XefUopNkLtipzXMQDdzG"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":421755.257908,"endTime":423645.33994,"providerRequestId":"req_011CYyo8yjyBTzwqH112rSoj","statusCode":200,"providerResponseId":"msg_01C3XefUopNkLtipzXMQDdzG"}]}],"totalProviderAttemptCount":1},"cost":"0.002295","marketCost":"0.002295","generationId":"gen_01KKHTVS46PBEVCGXG19NVGNMN","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":550,"completion_tokens":43,"total_tokens":593,"cost":0.002295,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002295},"system_fingerprint":"fp_pl8zjdnv4r","generationId":"gen_01KKHTVS46PBEVCGXG19NVGNMN"} data: [DONE] @@ -134,4 +148,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 1.345717s + duration: 1.136891417s diff --git a/providertests/testdata/TestVercelThinking/claude-sonnet-4-sig/thinking.yaml b/providertests/testdata/TestVercelThinking/claude-sonnet-4-sig/thinking.yaml index 574caa7ed5b7490adf1f1d1848c51ae2849e13a1..f72001cd806634bf06e4623e8154929c8b542b39 100644 --- a/providertests/testdata/TestVercelThinking/claude-sonnet-4-sig/thinking.yaml +++ b/providertests/testdata/TestVercelThinking/claude-sonnet-4-sig/thinking.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,28 +24,28 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF3CESJKXWS3VT4KZ7Z4H0S","object":"chat.completion","created":1770033398,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":null,"reasoning":"The user is asking for weather information for Florence, Italy. I have a weather function available that takes a location parameter. The location is clearly specified as \"Florence, Italy\" so I have all the required parameters to make the function call.","reasoning_details":[{"type":"reasoning.text","text":"The user is asking for weather information for Florence, Italy. I have a weather function available that takes a location parameter. The location is clearly specified as \"Florence, Italy\" so I have all the required parameters to make the function call.","signature":"EqUDCkYICxgCKkB94vhGG6xKjNnGimHMfRxMKRoDnfxu8X0ubqexC/CZ0gU1q1TlbdRN/J4R0tWVpSFl6fFlfjxBILkP/+4vk0rsEgxEmjcKGGfHXogpkvoaDIJiOn8VbzE+KqPLBCIwyk+17OatdTJTKgOrfaX2tZL5Qmx9Mm1mCs2Djj2mmm5pnDwGymarqbOQn4al+112KowCfd3UWJ1pnfvuMtHp4LCLBjiLWnPPq+gZnlgsNecPBSBXKDt73jMGOd0NQBN7lOOZBy2AR9oQzKpCbyH5CY475OUYjbr8Rz+Xi3JIBit+AL96bsHSares7CpY1y2KVT0d8EPZZMmRr2SEK0AYtccALMpN3n/+QTu0eOlC1Jsv1ygyiRhoPszCqW98h/OdlMzWQyLu60Hir9D91svBFCQ1umLHR3wiJQ/fN025OVtiffGmkjcYWuvEChRS+fN21kSeDOcjbU2nqhRBWJc61RFRjJ8scShRpYoTQn5tNOeSsRIgAfzfmYRK1tp3NzhGDbQM/t6ytgrsToE9ehXnyKIKCVknQl5mkfT3Jw5S+xgB","format":"anthropic-claude-v1","index":0}],"tool_calls":[{"id":"toolu_01QueSgW64L24gT3TZdWbizV","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"}}],"provider_metadata":{"anthropic":{"usage":{"input_tokens":424,"output_tokens":109,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":7765415.569026,"endTime":7767783.415776,"statusCode":200,"providerResponseId":"msg_015136shD3sTPiMES5sYeqsD"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.002907","marketCost":"0.002907","generationId":"gen_01KGF3CESJKXWS3VT4KZ7Z4H0S","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":424,"completion_tokens":109,"total_tokens":533,"cost":0.002907,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002907},"system_fingerprint":"fp_zqq5kppgz1","generationId":"gen_01KGF3CESJKXWS3VT4KZ7Z4H0S"}' + body: '{"id":"gen_01KKHTVHMJY8EZQHKVWXDFCEXF","object":"chat.completion","created":1773346345,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":null,"reasoning":"The user is asking for weather information for Florence, Italy. I have a weather function available that takes a location parameter. The user has provided the location as \"Florence, Italy\" which is clear and specific. I have all the required parameters to make the function call.","reasoning_details":[{"type":"reasoning.text","text":"The user is asking for weather information for Florence, Italy. I have a weather function available that takes a location parameter. The user has provided the location as \"Florence, Italy\" which is clear and specific. I have all the required parameters to make the function call.","signature":"EsADCkYICxgCKkCkWwaz9Lb+3sB9wwwIilgS6S4fUpSpc2HRpnQGFwxj4wdEqGpU3t2sUtj4upGk18R4zhY0BqCFtGS8yuzeAZ5vEgyLeAHn4lQW/hBztmkaDIaeOynDqjSpEIE3myIw3ZFO8WFwX6KcVEfI6XqKJvStPdSQ2PadzoEKwoY1jEDXJ+fEUx91PqVQBfiPlGxeKqcCySbppRNFbAq/krSQmJAulfiy+08By36PNaSwShgO5nRpIAwWz+EfAmnLMSeA8ocil7QHI/GxtI8lgiewTD97Uj+iDvXmh78w4TO2Vx6w5VqlwxItpF1DIAZU6CYqpLXkfHRzKajdxH9o92HIQvnuYe/yq31ObqO8NCPQyTSEqnjpqYy65kS3vjnHzEirRSeI1Mf5ymZrinV1Sg+7TJyUYw5m2XyZxyoROkwS2YQT+CwuEvDbA2bI5s0UUlpeyElNw1ucg8Teg07Prhus5lkGcSKn4G27DdIn5/XJfHCL8XCVcWy6UIOV7iS3XiFHOOXlEw/DQ1mLF23zgfJ5koBOLaSMjpBEANYmquMAeU/UcIIS+lCUFTmOxNSeUFmE32UF18tdUb7fFRgB","format":"anthropic-claude-v1","index":0}],"tool_calls":[{"id":"toolu_01Rje6C4UuMWbBmnprofAn6w","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"}}],"provider_metadata":{"anthropic":{"usage":{"input_tokens":424,"output_tokens":115,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1361460.3925,"endTime":1364001.130708,"statusCode":200,"providerResponseId":"msg_01SDAJnvsPKU4hLJrrdnjLXY"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1361460.3925,"endTime":1364001.130708,"statusCode":200,"providerResponseId":"msg_01SDAJnvsPKU4hLJrrdnjLXY"}]}],"totalProviderAttemptCount":1},"cost":"0.002997","marketCost":"0.002997","generationId":"gen_01KKHTVHMJY8EZQHKVWXDFCEXF","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":424,"completion_tokens":115,"total_tokens":539,"cost":0.002997,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002997},"system_fingerprint":"fp_y29xbjq057","generationId":"gen_01KKHTVHMJY8EZQHKVWXDFCEXF"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.513099333s + duration: 2.69811925s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1938 + content_length: 2028 host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"toolu_01QueSgW64L24gT3TZdWbizV","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_details":[{"format":"anthropic-claude-v1","index":0,"signature":"EqUDCkYICxgCKkB94vhGG6xKjNnGimHMfRxMKRoDnfxu8X0ubqexC/CZ0gU1q1TlbdRN/J4R0tWVpSFl6fFlfjxBILkP/+4vk0rsEgxEmjcKGGfHXogpkvoaDIJiOn8VbzE+KqPLBCIwyk+17OatdTJTKgOrfaX2tZL5Qmx9Mm1mCs2Djj2mmm5pnDwGymarqbOQn4al+112KowCfd3UWJ1pnfvuMtHp4LCLBjiLWnPPq+gZnlgsNecPBSBXKDt73jMGOd0NQBN7lOOZBy2AR9oQzKpCbyH5CY475OUYjbr8Rz+Xi3JIBit+AL96bsHSares7CpY1y2KVT0d8EPZZMmRr2SEK0AYtccALMpN3n/+QTu0eOlC1Jsv1ygyiRhoPszCqW98h/OdlMzWQyLu60Hir9D91svBFCQ1umLHR3wiJQ/fN025OVtiffGmkjcYWuvEChRS+fN21kSeDOcjbU2nqhRBWJc61RFRjJ8scShRpYoTQn5tNOeSsRIgAfzfmYRK1tp3NzhGDbQM/t6ytgrsToE9ehXnyKIKCVknQl5mkfT3Jw5S+xgB","text":"The user is asking for weather information for Florence, Italy. I have a weather function available that takes a location parameter. The location is clearly specified as \"Florence, Italy\" so I have all the required parameters to make the function call.","type":"reasoning.text"}],"reasoning":"The user is asking for weather information for Florence, Italy. I have a weather function available that takes a location parameter. The location is clearly specified as \"Florence, Italy\" so I have all the required parameters to make the function call."},{"content":"40 C","tool_call_id":"toolu_01QueSgW64L24gT3TZdWbizV","role":"tool"}],"model":"anthropic/claude-sonnet-4","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":{"enabled":true}}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"toolu_01Rje6C4UuMWbBmnprofAn6w","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_details":[{"format":"anthropic-claude-v1","index":0,"signature":"EsADCkYICxgCKkCkWwaz9Lb+3sB9wwwIilgS6S4fUpSpc2HRpnQGFwxj4wdEqGpU3t2sUtj4upGk18R4zhY0BqCFtGS8yuzeAZ5vEgyLeAHn4lQW/hBztmkaDIaeOynDqjSpEIE3myIw3ZFO8WFwX6KcVEfI6XqKJvStPdSQ2PadzoEKwoY1jEDXJ+fEUx91PqVQBfiPlGxeKqcCySbppRNFbAq/krSQmJAulfiy+08By36PNaSwShgO5nRpIAwWz+EfAmnLMSeA8ocil7QHI/GxtI8lgiewTD97Uj+iDvXmh78w4TO2Vx6w5VqlwxItpF1DIAZU6CYqpLXkfHRzKajdxH9o92HIQvnuYe/yq31ObqO8NCPQyTSEqnjpqYy65kS3vjnHzEirRSeI1Mf5ymZrinV1Sg+7TJyUYw5m2XyZxyoROkwS2YQT+CwuEvDbA2bI5s0UUlpeyElNw1ucg8Teg07Prhus5lkGcSKn4G27DdIn5/XJfHCL8XCVcWy6UIOV7iS3XiFHOOXlEw/DQ1mLF23zgfJ5koBOLaSMjpBEANYmquMAeU/UcIIS+lCUFTmOxNSeUFmE32UF18tdUb7fFRgB","text":"The user is asking for weather information for Florence, Italy. I have a weather function available that takes a location parameter. The user has provided the location as \"Florence, Italy\" which is clear and specific. I have all the required parameters to make the function call.","type":"reasoning.text"}],"reasoning":"The user is asking for weather information for Florence, Italy. I have a weather function available that takes a location parameter. The user has provided the location as \"Florence, Italy\" which is clear and specific. I have all the required parameters to make the function call."},{"content":"40 C","tool_call_id":"toolu_01Rje6C4UuMWbBmnprofAn6w","role":"tool"}],"model":"anthropic/claude-sonnet-4","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":{"enabled":true}}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF3CH7MBCX5TG98WJF2BTYT","object":"chat.completion","created":1770033402,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":"The current weather in Florence, Italy is 40°C (104°F). That''s quite hot! It''s a very warm day in Florence.","provider_metadata":{"anthropic":{"usage":{"input_tokens":548,"output_tokens":34,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1505902.416236,"endTime":1508977.489215,"statusCode":200,"providerResponseId":"msg_01RG65Q4UDkyK2BAznqpD7GE"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.002154","marketCost":"0.002154","generationId":"gen_01KGF3CH7MBCX5TG98WJF2BTYT","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":548,"completion_tokens":34,"total_tokens":582,"cost":0.002154,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002154},"system_fingerprint":"fp_9mdcax34m","generationId":"gen_01KGF3CH7MBCX5TG98WJF2BTYT"}' + body: '{"id":"gen_01KKHTVM93BHFWWQJVBD9HKCV9","object":"chat.completion","created":1773346347,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":"The current temperature in Florence, Italy is 40°C (104°F). That''s quite hot! It looks like Florence is experiencing very warm weather right now. You might want to stay hydrated and seek shade if you''re planning to be outdoors.","provider_metadata":{"anthropic":{"usage":{"input_tokens":554,"output_tokens":56,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1364217.95089,"endTime":1366119.08087,"statusCode":200,"providerResponseId":"msg_01UMKzHooPWZ46Rp2VirLu34"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1364217.95089,"endTime":1366119.08087,"statusCode":200,"providerResponseId":"msg_01UMKzHooPWZ46Rp2VirLu34"}]}],"totalProviderAttemptCount":1},"cost":"0.002502","marketCost":"0.002502","generationId":"gen_01KKHTVM93BHFWWQJVBD9HKCV9","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":554,"completion_tokens":56,"total_tokens":610,"cost":0.002502,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002502},"system_fingerprint":"fp_77rzd4q4c8","generationId":"gen_01KKHTVM93BHFWWQJVBD9HKCV9"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 3.165230708s + duration: 2.1491885s diff --git a/providertests/testdata/TestVercelThinking/claude-sonnet-4/thinking-streaming.yaml b/providertests/testdata/TestVercelThinking/claude-sonnet-4/thinking-streaming.yaml index d60e25640403d5d0adff33a0d52e788bdf2a11aa..30cf181cd851d71937869fa3cb263a4a7b207592 100644 --- a/providertests/testdata/TestVercelThinking/claude-sonnet-4/thinking-streaming.yaml +++ b/providertests/testdata/TestVercelThinking/claude-sonnet-4/thinking-streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,61 +24,53 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":"The user is asking for","reasoning_details":[{"type":"reasoning.text","text":"The user is asking for","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":"The user is asking for","reasoning_details":[{"type":"reasoning.text","text":"The user is asking for","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" information for Florence, Italy. I have","reasoning_details":[{"type":"reasoning.text","text":" information for Florence, Italy. I have","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" information for Florence, Italy. I have","reasoning_details":[{"type":"reasoning.text","text":" information for Florence, Italy. I have","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" a weather","reasoning_details":[{"type":"reasoning.text","text":" a weather","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" access to a","reasoning_details":[{"type":"reasoning.text","text":" access to a","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" function available","reasoning_details":[{"type":"reasoning.text","text":" function available","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" weather","reasoning_details":[{"type":"reasoning.text","text":" weather","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" that takes","reasoning_details":[{"type":"reasoning.text","text":" that takes","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" function","reasoning_details":[{"type":"reasoning.text","text":" function","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" a location parameter.","reasoning_details":[{"type":"reasoning.text","text":" a location parameter.","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" that takes a location parameter. The","reasoning_details":[{"type":"reasoning.text","text":" that takes a location parameter. The","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" The","reasoning_details":[{"type":"reasoning.text","text":" The","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" location","reasoning_details":[{"type":"reasoning.text","text":" location","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" user has","reasoning_details":[{"type":"reasoning.text","text":" user has","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" is","reasoning_details":[{"type":"reasoning.text","text":" is","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" provided the location as","reasoning_details":[{"type":"reasoning.text","text":" provided the location as","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" clearly","reasoning_details":[{"type":"reasoning.text","text":" clearly","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" \"Florence, Italy\" which","reasoning_details":[{"type":"reasoning.text","text":" \"Florence, Italy\" which","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" specified as \"Florence, Italy\" so","reasoning_details":[{"type":"reasoning.text","text":" specified as \"Florence, Italy\" so","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" is specific","reasoning_details":[{"type":"reasoning.text","text":" is specific","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" I have","reasoning_details":[{"type":"reasoning.text","text":" I have","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" enough for","reasoning_details":[{"type":"reasoning.text","text":" enough for","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" all the required parameters to make the function","reasoning_details":[{"type":"reasoning.text","text":" all the required parameters to make the function","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" the weather function.","reasoning_details":[{"type":"reasoning.text","text":" the weather function.","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" call.","reasoning_details":[{"type":"reasoning.text","text":" call.","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" I have","reasoning_details":[{"type":"reasoning.text","text":" I have","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":"","reasoning_details":[{"type":"reasoning.text","text":"","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" all the required parameters to make the function","reasoning_details":[{"type":"reasoning.text","text":" all the required parameters to make the function","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":"","reasoning_details":[{"type":"reasoning.text","text":"","signature":"EqUDCkYICxgCKkDNAndr2nJPVxOWwX0PlM1JjuprXAg/UBMu/1tmFzyWgKvMb7TATXkChgKDYkb8t6/RlymDHuTJgFvuy34LG7q5Egx4Cq5KSCvX7xe5xakaDN/clAX+XIfmYbXBnCIwGRqnuZSrFOBh+zN+qhVrdZ+5d+sL81Og26dZCg7nCGUQKzGR7ovii9+LiTuudmzzKowCwkJTF0PeYHoPNiRWkYbbGtrjgrWBirlh8ksqxniINAxFFRXAwnMfJ6HKqxG/n8smG2Uu2aC2vp0sUvUETcsWiwWlzFWlTuHoVdrzlV8pw6f98BcNUrw6GceJP8MLdpgVaTVVx/05ZWUuSylFnNA1J41HMobeL+z4bi3XJUGfBgFSQTTUG5eZPcEKztNkbQt+T+0JQpl6bTbIOvZQ6YKjqoWMFewupmxperaVvhFarDpK7J0wllfwwMFnCh3QnFX8d0GtEuHr1m26XA0mzyIfNNgX2DboQXYgr7o4zuwU9Bi8Kru5XY4m5lNXYyB/nPfXIh9K37Ul4KcJNqtMNYPUH0SLmX6RjhoYXVCKdxgB","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":" call.","reasoning_details":[{"type":"reasoning.text","text":" call.","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"toolu_01L8DKSzJDJUgSqUJ6TDqfCH","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":"","reasoning_details":[{"type":"reasoning.text","text":"","signature":"","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"loca"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"reasoning":"","reasoning_details":[{"type":"reasoning.text","text":"","signature":"EtYDCkYICxgCKkD9mnV1Hds6SXvRNDaaVGP9IRFYqdtRgWJOe8g0L7Ud8hYHbJ+xtiLx6BOulBrCSpqk0qL0Ppqn5ZjggFDrpOl9Egxi/ODyXHn/gED5bk8aDDdrhkgNzG+ZAsd/4CIwZMUjUcbSZEuLEEhx8gHG8s25q5UMj5UqA0XYiTXvWMiyDOplOPRYIpyFzeBIzoHTKr0C51eUyyUS9b37iYdk2gZ5G+fU3BJMMgrDaNCSeiT6A47YXYO+w4sN60Fr3fXXyfNewEnfycIkFcsSUeoraqRtMXYmtpZ1U3hTMNf97Ve2ITFHwdKtZqo6KOV3PZEPPXBA8y59K6s+WD8kEKWb3126miv3moQ8fH2A5Dtk9bzXqNtWnAFI97JnnZgvmSH6tqYS2RkHMtj31LPaxYjWjqc2IusllrCoI1WEsu5bpABezlPKEWayq7FHjqUyeF+w4hEkQ4mjRjLHsVfNC2Pb79DEuGttQ8esezKiaVLhWZ8NngPU/Kv0J8Mtc0DTbBxlk58PMwO2zVeLAuthixkX5OiSfVtNVX3DDe4odTAxiFouPl5OOw964A+L6u27r+7nsurLHkZkrw7hpSP7saLGSUUX3++WmIFEZnz/d/cqCU4YAQ==","format":"anthropic-claude-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"tion\": \"Flor"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"toolu_01LCB6569oxJKyPag7eFnnjx","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"enc"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"loca"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"e, Italy"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"tio"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_v87huw1qog"} - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"n\": \"Flore"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} - - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"nc"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} - - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"e,"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} - - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" Italy\"}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_moyu1cwxfr"} - - data: {"id":"gen_01KGF3AVVKYFARGPVSM4MZY14H","object":"chat.completion.chunk","created":1770033348,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":424,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":118,"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":7093511.188939,"endTime":7097175.93529,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":7093511.188939,"endTime":7097175.93529,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.003042","marketCost":"0.003042","generationId":"gen_01KGF3AVVKYFARGPVSM4MZY14H","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":424,"completion_tokens":118,"total_tokens":542,"cost":0.003042,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.003042},"system_fingerprint":"fp_moyu1cwxfr","generationId":"gen_01KGF3AVVKYFARGPVSM4MZY14H"} + data: {"id":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","object":"chat.completion.chunk","created":1773346298,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":424,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":110,"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":369359.100927,"endTime":371647.826979,"providerRequestId":"req_011CYyo57GJ8sVyYvLToZWsF","statusCode":200,"providerResponseId":"msg_01PYMSHTNpGJCqPt2hUgsrBc"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":369359.100927,"endTime":371647.826979,"providerRequestId":"req_011CYyo57GJ8sVyYvLToZWsF","statusCode":200,"providerResponseId":"msg_01PYMSHTNpGJCqPt2hUgsrBc"}]}],"totalProviderAttemptCount":1},"cost":"0.002922","marketCost":"0.002922","generationId":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":424,"completion_tokens":110,"total_tokens":534,"cost":0.002922,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002922},"system_fingerprint":"fp_v87huw1qog","generationId":"gen_01KKHTT5W53GRP3A5WHWE2ZBCY"} data: [DONE] @@ -87,22 +79,22 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 3.850747333s + duration: 1.246093292s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2159 + content_length: 1993 host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"toolu_01LCB6569oxJKyPag7eFnnjx","function":{"arguments":"{\"location\": \"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_details":[{"format":"anthropic-claude-v1","index":0,"signature":"EtYDCkYICxgCKkD9mnV1Hds6SXvRNDaaVGP9IRFYqdtRgWJOe8g0L7Ud8hYHbJ+xtiLx6BOulBrCSpqk0qL0Ppqn5ZjggFDrpOl9Egxi/ODyXHn/gED5bk8aDDdrhkgNzG+ZAsd/4CIwZMUjUcbSZEuLEEhx8gHG8s25q5UMj5UqA0XYiTXvWMiyDOplOPRYIpyFzeBIzoHTKr0C51eUyyUS9b37iYdk2gZ5G+fU3BJMMgrDaNCSeiT6A47YXYO+w4sN60Fr3fXXyfNewEnfycIkFcsSUeoraqRtMXYmtpZ1U3hTMNf97Ve2ITFHwdKtZqo6KOV3PZEPPXBA8y59K6s+WD8kEKWb3126miv3moQ8fH2A5Dtk9bzXqNtWnAFI97JnnZgvmSH6tqYS2RkHMtj31LPaxYjWjqc2IusllrCoI1WEsu5bpABezlPKEWayq7FHjqUyeF+w4hEkQ4mjRjLHsVfNC2Pb79DEuGttQ8esezKiaVLhWZ8NngPU/Kv0J8Mtc0DTbBxlk58PMwO2zVeLAuthixkX5OiSfVtNVX3DDe4odTAxiFouPl5OOw964A+L6u27r+7nsurLHkZkrw7hpSP7saLGSUUX3++WmIFEZnz/d/cqCU4YAQ==","text":"The user is asking for weather information for Florence, Italy. I have a weather function available that takes a location parameter. The user has provided the location as \"Florence, Italy\" which is specific enough for the weather function. I have all the required parameters to make the function call.","type":"reasoning.text"}],"reasoning":"The user is asking for weather information for Florence, Italy. I have a weather function available that takes a location parameter. The user has provided the location as \"Florence, Italy\" which is specific enough for the weather function. I have all the required parameters to make the function call."},{"content":"40 C","tool_call_id":"toolu_01LCB6569oxJKyPag7eFnnjx","role":"tool"}],"model":"anthropic/claude-sonnet-4","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":{"enabled":true},"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"toolu_01L8DKSzJDJUgSqUJ6TDqfCH","function":{"arguments":"{\"location\": \"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_details":[{"format":"anthropic-claude-v1","index":0,"signature":"EqUDCkYICxgCKkDNAndr2nJPVxOWwX0PlM1JjuprXAg/UBMu/1tmFzyWgKvMb7TATXkChgKDYkb8t6/RlymDHuTJgFvuy34LG7q5Egx4Cq5KSCvX7xe5xakaDN/clAX+XIfmYbXBnCIwGRqnuZSrFOBh+zN+qhVrdZ+5d+sL81Og26dZCg7nCGUQKzGR7ovii9+LiTuudmzzKowCwkJTF0PeYHoPNiRWkYbbGtrjgrWBirlh8ksqxniINAxFFRXAwnMfJ6HKqxG/n8smG2Uu2aC2vp0sUvUETcsWiwWlzFWlTuHoVdrzlV8pw6f98BcNUrw6GceJP8MLdpgVaTVVx/05ZWUuSylFnNA1J41HMobeL+z4bi3XJUGfBgFSQTTUG5eZPcEKztNkbQt+T+0JQpl6bTbIOvZQ6YKjqoWMFewupmxperaVvhFarDpK7J0wllfwwMFnCh3QnFX8d0GtEuHr1m26XA0mzyIfNNgX2DboQXYgr7o4zuwU9Bi8Kru5XY4m5lNXYyB/nPfXIh9K37Ul4KcJNqtMNYPUH0SLmX6RjhoYXVCKdxgB","text":"The user is asking for weather information for Florence, Italy. I have access to a weather function that takes a location parameter. The location is clearly specified as \"Florence, Italy\" so I have all the required parameters to make the function call.","type":"reasoning.text"}],"reasoning":"The user is asking for weather information for Florence, Italy. I have access to a weather function that takes a location parameter. The location is clearly specified as \"Florence, Italy\" so I have all the required parameters to make the function call."},{"content":"40 C","tool_call_id":"toolu_01L8DKSzJDJUgSqUJ6TDqfCH","role":"tool"}],"model":"anthropic/claude-sonnet-4","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":{"enabled":true},"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -111,55 +103,33 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} - - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"The current"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} - - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" weather in Florence, Italy is 40"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} - - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"°C (104°F). That"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} - - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"'s quite"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} - - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" hot"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} - - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"! This is a"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} - - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" high"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} - - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" temperature that"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} - - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" suggests"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} - - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" very"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} - - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" warm,"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} + data: {"id":"gen_01KKHTT89CX2S9SSQ455GAA1X3","object":"chat.completion.chunk","created":1773346301,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_o85uf75mfs"} - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" potentially"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} + data: {"id":"gen_01KKHTT89CX2S9SSQ455GAA1X3","object":"chat.completion.chunk","created":1773346301,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_o85uf75mfs"} - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" uncomfortable"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} + data: {"id":"gen_01KKHTT89CX2S9SSQ455GAA1X3","object":"chat.completion.chunk","created":1773346301,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" current"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_o85uf75mfs"} - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" weather conditions"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} + data: {"id":"gen_01KKHTT89CX2S9SSQ455GAA1X3","object":"chat.completion.chunk","created":1773346301,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" weather in Florence, Italy is 40"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_o85uf75mfs"} - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":". You might want to stay"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} + data: {"id":"gen_01KKHTT89CX2S9SSQ455GAA1X3","object":"chat.completion.chunk","created":1773346301,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"°C (104°F). That"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_o85uf75mfs"} - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" hydrated and seek"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} + data: {"id":"gen_01KKHTT89CX2S9SSQ455GAA1X3","object":"chat.completion.chunk","created":1773346301,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"'s quite"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_o85uf75mfs"} - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" air"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} + data: {"id":"gen_01KKHTT89CX2S9SSQ455GAA1X3","object":"chat.completion.chunk","created":1773346301,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" hot"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_o85uf75mfs"} - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" conditioning"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} + data: {"id":"gen_01KKHTT89CX2S9SSQ455GAA1X3","object":"chat.completion.chunk","created":1773346301,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"!"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_o85uf75mfs"} - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" or shade if"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} + data: {"id":"gen_01KKHTT89CX2S9SSQ455GAA1X3","object":"chat.completion.chunk","created":1773346301,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" It"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_o85uf75mfs"} - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" you're planning to be in"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} + data: {"id":"gen_01KKHTT89CX2S9SSQ455GAA1X3","object":"chat.completion.chunk","created":1773346301,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"'s a very"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_o85uf75mfs"} - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" Florence"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} + data: {"id":"gen_01KKHTT89CX2S9SSQ455GAA1X3","object":"chat.completion.chunk","created":1773346301,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" warm day in"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_o85uf75mfs"} - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" today"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} + data: {"id":"gen_01KKHTT89CX2S9SSQ455GAA1X3","object":"chat.completion.chunk","created":1773346301,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":" Florence"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_o85uf75mfs"} - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_wkyq4vz6ii"} + data: {"id":"gen_01KKHTT89CX2S9SSQ455GAA1X3","object":"chat.completion.chunk","created":1773346301,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_o85uf75mfs"} - data: {"id":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","object":"chat.completion.chunk","created":1770033350,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":557,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":63,"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1456427.826085,"endTime":1457451.848654,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1456427.826085,"endTime":1457451.848654,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.002616","marketCost":"0.002616","generationId":"gen_01KGF3B0WTSB5GEBEY54E4B78Q","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":557,"completion_tokens":63,"total_tokens":620,"cost":0.002616,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002616},"system_fingerprint":"fp_wkyq4vz6ii","generationId":"gen_01KGF3B0WTSB5GEBEY54E4B78Q"} + data: {"id":"gen_01KKHTT89CX2S9SSQ455GAA1X3","object":"chat.completion.chunk","created":1773346301,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"delta":{"provider_metadata":{"anthropic":{"usage":{"input_tokens":549,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"output_tokens":34,"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1319014.543112,"endTime":1320609.154077,"providerRequestId":"req_011CYyo5HqXsVt85DyVY3Eth","statusCode":200,"providerResponseId":"msg_01CiFXVMZktbrtEF8RnZpdF5"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1319014.543112,"endTime":1320609.154077,"providerRequestId":"req_011CYyo5HqXsVt85DyVY3Eth","statusCode":200,"providerResponseId":"msg_01CiFXVMZktbrtEF8RnZpdF5"}]}],"totalProviderAttemptCount":1},"cost":"0.002157","marketCost":"0.002157","generationId":"gen_01KKHTT89CX2S9SSQ455GAA1X3","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":549,"completion_tokens":34,"total_tokens":583,"cost":0.002157,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002157},"system_fingerprint":"fp_o85uf75mfs","generationId":"gen_01KKHTT89CX2S9SSQ455GAA1X3"} data: [DONE] @@ -168,4 +138,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 1.12508025s + duration: 1.047528916s diff --git a/providertests/testdata/TestVercelThinking/claude-sonnet-4/thinking.yaml b/providertests/testdata/TestVercelThinking/claude-sonnet-4/thinking.yaml index 57198183090a6045a0d282a7eb93476e5d307c52..b092dc7fc923d5cebdb60e496a776e14fc31c4f9 100644 --- a/providertests/testdata/TestVercelThinking/claude-sonnet-4/thinking.yaml +++ b/providertests/testdata/TestVercelThinking/claude-sonnet-4/thinking.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,28 +24,28 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF3AQBSB35WNS62SPSARQ6W","object":"chat.completion","created":1770033342,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":null,"reasoning":"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 the location as \"Florence, Italy\" which is specific enough to use for the weather query.\n\nI should call the weather function with \"Florence, Italy\" as the location parameter.","reasoning_details":[{"type":"reasoning.text","text":"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 the location as \"Florence, Italy\" which is specific enough to use for the weather query.\n\nI should call the weather function with \"Florence, Italy\" as the location parameter.","signature":"EvcDCkYICxgCKkAcv+JiUJrSmNoeyAKGVOi/csdYyFzgyZwNioa99UTlL/tPju5ML6OZ4LOvKaFwaUZyzcNW4uQLu7jI2eVLu1iBEgz1tmAQP8hgL/Hy0u0aDBov3mK2gXR/f7z0iiIw8orugLuO+L2R5wuK35rGJkQhVHAphISN2F2FNjrGts/gbB+dJtP1ncNCWYFSp2NjKt4Cq7EYeQ0x9ie1oKSCG9n9bGZ0br1TVg4ClNZEQQou4gAMGZonFMnDy0uwPwk5F1rujCQbIJVzttyhb/lVmqUeEy/IFbYDmIi/1MAHlpN8qhX/0NhviIlZGobT7wzZUuNgQYT10+Wr8AfCNuHrMfjN1XnW+72e2p7QmcMEBcR8/sO24stZFAuTrnZytWOrINqsgbuEKcklViQw8RqQNkWUOGlOS+BOWZXIcLinY5LCPftHjLCKrFFG37bGwWKlWpbu9z/whcQ9UVE+TnrIdnhwdhxoljIbuzDBQTuY8MhlOXBzUujm6QaqxOWX0bnyPe+8eq+T1zsq3BLU2OLg5P/6rMZCYxrSjCTSnX0dM/UKxasn7cqT0QwWeVt1hMRDdO3heoFOfQgHmx9w4RuDvlZ9xh0xMKG/Amy8PhqU8tzE8U1+uMCl1PpaOa42MpcWleUklf24hkwZVqM488rdUjIYAQ==","format":"anthropic-claude-v1","index":0}],"tool_calls":[{"id":"toolu_01VvThmBhnhGHEcRJeyCRSHe","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"}}],"provider_metadata":{"anthropic":{"usage":{"input_tokens":424,"output_tokens":129,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":7088911.419434,"endTime":7091508.412367,"statusCode":200,"providerResponseId":"msg_01Um7d6HWfESfBhnukpiBeuy"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.003207","marketCost":"0.003207","generationId":"gen_01KGF3AQBSB35WNS62SPSARQ6W","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":424,"completion_tokens":129,"total_tokens":553,"cost":0.003207,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.003207},"system_fingerprint":"fp_da7b9rssdj","generationId":"gen_01KGF3AQBSB35WNS62SPSARQ6W"}' + body: '{"id":"gen_01KKHTT0QR1KQDH5FTB0AM2RN3","object":"chat.completion","created":1773346295,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":null,"reasoning":"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 should use this exact location string to get the weather information.\n\nLet me check the function parameters:\n- Function name: weather\n- Required parameter: location (string) - the city\n- The user provided: \"Florence, Italy\"\n\nI have all the required information to make the function call.","reasoning_details":[{"type":"reasoning.text","text":"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 should use this exact location string to get the weather information.\n\nLet me check the function parameters:\n- Function name: weather\n- Required parameter: location (string) - the city\n- The user provided: \"Florence, Italy\"\n\nI have all the required information to make the function call.","signature":"Eo0FCkYICxgCKkAZouqOwhFbVsJ36alXevsoi3MaUPP+ZBpLQKzRcoZpdoAomO1sBqhmbvZGH07kMEZY5AWJX6lJjcx7l2FGS6GGEgyelwhLgPouQDs5nw0aDKb6G2kBU68asCtRZCIwOZiFQ6DWAyP9SjFAog131HW24RxIDa7VOIEs2NmHXhmNTZRN9Wfl1t43A4z3302GKvQDqplPwkAtRCl7dhivzTjSYEPr8sEclqRNJsI+kCmXT5rMfUwcYfANAr3TxbueNZVRM7dt0idlHPACFpxHQw+VcqwBP6i9BLNC54vsHmehDzxmmlKXdhmJ2GcxCZySJ7GJCtF+OwBhzoqIfHOBLnkTA99nP9oxtISl0i6mJrLY9tmJtaFuToxg1I5aZ4IGS+AjnNducG3yRDAXcz7/ZvQTBWrqFyrcfY02e1o/KS0ODTEGgH2mRKIKxx9mmWdc+zjh9GaLXsLRWUZD4q7OL3C1z6sax/QubfR3Py1xuWvATLTxUaXIQb+N2KhL8ClXSKN/0gbnot1ZbCrof1WJK8xwBXRqQPqNi0e31YNz45nW6cbDbRF72YuSkCtxZYyO8gw4kc1Kss5M1RFPt8CUmcr3ki296kLqlV9GbOtKRAGEqUnNgrz2snJ2G0eQaGpfKTseGLUhGa6SgOovuQOhDzRHVtPdFYR32tTh2yct0m+Z5HNHhZF4lTn8tB5EnJh5Xw8KPpfO+BS5rPTaZ6Du4W58o9JluY4FkKab1B8muFQV5eO7ZsqYz9Xw8jk2Z0+hP9W73pUTtwPPpU52OOB9aR0XQ+UwLh5vJY0p2KDZHcYte9/625ksBLg/LyHyy19Qq2yhmLXJ40a7r/+OvOzsV78/6TcZ93gYAQ==","format":"anthropic-claude-v1","index":0}],"tool_calls":[{"id":"toolu_01JYUGCL9Kn2khh2rLQmQDVA","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"}}],"provider_metadata":{"anthropic":{"usage":{"input_tokens":424,"output_tokens":162,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1308759.372898,"endTime":1311916.773986,"statusCode":200,"providerResponseId":"msg_01ERY9uAfg85PFQRAUbSRFYF"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":1308759.372898,"endTime":1311916.773986,"statusCode":200,"providerResponseId":"msg_01ERY9uAfg85PFQRAUbSRFYF"}]}],"totalProviderAttemptCount":1},"cost":"0.003702","marketCost":"0.003702","generationId":"gen_01KKHTT0QR1KQDH5FTB0AM2RN3","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":424,"completion_tokens":162,"total_tokens":586,"cost":0.003702,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.003702},"system_fingerprint":"fp_d428pf7hvu","generationId":"gen_01KKHTT0QR1KQDH5FTB0AM2RN3"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.754280458s + duration: 3.339722833s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2226 + content_length: 2732 host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"toolu_01VvThmBhnhGHEcRJeyCRSHe","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning":"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 the location as \"Florence, Italy\" which is specific enough to use for the weather query.\n\nI should call the weather function with \"Florence, Italy\" as the location parameter.","reasoning_details":[{"format":"anthropic-claude-v1","index":0,"signature":"EvcDCkYICxgCKkAcv+JiUJrSmNoeyAKGVOi/csdYyFzgyZwNioa99UTlL/tPju5ML6OZ4LOvKaFwaUZyzcNW4uQLu7jI2eVLu1iBEgz1tmAQP8hgL/Hy0u0aDBov3mK2gXR/f7z0iiIw8orugLuO+L2R5wuK35rGJkQhVHAphISN2F2FNjrGts/gbB+dJtP1ncNCWYFSp2NjKt4Cq7EYeQ0x9ie1oKSCG9n9bGZ0br1TVg4ClNZEQQou4gAMGZonFMnDy0uwPwk5F1rujCQbIJVzttyhb/lVmqUeEy/IFbYDmIi/1MAHlpN8qhX/0NhviIlZGobT7wzZUuNgQYT10+Wr8AfCNuHrMfjN1XnW+72e2p7QmcMEBcR8/sO24stZFAuTrnZytWOrINqsgbuEKcklViQw8RqQNkWUOGlOS+BOWZXIcLinY5LCPftHjLCKrFFG37bGwWKlWpbu9z/whcQ9UVE+TnrIdnhwdhxoljIbuzDBQTuY8MhlOXBzUujm6QaqxOWX0bnyPe+8eq+T1zsq3BLU2OLg5P/6rMZCYxrSjCTSnX0dM/UKxasn7cqT0QwWeVt1hMRDdO3heoFOfQgHmx9w4RuDvlZ9xh0xMKG/Amy8PhqU8tzE8U1+uMCl1PpaOa42MpcWleUklf24hkwZVqM488rdUjIYAQ==","text":"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 the location as \"Florence, Italy\" which is specific enough to use for the weather query.\n\nI should call the weather function with \"Florence, Italy\" as the location parameter.","type":"reasoning.text"}]},{"content":"40 C","tool_call_id":"toolu_01VvThmBhnhGHEcRJeyCRSHe","role":"tool"}],"model":"anthropic/claude-sonnet-4","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":{"enabled":true}}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"toolu_01JYUGCL9Kn2khh2rLQmQDVA","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_details":[{"format":"anthropic-claude-v1","index":0,"signature":"Eo0FCkYICxgCKkAZouqOwhFbVsJ36alXevsoi3MaUPP+ZBpLQKzRcoZpdoAomO1sBqhmbvZGH07kMEZY5AWJX6lJjcx7l2FGS6GGEgyelwhLgPouQDs5nw0aDKb6G2kBU68asCtRZCIwOZiFQ6DWAyP9SjFAog131HW24RxIDa7VOIEs2NmHXhmNTZRN9Wfl1t43A4z3302GKvQDqplPwkAtRCl7dhivzTjSYEPr8sEclqRNJsI+kCmXT5rMfUwcYfANAr3TxbueNZVRM7dt0idlHPACFpxHQw+VcqwBP6i9BLNC54vsHmehDzxmmlKXdhmJ2GcxCZySJ7GJCtF+OwBhzoqIfHOBLnkTA99nP9oxtISl0i6mJrLY9tmJtaFuToxg1I5aZ4IGS+AjnNducG3yRDAXcz7/ZvQTBWrqFyrcfY02e1o/KS0ODTEGgH2mRKIKxx9mmWdc+zjh9GaLXsLRWUZD4q7OL3C1z6sax/QubfR3Py1xuWvATLTxUaXIQb+N2KhL8ClXSKN/0gbnot1ZbCrof1WJK8xwBXRqQPqNi0e31YNz45nW6cbDbRF72YuSkCtxZYyO8gw4kc1Kss5M1RFPt8CUmcr3ki296kLqlV9GbOtKRAGEqUnNgrz2snJ2G0eQaGpfKTseGLUhGa6SgOovuQOhDzRHVtPdFYR32tTh2yct0m+Z5HNHhZF4lTn8tB5EnJh5Xw8KPpfO+BS5rPTaZ6Du4W58o9JluY4FkKab1B8muFQV5eO7ZsqYz9Xw8jk2Z0+hP9W73pUTtwPPpU52OOB9aR0XQ+UwLh5vJY0p2KDZHcYte9/625ksBLg/LyHyy19Qq2yhmLXJ40a7r/+OvOzsV78/6TcZ93gYAQ==","text":"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 should use this exact location string to get the weather information.\n\nLet me check the function parameters:\n- Function name: weather\n- Required parameter: location (string) - the city\n- The user provided: \"Florence, Italy\"\n\nI have all the required information to make the function call.","type":"reasoning.text"}],"reasoning":"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 should use this exact location string to get the weather information.\n\nLet me check the function parameters:\n- Function name: weather\n- Required parameter: location (string) - the city\n- The user provided: \"Florence, Italy\"\n\nI have all the required information to make the function call."},{"content":"40 C","tool_call_id":"toolu_01JYUGCL9Kn2khh2rLQmQDVA","role":"tool"}],"model":"anthropic/claude-sonnet-4","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":{"enabled":true}}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF3AT2W4QFA7ZW3ASZ8571P","object":"chat.completion","created":1770033344,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":"The current weather in Florence, Italy is 40°C (104°F). That''s quite hot! It''s a very warm day in Florence.","provider_metadata":{"anthropic":{"usage":{"input_tokens":568,"output_tokens":34,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard"},"cacheCreationInputTokens":0,"stopSequence":null,"container":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":7712011.428399,"endTime":7713764.18868,"statusCode":200,"providerResponseId":"msg_01Xc77vidcSXUVZGp5byrDUm"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic/claude-sonnet-4","canonicalSlug":"anthropic/claude-sonnet-4","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.002214","marketCost":"0.002214","generationId":"gen_01KGF3AT2W4QFA7ZW3ASZ8571P","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":568,"completion_tokens":34,"total_tokens":602,"cost":0.002214,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002214},"system_fingerprint":"fp_k3wp9lnz45","generationId":"gen_01KGF3AT2W4QFA7ZW3ASZ8571P"}' + body: '{"id":"gen_01KKHTT41ESQC2R9YDN0BQQ7ZV","object":"chat.completion","created":1773346297,"model":"anthropic/claude-sonnet-4","choices":[{"index":0,"message":{"role":"assistant","content":"The weather in Florence, Italy is currently 40°C (104°F). That''s quite hot! It''s a very warm day in Florence.","provider_metadata":{"anthropic":{"usage":{"input_tokens":601,"output_tokens":34,"cache_creation_input_tokens":0,"cache_read_input_tokens":0,"cache_creation":{"ephemeral_5m_input_tokens":0,"ephemeral_1h_input_tokens":0},"service_tier":"standard","inference_geo":"not_available"},"cacheCreationInputTokens":0,"stopSequence":null,"iterations":null,"container":null,"contextManagement":null},"gateway":{"routing":{"originalModelId":"anthropic/claude-sonnet-4","resolvedProvider":"anthropic","resolvedProviderApiModelId":"claude-sonnet-4-20250514","internalResolvedModelId":"anthropic:claude-sonnet-4-20250514","fallbacksAvailable":["vertexAnthropic","bedrock"],"internalReasoning":"Selected anthropic as preferred provider for claude-sonnet-4. 2 fallback(s) available: vertexAnthropic, bedrock","planningReasoning":"System credentials planned for: anthropic, vertexAnthropic, bedrock. Total execution order: anthropic(system) → vertexAnthropic(system) → bedrock(system)","canonicalSlug":"anthropic/claude-sonnet-4","finalProvider":"anthropic","attempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":367668.002028,"endTime":369346.26482,"statusCode":200,"providerResponseId":"msg_011xUXeYHXV2GeRK87PcULLK"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"anthropic:claude-sonnet-4-20250514","canonicalSlug":"anthropic/claude-sonnet-4","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"anthropic","internalModelId":"anthropic:claude-sonnet-4-20250514","providerApiModelId":"claude-sonnet-4-20250514","credentialType":"system","success":true,"startTime":367668.002028,"endTime":369346.26482,"statusCode":200,"providerResponseId":"msg_011xUXeYHXV2GeRK87PcULLK"}]}],"totalProviderAttemptCount":1},"cost":"0.002313","marketCost":"0.002313","generationId":"gen_01KKHTT41ESQC2R9YDN0BQQ7ZV","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":601,"completion_tokens":34,"total_tokens":635,"cost":0.002313,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.002313},"system_fingerprint":"fp_eeuy9oiedh","generationId":"gen_01KKHTT41ESQC2R9YDN0BQQ7ZV"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 1.837599167s + duration: 1.901482417s diff --git a/providertests/testdata/TestVercelThinking/gemini-3-pro-preview/thinking-streaming.yaml b/providertests/testdata/TestVercelThinking/gemini-3-pro-preview/thinking-streaming.yaml index c43673bda15707364ba05a86f338eb7902dd6828..c4e205bfb7d306019db784d1504b1565868effd8 100644 --- a/providertests/testdata/TestVercelThinking/gemini-3-pro-preview/thinking-streaming.yaml +++ b/providertests/testdata/TestVercelThinking/gemini-3-pro-preview/thinking-streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,17 +24,17 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF3C0Q49GHB7YJE7PKYYXEK","object":"chat.completion.chunk","created":1770033385,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_q2vuvpzyv8"} + data: {"id":"gen_01KKHTVB9WRC8NGT5ZC2R0D858","object":"chat.completion.chunk","created":1773346339,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_p433c7t8nf"} - data: {"id":"gen_01KGF3C0Q49GHB7YJE7PKYYXEK","object":"chat.completion.chunk","created":1770033385,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"reasoning":"**Analyzing the User's Query**\n\nI'm focused on understanding the user's intent. My primary task is to identify the location for the weather query. It's evident the user wants weather data for Florence, Italy. I'll utilize the `weather` tool and set the `location` parameter accordingly.\n\n\n","reasoning_details":[{"type":"reasoning.text","text":"**Analyzing the User's Query**\n\nI'm focused on understanding the user's intent. My primary task is to identify the location for the weather query. It's evident the user wants weather data for Florence, Italy. I'll utilize the `weather` tool and set the `location` parameter accordingly.\n\n\n","format":"google-gemini-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_q2vuvpzyv8"} + data: {"id":"gen_01KKHTVB9WRC8NGT5ZC2R0D858","object":"chat.completion.chunk","created":1773346339,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"reasoning":"**Determining the Weather**\n\nI've identified the need to find weather information, specifically for Florence, Italy. The `weather` function looks like the right tool for the job. I now plan to use this function, with \"Florence, Italy\" as the specified location.\n\n\n","reasoning_details":[{"type":"reasoning.text","text":"**Determining the Weather**\n\nI've identified the need to find weather information, specifically for Florence, Italy. The `weather` function looks like the right tool for the job. I now plan to use this function, with \"Florence, Italy\" as the specified location.\n\n\n","format":"google-gemini-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_p433c7t8nf"} - data: {"id":"gen_01KGF3C0Q49GHB7YJE7PKYYXEK","object":"chat.completion.chunk","created":1770033385,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"SmUJTLmrRxi0lu0v","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_q2vuvpzyv8"} + data: {"id":"gen_01KKHTVB9WRC8NGT5ZC2R0D858","object":"chat.completion.chunk","created":1773346339,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"dEDMKZ3Jd0omXRAI","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_p433c7t8nf"} - data: {"id":"gen_01KGF3C0Q49GHB7YJE7PKYYXEK","object":"chat.completion.chunk","created":1770033385,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"location\":\"Florence, Italy\"}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_q2vuvpzyv8"} + data: {"id":"gen_01KKHTVB9WRC8NGT5ZC2R0D858","object":"chat.completion.chunk","created":1773346339,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\"location\":\"Florence, Italy\"}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_p433c7t8nf"} - data: {"id":"gen_01KGF3C0Q49GHB7YJE7PKYYXEK","object":"chat.completion.chunk","created":1770033385,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"reasoning_details":[{"type":"reasoning.encrypted","data":"CiQBjz1rXzHrIG8VyKxoyvNfn34I0fU0MFB3Xbo4yGmi5lXxz9oKZgGPPWtfH7TJlamiXjXsugVyW8VxgOUJprUjmiUwJi/stNqMS3LooRoUA1fBkdgztTDDIGWmRMXQtWqouGUTAeueCke7VJzsJm3GwC5Czg9laR24rLZ/AU+1oJpvT5AmZHm0AYnOGAp3AY89a1+1SkejrgsX83pkwVBjFrYRepT+UEelh8Kexyj/KndelV/yYbA+gWgGGSMKe4zq3JKh99Toc1/OqRXykl9qKTNXZj1xaIkP98KH/4mRnVw4Mvc3mE2R97bmzKTFSxzAlJ7+XFtYnZjg7PiNxuwEiZIlG3kKNAGPPWtfzlrIZvrYjj2PtuKOaHbd5iP/2u4dRMmmPZ8fi8DHZdSpnDnJAKI/TVQikZmdBZo=","format":"google-gemini-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_q2vuvpzyv8"} + data: {"id":"gen_01KKHTVB9WRC8NGT5ZC2R0D858","object":"chat.completion.chunk","created":1773346339,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"reasoning_details":[{"type":"reasoning.encrypted","data":"ClkBjz1rXyu/iVRBYGB7kj4h4fBbH2GfUNllgZdbYxVO6DLU7ioB+btKWRUu9KOf2ukWBRhiJlkp13MisyyX/cyBZdD3pLtpx+AxHk/p8F+Pimy9CEUvatCPjAprAY89a1+09sNY1Dq1Bgl+7P0ondLUifOYhwH7slpiYgwcY0Mo0z7PYnAjFvXapxVB5qM+v8IYF9vM0A45ylhiWMfZMTI2QCX6wCobMsyIfUvccD9jPTZhifECAwF9ByjJjucY6WoXUf/EW6UKqgEBjz1rX482god3h3483C9QfdoJ5GqI3cBheeWtr7uSCUvwpZMxtSlqt7A81xXIpxBxNkTyKPldjf1S2kkfOSVuitzuMpGzY/jT8Hs1aG7AD47fNQstRUvbfkmAgkok98WUThCVsKMBXOkoceA1GUN7sMjWrOGO4eaxrK45PrT1H7/BTvqhlNmBqkkUl2rF940AMP/TV2xXsK/PQLcEDncvE30L4bLOM3y7Vw==","format":"google-gemini-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_p433c7t8nf"} - data: {"id":"gen_01KGF3C0Q49GHB7YJE7PKYYXEK","object":"chat.completion.chunk","created":1770033385,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":39,"promptTokenCount":28,"candidatesTokenCount":9,"totalTokenCount":76,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":7750944.987373,"endTime":7754447.770022,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":7750944.987373,"endTime":7754447.770022,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.000632","marketCost":"0.000632","generationId":"gen_01KGF3C0Q49GHB7YJE7PKYYXEK","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":28,"completion_tokens":9,"total_tokens":37,"cost":0.000632,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":39,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000632},"system_fingerprint":"fp_q2vuvpzyv8","generationId":"gen_01KGF3C0Q49GHB7YJE7PKYYXEK"} + data: {"id":"gen_01KKHTVB9WRC8NGT5ZC2R0D858","object":"chat.completion.chunk","created":1773346339,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":61,"promptTokenCount":28,"candidatesTokenCount":9,"totalTokenCount":98,"trafficType":"PROVISIONED_THROUGHPUT"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1352331.501136,"endTime":1355272.626807,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1352331.501136,"endTime":1355272.626807,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.000896","marketCost":"0.000896","generationId":"gen_01KKHTVB9WRC8NGT5ZC2R0D858","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":28,"completion_tokens":9,"total_tokens":37,"cost":0.000896,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":61,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000896},"system_fingerprint":"fp_p433c7t8nf","generationId":"gen_01KKHTVB9WRC8NGT5ZC2R0D858"} data: [DONE] @@ -43,22 +43,22 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 3.681428625s + duration: 3.112736667s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1286 + content_length: 1362 host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"SmUJTLmrRxi0lu0v","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_details":[{"data":"CiQBjz1rXzHrIG8VyKxoyvNfn34I0fU0MFB3Xbo4yGmi5lXxz9oKZgGPPWtfH7TJlamiXjXsugVyW8VxgOUJprUjmiUwJi/stNqMS3LooRoUA1fBkdgztTDDIGWmRMXQtWqouGUTAeueCke7VJzsJm3GwC5Czg9laR24rLZ/AU+1oJpvT5AmZHm0AYnOGAp3AY89a1+1SkejrgsX83pkwVBjFrYRepT+UEelh8Kexyj/KndelV/yYbA+gWgGGSMKe4zq3JKh99Toc1/OqRXykl9qKTNXZj1xaIkP98KH/4mRnVw4Mvc3mE2R97bmzKTFSxzAlJ7+XFtYnZjg7PiNxuwEiZIlG3kKNAGPPWtfzlrIZvrYjj2PtuKOaHbd5iP/2u4dRMmmPZ8fi8DHZdSpnDnJAKI/TVQikZmdBZo=","format":"google-gemini-v1","index":0,"type":"reasoning.encrypted"}]},{"content":"40 C","tool_call_id":"SmUJTLmrRxi0lu0v","role":"tool"}],"model":"google/gemini-3-pro-preview","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":{"enabled":true},"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"dEDMKZ3Jd0omXRAI","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_details":[{"data":"ClkBjz1rXyu/iVRBYGB7kj4h4fBbH2GfUNllgZdbYxVO6DLU7ioB+btKWRUu9KOf2ukWBRhiJlkp13MisyyX/cyBZdD3pLtpx+AxHk/p8F+Pimy9CEUvatCPjAprAY89a1+09sNY1Dq1Bgl+7P0ondLUifOYhwH7slpiYgwcY0Mo0z7PYnAjFvXapxVB5qM+v8IYF9vM0A45ylhiWMfZMTI2QCX6wCobMsyIfUvccD9jPTZhifECAwF9ByjJjucY6WoXUf/EW6UKqgEBjz1rX482god3h3483C9QfdoJ5GqI3cBheeWtr7uSCUvwpZMxtSlqt7A81xXIpxBxNkTyKPldjf1S2kkfOSVuitzuMpGzY/jT8Hs1aG7AD47fNQstRUvbfkmAgkok98WUThCVsKMBXOkoceA1GUN7sMjWrOGO4eaxrK45PrT1H7/BTvqhlNmBqkkUl2rF940AMP/TV2xXsK/PQLcEDncvE30L4bLOM3y7Vw==","format":"google-gemini-v1","index":0,"type":"reasoning.encrypted"}]},{"content":"40 C","tool_call_id":"dEDMKZ3Jd0omXRAI","role":"tool"}],"model":"google/gemini-3-pro-preview","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":{"enabled":true},"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -67,15 +67,15 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF3C4C0A7ZEXSENPBN82KKW","object":"chat.completion.chunk","created":1770033396,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kt7kxbesam"} + data: {"id":"gen_01KKHTVEAVVMNRR75QR8NY92FE","object":"chat.completion.chunk","created":1773346342,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_78a4119et1"} - data: {"id":"gen_01KGF3C4C0A7ZEXSENPBN82KKW","object":"chat.completion.chunk","created":1770033396,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"reasoning":"**Analyzing Weather Data**\n\nI've just received the weather data for Florence. My current task is to clearly convey the 40 degrees Celsius temperature reading to the user. I'm focusing on the best way to present this information so it's easily understood and actionable.\n\n\n","reasoning_details":[{"type":"reasoning.text","text":"**Analyzing Weather Data**\n\nI've just received the weather data for Florence. My current task is to clearly convey the 40 degrees Celsius temperature reading to the user. I'm focusing on the best way to present this information so it's easily understood and actionable.\n\n\n","format":"google-gemini-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kt7kxbesam"} + data: {"id":"gen_01KKHTVEAVVMNRR75QR8NY92FE","object":"chat.completion.chunk","created":1773346342,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"reasoning":"**Reporting the Temperature**\n\nI've got the temperature data from the weather tool - a blistering 40 degrees Celsius. My next step is to compose the user's response. I'll provide a straightforward statement, informing them of the current temperature in Florence, Italy, in a clear and concise manner.\n\n\n","reasoning_details":[{"type":"reasoning.text","text":"**Reporting the Temperature**\n\nI've got the temperature data from the weather tool - a blistering 40 degrees Celsius. My next step is to compose the user's response. I'll provide a straightforward statement, informing them of the current temperature in Florence, Italy, in a clear and concise manner.\n\n\n","format":"google-gemini-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_78a4119et1"} - data: {"id":"gen_01KGF3C4C0A7ZEXSENPBN82KKW","object":"chat.completion.chunk","created":1770033396,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"content":"The current weather in Florence"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kt7kxbesam"} + data: {"id":"gen_01KKHTVEAVVMNRR75QR8NY92FE","object":"chat.completion.chunk","created":1773346342,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"content":"The weather in Florence, Italy is currently 40°C."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_78a4119et1"} - data: {"id":"gen_01KGF3C4C0A7ZEXSENPBN82KKW","object":"chat.completion.chunk","created":1770033396,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"content":", Italy is 40°C."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kt7kxbesam"} + data: {"id":"gen_01KKHTVEAVVMNRR75QR8NY92FE","object":"chat.completion.chunk","created":1773346342,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"reasoning_details":[{"type":"reasoning.encrypted","data":"CiQBjz1rX1winmM/gsH60gpn4tqtg7T+Q0LtbLj25DdjkTWD8NoKbQGPPWtf8Icc1lIzHccnz8W0n8QPDUCDHpuKMkTdCUxw25CrCTi+Ujkzhm+yjCC13riuOlhp6VxtM/gCj/FBYsGzKRFsACtOVAfPa8C52FKgVok7Vgah65IbTWUBpPmr5lvQZetR2zyP4IgGQjMKfAGPPWtfjglUCeoXTm7LIUOP0kYsvi7KX1Yd99Sg/qSVoswXGtr/frnV4UnzfSBUZp9Km3RunzVvq2sPe1X4seaEBmcqxvEWK7smP2pWWrbyqcxe/fMBmPTFeSGMaMB74TCt8Tw5G/2XdB1QhICA0dw/6+hZVMlXVxT9CBEKNAGPPWtfOUyNrSpxNJJ8PMmUQabxECYymJY0n6VbJ40YIOKZD16cNW/wmBsmziWCrjv/3Fo=","format":"google-gemini-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_78a4119et1"} - data: {"id":"gen_01KGF3C4C0A7ZEXSENPBN82KKW","object":"chat.completion.chunk","created":1770033396,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":29,"promptTokenCount":40,"candidatesTokenCount":14,"totalTokenCount":83,"trafficType":"ON_DEMAND"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1491866.50627,"endTime":1502204.735086,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1491866.50627,"endTime":1502204.735086,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.000596","marketCost":"0.000596","generationId":"gen_01KGF3C4C0A7ZEXSENPBN82KKW","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":40,"completion_tokens":14,"total_tokens":54,"cost":0.000596,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":29,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000596},"system_fingerprint":"fp_kt7kxbesam","generationId":"gen_01KGF3C4C0A7ZEXSENPBN82KKW"} + data: {"id":"gen_01KKHTVEAVVMNRR75QR8NY92FE","object":"chat.completion.chunk","created":1773346342,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"delta":{"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":43,"promptTokenCount":40,"candidatesTokenCount":14,"totalTokenCount":97,"trafficType":"PROVISIONED_THROUGHPUT"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1358169.871752,"endTime":1361371.243194,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1358169.871752,"endTime":1361371.243194,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.000764","marketCost":"0.000764","generationId":"gen_01KKHTVEAVVMNRR75QR8NY92FE","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":40,"completion_tokens":14,"total_tokens":54,"cost":0.000764,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":43,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000764},"system_fingerprint":"fp_78a4119et1","generationId":"gen_01KKHTVEAVVMNRR75QR8NY92FE"} data: [DONE] @@ -84,4 +84,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 10.48104525s + duration: 3.335622417s diff --git a/providertests/testdata/TestVercelThinking/gemini-3-pro-preview/thinking.yaml b/providertests/testdata/TestVercelThinking/gemini-3-pro-preview/thinking.yaml index 5dc01fb6a05b8f842a1ef95b90b6860815c301ce..b7d8e542de9663e31086bb13e3bdbf50a2cd8679 100644 --- a/providertests/testdata/TestVercelThinking/gemini-3-pro-preview/thinking.yaml +++ b/providertests/testdata/TestVercelThinking/gemini-3-pro-preview/thinking.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,28 +24,28 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF3BTEQ7ZXNXTXM5HCM0ZW5","object":"chat.completion","created":1770033379,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"message":{"role":"assistant","content":null,"reasoning":"**Determining the Weather**\n\nI''ve identified the need for weather data. I believe the `weather` function is a solid choice. It''s now a matter of calling this function. I''ll pass it ''Florence, Italy'' to retrieve the current conditions.\n\n\n","reasoning_details":[{"type":"reasoning.text","text":"**Determining the Weather**\n\nI''ve identified the need for weather data. I believe the `weather` function is a solid choice. It''s now a matter of calling this function. I''ll pass it ''Florence, Italy'' to retrieve the current conditions.\n\n\n","format":"google-gemini-v1","index":0}],"tool_calls":[{"id":"Zwo8e1JcXjoJ0bPs","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"}}],"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":67,"promptTokenCount":28,"candidatesTokenCount":9,"totalTokenCount":104,"trafficType":"PROVISIONED_THROUGHPUT"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":390947.964322,"endTime":394738.481613,"statusCode":200,"providerResponseId":"35CAacnTN9X8tfAPg7j5QA"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.000968","marketCost":"0.000968","generationId":"gen_01KGF3BTEQ7ZXNXTXM5HCM0ZW5","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":28,"completion_tokens":9,"total_tokens":37,"cost":0.000968,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":67,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000968},"system_fingerprint":"fp_t3b6jfaxsx","generationId":"gen_01KGF3BTEQ7ZXNXTXM5HCM0ZW5"}' + body: '{"id":"gen_01KKHTV30Q2RFH0VSMWRH42TGX","object":"chat.completion","created":1773346331,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"message":{"role":"assistant","content":null,"reasoning":"**Retrieving Weather Data**\n\nI''m zeroing in on the user''s request: weather in Florence, Italy. My plan is to use the `get_weather` tool, it needs a location. The user helpfully gave me \"Florence, Italy,\" which perfectly fits the location parameter. It''s a straightforward execution, call the tool with the provided location.\n\n\n","reasoning_details":[{"type":"reasoning.text","text":"**Retrieving Weather Data**\n\nI''m zeroing in on the user''s request: weather in Florence, Italy. My plan is to use the `get_weather` tool, it needs a location. The user helpfully gave me \"Florence, Italy,\" which perfectly fits the location parameter. It''s a straightforward execution, call the tool with the provided location.\n\n\n","format":"google-gemini-v1","index":0}],"tool_calls":[{"id":"BgmJlIfqJnTEdHBD","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"}}],"provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"thoughtsTokenCount":69,"promptTokenCount":28,"candidatesTokenCount":9,"totalTokenCount":106,"trafficType":"PROVISIONED_THROUGHPUT"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":399448.110594,"endTime":403222.368787,"statusCode":200,"providerResponseId":"Fx6zae-vJ5aB4OUP3ZyqqAM"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":399448.110594,"endTime":403222.368787,"statusCode":200,"providerResponseId":"Fx6zae-vJ5aB4OUP3ZyqqAM"}]}],"totalProviderAttemptCount":1},"cost":"0.000992","marketCost":"0.000992","generationId":"gen_01KKHTV30Q2RFH0VSMWRH42TGX","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":28,"completion_tokens":9,"total_tokens":37,"cost":0.000992,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":69,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000992},"system_fingerprint":"fp_um0c00bp7j","generationId":"gen_01KKHTV30Q2RFH0VSMWRH42TGX"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 4.135991625s + duration: 4.049746125s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1114 + content_length: 1206 host: "" - body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"Zwo8e1JcXjoJ0bPs","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_details":[{"format":"google-gemini-v1","index":0,"text":"**Determining the Weather**\n\nI''ve identified the need for weather data. I believe the `weather` function is a solid choice. It''s now a matter of calling this function. I''ll pass it ''Florence, Italy'' to retrieve the current conditions.\n\n\n","type":"reasoning.text"},{"format":"google-gemini-v1","index":0,"type":"reasoning.encrypted"}]},{"content":"40 C","tool_call_id":"Zwo8e1JcXjoJ0bPs","role":"tool"}],"model":"google/gemini-3-pro-preview","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":{"enabled":true}}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"BgmJlIfqJnTEdHBD","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_details":[{"format":"google-gemini-v1","index":0,"text":"**Retrieving Weather Data**\n\nI''m zeroing in on the user''s request: weather in Florence, Italy. My plan is to use the `get_weather` tool, it needs a location. The user helpfully gave me \"Florence, Italy,\" which perfectly fits the location parameter. It''s a straightforward execution, call the tool with the provided location.\n\n\n","type":"reasoning.text"},{"format":"google-gemini-v1","index":0,"type":"reasoning.encrypted"}]},{"content":"40 C","tool_call_id":"BgmJlIfqJnTEdHBD","role":"tool"}],"model":"google/gemini-3-pro-preview","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":{"enabled":true}}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF3BYDZXE5BFFQQRPX4SSCP","object":"chat.completion","created":1770033382,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"message":{"role":"assistant","content":"The current temperature in Florence, Italy is 40°C.","provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"promptTokenCount":97,"candidatesTokenCount":14,"totalTokenCount":111,"trafficType":"PROVISIONED_THROUGHPUT"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":7748615.626226,"endTime":7750847.973285,"statusCode":200,"providerResponseId":"45CAae7FNaahmPUPueDE6QU"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"google/gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.000362","marketCost":"0.000362","generationId":"gen_01KGF3BYDZXE5BFFQQRPX4SSCP","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":97,"completion_tokens":14,"total_tokens":111,"cost":0.000362,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000362},"system_fingerprint":"fp_02078i909k","generationId":"gen_01KGF3BYDZXE5BFFQQRPX4SSCP"}' + body: '{"id":"gen_01KKHTV6ZD9RXTEJ0JP2HT9ZN0","object":"chat.completion","created":1773346335,"model":"google/gemini-3-pro-preview","choices":[{"index":0,"message":{"role":"assistant","content":"The weather in Florence, Italy is currently 40°C.","provider_metadata":{"google":{"promptFeedback":null,"groundingMetadata":null,"urlContextMetadata":null,"safetyRatings":null,"usageMetadata":{"promptTokenCount":118,"candidatesTokenCount":14,"totalTokenCount":132,"trafficType":"PROVISIONED_THROUGHPUT"}},"gateway":{"routing":{"originalModelId":"google/gemini-3-pro-preview","resolvedProvider":"vertex","resolvedProviderApiModelId":"gemini-3-pro-preview","internalResolvedModelId":"vertex:gemini-3-pro-preview","fallbacksAvailable":["google"],"internalReasoning":"Selected vertex as preferred provider for gemini-3-pro-preview. 1 fallback(s) available: google","planningReasoning":"System credentials planned for: vertex, google. Total execution order: vertex(system) → google(system)","canonicalSlug":"google/gemini-3-pro-preview","finalProvider":"vertex","attempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1350560.526679,"endTime":1354791.360034,"statusCode":200,"providerResponseId":"Gx6zaeqDLrepyOgP_oqLoAw"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"vertex:gemini-3-pro-preview","canonicalSlug":"google/gemini-3-pro-preview","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"vertex","internalModelId":"vertex:gemini-3-pro-preview","providerApiModelId":"gemini-3-pro-preview","credentialType":"system","success":true,"startTime":1350560.526679,"endTime":1354791.360034,"statusCode":200,"providerResponseId":"Gx6zaeqDLrepyOgP_oqLoAw"}]}],"totalProviderAttemptCount":1},"cost":"0.000404","marketCost":"0.000404","generationId":"gen_01KKHTV6ZD9RXTEJ0JP2HT9ZN0","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":118,"completion_tokens":14,"total_tokens":132,"cost":0.000404,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.000404},"system_fingerprint":"fp_2z4eq13emy","generationId":"gen_01KKHTV6ZD9RXTEJ0JP2HT9ZN0"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 2.353875042s + duration: 4.429330084s diff --git a/providertests/testdata/TestVercelThinking/gpt-5/thinking-streaming.yaml b/providertests/testdata/TestVercelThinking/gpt-5/thinking-streaming.yaml index 289beba53995a94d1dd82af49cef013e8665a480..dc5b54f518de519f8499a638d23295484f9ce6c2 100644 --- a/providertests/testdata/TestVercelThinking/gpt-5/thinking-streaming.yaml +++ b/providertests/testdata/TestVercelThinking/gpt-5/thinking-streaming.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,213 +24,193 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":"**Getting","reasoning_details":[{"type":"reasoning.summary","summary":"**Getting","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":"**Getting","reasoning_details":[{"type":"reasoning.summary","summary":"**Getting","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" information","reasoning_details":[{"type":"reasoning.summary","summary":" information","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" info","reasoning_details":[{"type":"reasoning.summary","summary":" info","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":"**\n\nI","reasoning_details":[{"type":"reasoning.summary","summary":"**\n\nI","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" retrieve","reasoning_details":[{"type":"reasoning.summary","summary":" retrieve","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" provide","reasoning_details":[{"type":"reasoning.summary","summary":" provide","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" using","reasoning_details":[{"type":"reasoning.summary","summary":" using","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" Florence","reasoning_details":[{"type":"reasoning.summary","summary":" Florence","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" designated","reasoning_details":[{"type":"reasoning.summary","summary":" designated","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" specifically","reasoning_details":[{"type":"reasoning.summary","summary":" specifically","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" There's","reasoning_details":[{"type":"reasoning.summary","summary":" There's","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":".weather","reasoning_details":[{"type":"reasoning.summary","summary":".weather","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" can","reasoning_details":[{"type":"reasoning.summary","summary":" can","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" location","reasoning_details":[{"type":"reasoning.summary","summary":" location","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" parameter","reasoning_details":[{"type":"reasoning.summary","summary":" parameter","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" that","reasoning_details":[{"type":"reasoning.summary","summary":" that","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" requires","reasoning_details":[{"type":"reasoning.summary","summary":" requires","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" Even","reasoning_details":[{"type":"reasoning.summary","summary":" Even","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" though","reasoning_details":[{"type":"reasoning.summary","summary":" though","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" location","reasoning_details":[{"type":"reasoning.summary","summary":" location","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" there's","reasoning_details":[{"type":"reasoning.summary","summary":" there's","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" string","reasoning_details":[{"type":"reasoning.summary","summary":" string","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" a","reasoning_details":[{"type":"reasoning.summary","summary":" a","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" multi","reasoning_details":[{"type":"reasoning.summary","summary":" multi","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" so","reasoning_details":[{"type":"reasoning.summary","summary":" so","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":"_tool","reasoning_details":[{"type":"reasoning.summary","summary":"_tool","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":"_use","reasoning_details":[{"type":"reasoning.summary","summary":"_use","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" directly","reasoning_details":[{"type":"reasoning.summary","summary":" directly","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":".parallel","reasoning_details":[{"type":"reasoning.summary","summary":".parallel","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" option","reasoning_details":[{"type":"reasoning.summary","summary":" option","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" running","reasoning_details":[{"type":"reasoning.summary","summary":" running","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" multiple","reasoning_details":[{"type":"reasoning.summary","summary":" multiple","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":"Flor","reasoning_details":[{"type":"reasoning.summary","summary":"Flor","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" tools","reasoning_details":[{"type":"reasoning.summary","summary":" tools","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":"ence","reasoning_details":[{"type":"reasoning.summary","summary":"ence","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" I'm","reasoning_details":[{"type":"reasoning.summary","summary":" I'm","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" focused","reasoning_details":[{"type":"reasoning.summary","summary":" focused","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":".\"","reasoning_details":[{"type":"reasoning.summary","summary":".\"","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" on","reasoning_details":[{"type":"reasoning.summary","summary":" on","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" just","reasoning_details":[{"type":"reasoning.summary","summary":" just","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":"’m","reasoning_details":[{"type":"reasoning.summary","summary":"’m","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" one","reasoning_details":[{"type":"reasoning.summary","summary":" one","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" not","reasoning_details":[{"type":"reasoning.summary","summary":" not","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" going","reasoning_details":[{"type":"reasoning.summary","summary":" going","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" here","reasoning_details":[{"type":"reasoning.summary","summary":" here","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" so","reasoning_details":[{"type":"reasoning.summary","summary":" so","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" multi","reasoning_details":[{"type":"reasoning.summary","summary":" multi","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" go","reasoning_details":[{"type":"reasoning.summary","summary":" go","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":"_tool","reasoning_details":[{"type":"reasoning.summary","summary":"_tool","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" ahead","reasoning_details":[{"type":"reasoning.summary","summary":" ahead","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":"_use","reasoning_details":[{"type":"reasoning.summary","summary":"_use","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":".parallel","reasoning_details":[{"type":"reasoning.summary","summary":".parallel","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" since","reasoning_details":[{"type":"reasoning.summary","summary":" since","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" functions","reasoning_details":[{"type":"reasoning.summary","summary":" functions","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" we","reasoning_details":[{"type":"reasoning.summary","summary":" we","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":".weather","reasoning_details":[{"type":"reasoning.summary","summary":".weather","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" only","reasoning_details":[{"type":"reasoning.summary","summary":" only","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" directly","reasoning_details":[{"type":"reasoning.summary","summary":" directly","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" need","reasoning_details":[{"type":"reasoning.summary","summary":" need","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" one","reasoning_details":[{"type":"reasoning.summary","summary":" one","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" \"","reasoning_details":[{"type":"reasoning.summary","summary":" \"","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":"Flor","reasoning_details":[{"type":"reasoning.summary","summary":"Flor","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" here","reasoning_details":[{"type":"reasoning.summary","summary":" here","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":"ence","reasoning_details":[{"type":"reasoning.summary","summary":"ence","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" The","reasoning_details":[{"type":"reasoning.summary","summary":" The","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" Italy","reasoning_details":[{"type":"reasoning.summary","summary":" Italy","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" plan","reasoning_details":[{"type":"reasoning.summary","summary":" plan","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":".\"","reasoning_details":[{"type":"reasoning.summary","summary":".\"","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" is","reasoning_details":[{"type":"reasoning.summary","summary":" is","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" make","reasoning_details":[{"type":"reasoning.summary","summary":" make","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" get","reasoning_details":[{"type":"reasoning.summary","summary":" get","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" sure","reasoning_details":[{"type":"reasoning.summary","summary":" sure","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" data","reasoning_details":[{"type":"reasoning.summary","summary":" data","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" use","reasoning_details":[{"type":"reasoning.summary","summary":" use","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" from","reasoning_details":[{"type":"reasoning.summary","summary":" from","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" commentary","reasoning_details":[{"type":"reasoning.summary","summary":" commentary","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" tool","reasoning_details":[{"type":"reasoning.summary","summary":" tool","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" channel","reasoning_details":[{"type":"reasoning.summary","summary":" channel","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" for","reasoning_details":[{"type":"reasoning.summary","summary":" for","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" then","reasoning_details":[{"type":"reasoning.summary","summary":" then","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" this","reasoning_details":[{"type":"reasoning.summary","summary":" this","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" return","reasoning_details":[{"type":"reasoning.summary","summary":" return","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" call","reasoning_details":[{"type":"reasoning.summary","summary":" call","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" it","reasoning_details":[{"type":"reasoning.summary","summary":" it","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" to","reasoning_details":[{"type":"reasoning.summary","summary":" to","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" Once","reasoning_details":[{"type":"reasoning.summary","summary":" Once","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" I","reasoning_details":[{"type":"reasoning.summary","summary":" I","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" user","reasoning_details":[{"type":"reasoning.summary","summary":" user","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" receive","reasoning_details":[{"type":"reasoning.summary","summary":" receive","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" Let's","reasoning_details":[{"type":"reasoning.summary","summary":" Let's","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" weather","reasoning_details":[{"type":"reasoning.summary","summary":" weather","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" move","reasoning_details":[{"type":"reasoning.summary","summary":" move","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" response","reasoning_details":[{"type":"reasoning.summary","summary":" response","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" forward","reasoning_details":[{"type":"reasoning.summary","summary":" forward","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":",","reasoning_details":[{"type":"reasoning.summary","summary":",","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" with","reasoning_details":[{"type":"reasoning.summary","summary":" with","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" I'll","reasoning_details":[{"type":"reasoning.summary","summary":" I'll","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" this","reasoning_details":[{"type":"reasoning.summary","summary":" this","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" present","reasoning_details":[{"type":"reasoning.summary","summary":" present","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" the","reasoning_details":[{"type":"reasoning.summary","summary":" the","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABpsx4RH_4S_XIyjxa0rte5krT-0qXP0gGtAocd3j-Qep3fzyiMcYlNCh3J7TCUg3660aKrMrbgsedqLMoXiElRG58xi0KqKmZQW1ElSsDB9UxflM1DLn1uGDkRHthevkQzzkx2Khvkp6efcZ25SNdUjfXImwK0lr6vVXxwnoXVgz9rK8UEPDcTcXyXwVj2avMsXuZ1nHGtF-fI9EimGvKRn8wAEgNfp5sHvWbSCSXCb8AU2PzMo9F53KkAF_ktIolLD0LNs8NuW-kxtmvMjtIKqfgUG1q2LgydFJXyHRzQLGXi586-25PAgf3ZxdeksLMI1HQ0cDAtc8AXqUt8BqxrDwAsna6ve8ZBEnk_9curxqdjviALkQ5WOmvs9Oqcl-tGF0j3eGFIOUaUjLohdGNOu3lLotc2v6xqI_IxijPTHVTetimmV2mBfC0hsuNMezb1svX7QTacP9HnaFoYu1mzgwCuO_b35aQDj7aUtmuZTKMYlkBO4VoHocM6WI6buzVEs3FRjZ5bdjsVSvsyAZP-ZQPGlAfS_l7UPmuNuO_gkZ8O5-2s5d1uU-dQkvW0KKnY9OESZbjK8JGVd91yF5oOFwQfW4qHrVmF4ru06xeEPddtsaXIejGY3nKov1B9bNKRGwrpe_rSlsgDBaHikMKjSE7fxGIcZegcVYkUiT3niw8O2zAwOD-Ls7AWln4BaVP51Pld9e6kjF2VPMjYvON27KZ5fPMRB4Tbg7t3HZinRDa8dlLuqA5pZN0TpgZVhylJWNW0RpInyVpXn66lbCrU9tOnBvUcq68xLfZTUkWXUSD_6locqAAJ_EhuccdgASJL4_oO","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" information","reasoning_details":[{"type":"reasoning.summary","summary":" information","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"call_9snEZpHtS9pJr4agjN6wpzI3","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" clearly","reasoning_details":[{"type":"reasoning.summary","summary":" clearly","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" and","reasoning_details":[{"type":"reasoning.summary","summary":" and","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"location"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" succinct","reasoning_details":[{"type":"reasoning.summary","summary":" succinct","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\":\""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":"ly","reasoning_details":[{"type":"reasoning.summary","summary":"ly","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Flor"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":".","reasoning_details":[{"type":"reasoning.summary","summary":".","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ence"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" Let's","reasoning_details":[{"type":"reasoning.summary","summary":" Let's","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":","}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":" go","reasoning_details":[{"type":"reasoning.summary","summary":" go","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" Italy"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning":"!","reasoning_details":[{"type":"reasoning.summary","summary":"!","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_kdnof6qzzm"} - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"reasoning_details":[{"type":"reasoning.encrypted","data":"gAAAAABpgJDXAuR0HjlWRtFfesnymrYPPQR9I9gY-4gyB4kiZ_mdXFEOJLsYevTBaNB1wjNviCSnJU0F9Icw2vm542wsByAW0SCh-u5tckaejCd1Eo5gMrgWWSwGKT3xmHzZHMjqxkUGG7orIHGQlIZPr7pHwxTGLp8jmQK_mH7oiDADSjmclCD73KGLOoLlYQLMTq1HGZHAKjCtv-l7uNB1Vst33Hnd2rwayvRXRCQBtgZwotY7AE4vF2Em3pOZSiWu-1u0FkkDhOQd9QupaKRTcPX5PZpFG_FfD6Elwsp-MMH4wtpk96WDc7y0dLouWW5H_pxblrvXQqbpeFVyk1wJ9Xzy7NjcJYnVwt04rdtUjqXBwFJN0HOtYH8TvW2u3mz8x-nj29UxwRMtzPDwXLoAiSRYo6KAZRU4cryLCqiOlTMB3Yedr0RuWkIWU4_oO38whChA8vawvTlcHgPPEYeKAlmEYyOR4mlDAR-r6zGw6fFCSjQ_J9HdlOpeLXm-Y-a5WFzl_FXYE0CVqUzBMMR2PSs6VO4DR73ATdl62SIVW-4kLgPYVurYyv8VUM3H1Z_bb2kInDpqXwK2IUwX08BNRnMvi_wPvm7pTEeKQCxj9-D8rLTIsK8C2tfaDZReKhCymy0KBF9UWDFKlHcM58zU1N7o2YHfVO6b61SWYLra4H7eewBv2levoiSoeVFjar787rf8bqeoPn-mkwASjgKWyDvUwcsLA2vMm8eMclk4qryY8LbgCvX320Zo5byUXblt9f2wTDZhQblmXLaW-9vTBjrbPqtDc2LW_ZkLoSApnrlQxvu0AnaqVUDGHVFERlbZcuU35JJ-","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","format":"openai-responses-v1","index":0}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} - - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"id":"call_0bKx1gHreGnPuO8CzsleyyRQ","type":"function","function":{"name":"weather","arguments":""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} - - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"{\""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} - - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"location"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} - - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\":\""}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} - - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"Flor"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} - - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"ence"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} - - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":","}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} - - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":" Italy"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} - - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"tool_calls":[{"index":0,"function":{"arguments":"\"}"}}]},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5gf37iohnb"} - - data: {"id":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","object":"chat.completion.chunk","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"provider_metadata":{"openai":{"responseId":"resp_0430adf43712f48201698090d6c4048196b485fe56c0face13","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1725623.377813,"endTime":1725855.622852,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai/gpt-5","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1725623.377813,"endTime":1725855.622852,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.00219875","marketCost":"0.00219875","generationId":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":63,"completion_tokens":148,"total_tokens":211,"cost":0.00219875,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00219875},"system_fingerprint":"fp_5gf37iohnb","generationId":"gen_01KGF3BHK17PHK9V9DEN2A1ZAE"} + data: {"id":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","object":"chat.completion.chunk","created":1773346321,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"provider_metadata":{"openai":{"responseId":"resp_03be596a625bf0b10169b31e111ac48196884fd66ca882cf61","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1340018.929449,"endTime":1344426.185759,"providerRequestId":"req_8dfda92498604ffc9800ddf6cf14dd1d","statusCode":200,"providerResponseId":"resp_03be596a625bf0b10169b31e111ac48196884fd66ca882cf61"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai:gpt-5-2025-08-07","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1340018.929449,"endTime":1344426.185759,"providerRequestId":"req_8dfda92498604ffc9800ddf6cf14dd1d","statusCode":200,"providerResponseId":"resp_03be596a625bf0b10169b31e111ac48196884fd66ca882cf61"}]}],"totalProviderAttemptCount":1},"cost":"0.00183875","marketCost":"0.00183875","generationId":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":63,"completion_tokens":112,"total_tokens":175,"cost":0.00183875,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00183875},"system_fingerprint":"fp_kdnof6qzzm","service_tier":"default","generationId":"gen_01KKHTTWKQVW6BPV1GPRD5MM3D"} data: [DONE] @@ -239,22 +219,22 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 339.492ms + duration: 460.733459ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2375 + content_length: 2248 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_0bKx1gHreGnPuO8CzsleyyRQ","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_details":[{"format":"openai-responses-v1","index":0,"summary":"**Getting weather information**\n\nI need to retrieve the weather using the designated tool, specifically the functions.weather with the location parameter. Even though there''s a multi_tool_use.parallel option for running multiple tools, I''m focused on just one tool here, so I''ll go ahead and call functions.weather directly with \"Florence, Italy.\" I''ll make sure to use the commentary channel for this call. Once I receive the weather response, I''ll present the information clearly and succinctly. Let''s go!","type":"reasoning.summary"},{"data":"gAAAAABpgJDXAuR0HjlWRtFfesnymrYPPQR9I9gY-4gyB4kiZ_mdXFEOJLsYevTBaNB1wjNviCSnJU0F9Icw2vm542wsByAW0SCh-u5tckaejCd1Eo5gMrgWWSwGKT3xmHzZHMjqxkUGG7orIHGQlIZPr7pHwxTGLp8jmQK_mH7oiDADSjmclCD73KGLOoLlYQLMTq1HGZHAKjCtv-l7uNB1Vst33Hnd2rwayvRXRCQBtgZwotY7AE4vF2Em3pOZSiWu-1u0FkkDhOQd9QupaKRTcPX5PZpFG_FfD6Elwsp-MMH4wtpk96WDc7y0dLouWW5H_pxblrvXQqbpeFVyk1wJ9Xzy7NjcJYnVwt04rdtUjqXBwFJN0HOtYH8TvW2u3mz8x-nj29UxwRMtzPDwXLoAiSRYo6KAZRU4cryLCqiOlTMB3Yedr0RuWkIWU4_oO38whChA8vawvTlcHgPPEYeKAlmEYyOR4mlDAR-r6zGw6fFCSjQ_J9HdlOpeLXm-Y-a5WFzl_FXYE0CVqUzBMMR2PSs6VO4DR73ATdl62SIVW-4kLgPYVurYyv8VUM3H1Z_bb2kInDpqXwK2IUwX08BNRnMvi_wPvm7pTEeKQCxj9-D8rLTIsK8C2tfaDZReKhCymy0KBF9UWDFKlHcM58zU1N7o2YHfVO6b61SWYLra4H7eewBv2levoiSoeVFjar787rf8bqeoPn-mkwASjgKWyDvUwcsLA2vMm8eMclk4qryY8LbgCvX320Zo5byUXblt9f2wTDZhQblmXLaW-9vTBjrbPqtDc2LW_ZkLoSApnrlQxvu0AnaqVUDGHVFERlbZcuU35JJ-","format":"openai-responses-v1","id":"rs_0430adf43712f48201698090d71990819682f523d5f4a4cd6a","index":0,"type":"reasoning.encrypted"}]},{"content":"40 C","tool_call_id":"call_0bKx1gHreGnPuO8CzsleyyRQ","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":{"enabled":true},"stream":true}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"call_9snEZpHtS9pJr4agjN6wpzI3","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_details":[{"format":"openai-responses-v1","index":0,"summary":"**Getting weather info**\n\nI need to provide the weather for Florence, Italy. There''s a weather tool I can use that requires a location string, so I''ll directly call it with \"Florence, Italy.\" I’m not going to use the multi_tool_use.parallel since we only need one tool here. The plan is to get the data from the tool and then return it to the user. Let''s move forward with this!","type":"reasoning.summary"},{"data":"gAAAAABpsx4RH_4S_XIyjxa0rte5krT-0qXP0gGtAocd3j-Qep3fzyiMcYlNCh3J7TCUg3660aKrMrbgsedqLMoXiElRG58xi0KqKmZQW1ElSsDB9UxflM1DLn1uGDkRHthevkQzzkx2Khvkp6efcZ25SNdUjfXImwK0lr6vVXxwnoXVgz9rK8UEPDcTcXyXwVj2avMsXuZ1nHGtF-fI9EimGvKRn8wAEgNfp5sHvWbSCSXCb8AU2PzMo9F53KkAF_ktIolLD0LNs8NuW-kxtmvMjtIKqfgUG1q2LgydFJXyHRzQLGXi586-25PAgf3ZxdeksLMI1HQ0cDAtc8AXqUt8BqxrDwAsna6ve8ZBEnk_9curxqdjviALkQ5WOmvs9Oqcl-tGF0j3eGFIOUaUjLohdGNOu3lLotc2v6xqI_IxijPTHVTetimmV2mBfC0hsuNMezb1svX7QTacP9HnaFoYu1mzgwCuO_b35aQDj7aUtmuZTKMYlkBO4VoHocM6WI6buzVEs3FRjZ5bdjsVSvsyAZP-ZQPGlAfS_l7UPmuNuO_gkZ8O5-2s5d1uU-dQkvW0KKnY9OESZbjK8JGVd91yF5oOFwQfW4qHrVmF4ru06xeEPddtsaXIejGY3nKov1B9bNKRGwrpe_rSlsgDBaHikMKjSE7fxGIcZegcVYkUiT3niw8O2zAwOD-Ls7AWln4BaVP51Pld9e6kjF2VPMjYvON27KZ5fPMRB4Tbg7t3HZinRDa8dlLuqA5pZN0TpgZVhylJWNW0RpInyVpXn66lbCrU9tOnBvUcq68xLfZTUkWXUSD_6locqAAJ_EhuccdgASJL4_oO","format":"openai-responses-v1","id":"rs_03be596a625bf0b10169b31e1187cc8196a75b4cde3f7d1618","index":0,"type":"reasoning.encrypted"}]},{"content":"40 C","tool_call_id":"call_9snEZpHtS9pJr4agjN6wpzI3","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":{"enabled":true},"stream":true}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -263,75 +243,61 @@ interactions: proto_minor: 0 content_length: -1 body: |+ - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} - - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"It"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} - - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"’s"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} - - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" currently"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} - - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" around"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} - - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} - - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"40"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} - - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"°C"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"role":"assistant"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"It"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" Florence"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"’s"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" about"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" Italy"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"40"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" If"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"°C"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" you"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"’d"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" Florence"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" like"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" Italy"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" I"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" right"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" can"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" now"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" also"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" provide"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" Stay"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" a"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" hydrated"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" brief"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" forecast"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" avoid"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" or"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" tips"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" midday"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" for"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" sun"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" staying"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" if"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" cool"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" you"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"’re"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" heading"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" heat"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":" out"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_5vwx38gjaf"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"content":"!"},"logprobs":null,"finish_reason":null}],"system_fingerprint":"fp_llz0ofk3nf"} - data: {"id":"gen_01KGF3BP39K37NP6M0N1QWVXE1","object":"chat.completion.chunk","created":1770033371,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"provider_metadata":{"openai":{"responseId":"resp_0430adf43712f48201698090db6338819696794d34dd844e52","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1477248.277749,"endTime":1477458.808981,"statusCode":200}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai/gpt-5","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1477248.277749,"endTime":1477458.808981,"statusCode":200}]}],"totalProviderAttemptCount":1},"cost":"0.00049125","marketCost":"0.00049125","generationId":"gen_01KGF3BP39K37NP6M0N1QWVXE1","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":97,"completion_tokens":37,"total_tokens":134,"cost":0.00049125,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00049125},"system_fingerprint":"fp_5vwx38gjaf","generationId":"gen_01KGF3BP39K37NP6M0N1QWVXE1"} + data: {"id":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","object":"chat.completion.chunk","created":1773346325,"model":"openai/gpt-5","choices":[{"index":0,"delta":{"provider_metadata":{"openai":{"responseId":"resp_03be596a625bf0b10169b31e15b00481968b1116363bcc96f0","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1343224.765405,"endTime":1345010.530975,"providerRequestId":"req_60c194c735bd4dcbb54a881c446e1836","statusCode":200,"providerResponseId":"resp_03be596a625bf0b10169b31e15b00481968b1116363bcc96f0"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai:gpt-5-2025-08-07","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1343224.765405,"endTime":1345010.530975,"providerRequestId":"req_60c194c735bd4dcbb54a881c446e1836","statusCode":200,"providerResponseId":"resp_03be596a625bf0b10169b31e15b00481968b1116363bcc96f0"}]}],"totalProviderAttemptCount":1},"cost":"0.00042125","marketCost":"0.00042125","generationId":"gen_01KKHTV13RQ8R92YDVT3EBXPV4","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":97,"completion_tokens":30,"total_tokens":127,"cost":0.00042125,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":0,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00042125},"system_fingerprint":"fp_llz0ofk3nf","service_tier":"default","generationId":"gen_01KKHTV13RQ8R92YDVT3EBXPV4"} data: [DONE] @@ -340,4 +306,4 @@ interactions: - text/event-stream status: 200 OK code: 200 - duration: 304.872667ms + duration: 353.024ms diff --git a/providertests/testdata/TestVercelThinking/gpt-5/thinking.yaml b/providertests/testdata/TestVercelThinking/gpt-5/thinking.yaml index 0b1b34f723c33da6890fbcba75507b7f04e321b6..3b6e7864761f33eda324d24642a97a3602c95684 100644 --- a/providertests/testdata/TestVercelThinking/gpt-5/thinking.yaml +++ b/providertests/testdata/TestVercelThinking/gpt-5/thinking.yaml @@ -15,7 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -24,28 +24,28 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF3B3C7Q42KHM2W985XF2T3","object":"chat.completion","created":1770033356,"model":"openai/gpt-5","choices":[{"index":0,"message":{"role":"assistant","content":null,"reasoning":"**Checking weather in Florence**\n\nI need to answer the user regarding the weather in Florence, Italy. I have access to a functions.weather tool for this purpose. Since we''re only calling one tool, I don’t need to use the multi_tool_use feature, which is meant for parallel calls. I’ll simply use functions.weather directly. I’ll provide the location as \"Florence, Italy\" and then wait for the results. Fingers crossed the tool gives us the correct data!","reasoning_details":[{"type":"reasoning.summary","summary":"**Checking weather in Florence**\n\nI need to answer the user regarding the weather in Florence, Italy. I have access to a functions.weather tool for this purpose. Since we''re only calling one tool, I don’t need to use the multi_tool_use feature, which is meant for parallel calls. I’ll simply use functions.weather directly. I’ll provide the location as \"Florence, Italy\" and then wait for the results. Fingers crossed the tool gives us the correct data!","id":"rs_0562170428b0ad7001698090c89354819687c27b2705c3ce4c","format":"openai-responses-v1","index":0},{"type":"reasoning.encrypted","data":"gAAAAABpgJDMsf0VPNBZL3A8tONVzmCdRytZjL7k3QaiavhXgEfFZ0_E6LPvHdpQha_hZs16TnpTURpI-a0UEqxQ0ogIISECklCdduz3wdG0_h55n2hL-NL07dwRdFhygz4tmLJo9mqbUsn1D0uWEu-4afSiPP1HUVoyM3P-XAqG0iDZBG0S3MTxzLCkS9kRgQlzROJlaXEmEB9AJdyFXmb7zAABESJ5kGlH6sT0Iakwvl8vVr34M-OwgYCCGQ6ppz-m0UQmNhCBlcq08d8KkpYElyOQ8hbbykatWslxGZzBWLz7leWClihD4iMM72zbWnwXZDshOqp4lObx1TZuLlDI_naQj6yNXVMRolOSq7g_SygrgJ4o8vmDWUu8Tt_pAHcjWTbzhhTOo-X0-OubpEPgOdjvjdGnQ3tuS5BZs39XVsN0CL2L_XzL6zdVKGdCkqEwoiXjJSLtSFZLgQvn5bzmIPY0II0xX4CAeSN8oHhE4CnocBqWrU3PRaKPHM0WypqB0UuM254n_cZBvdKC9OaJfWKmVbdI1H5R0arzb3KYBG8DXpuWVO354MtLSZ6ZaqxJDNapHX9nwGZ2muBBzYSqxsdYFuLSxz3J-uAwA8YM8o6yb8otfhXrmiHS_562EofNf1yKoFX2j4lACJFTFRWpDRl-ytnfW_VCXvdEelBlmB40JuFu6qy_lF0_g-CndYzGXOi714BIPR0dvcNOLpX_w71QA4WHJUvm7udhzvcHvIkNZHu3O8lUl7htEJGYnx-6x1vn_XLJBD47TUi4QbbuvmqPcHVfbQ5Z-9Hn-Dc9JMGXhao72RRnilCBeiJcJmjTYTWn4JjgE0yMr9BdJjQv9j5E2p3oPHIB2Dqw1FiIHpw1VaGan4T8N3yRPD6-AinoZggBNkULFTS0lWBPPI0vk4uMWIruJS5l7z8rs08PsBS5kTk6-J4IEp-3--Yy5YJND8Z_zboGaKewpWFeft0FqRklGdJ00e_FGaPD2aOfcOygzlCtKumLhU2XG_E8VvGxjz4-TLlzM3LR35Hgm03amQVV_20JMdI1XB_OSoPKoGCZubzBQsf7E_8zVj23J3wVkFEv6o1Fh4XJ4unWcLeQjjLvT7Bkv-smny6wWN-Fd6SM9yU8fMlTHbRCCVdcGRN6QjcX1K5eOiI8U4qmvQw8Tn9_MtMejUdEkWdiKxACIhOhAqJRlTl8JwQL9ggL1gc4iVMepQuaSvauSVjNWalgq94e-k1tSSkobHt6yGD3Fd9jUwyC6KrWraEWR7tmbWesc1KR_zbsd9J_B57szRFLz0JU6GmTCwRM9sblytuCLLdIeW8FLlqIRyhkYm5HrgKyoYwBLp9yOkfllj6C35ZW5ZTOpLNhmeDi3BOLMh6IvMgak4TCaNJjvmPD7ZVU6Y_--LOe_SCJta3yppo2f4-eOduTsUXcXC-gmpbvAhUBgIyOV55OTSE8OGYHZ86sTdF7UVnzftznjQ-5mZKPiHMTNgastAmdKdNhcjDunKlL-qbyEsX4Eeb9TKXM2koCcxZ-Dfs84wSS","id":"rs_0562170428b0ad7001698090c89354819687c27b2705c3ce4c","format":"openai-responses-v1","index":0}],"tool_calls":[{"id":"call_iHMVWYLENDMIMaQBppQsnQ2Y","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"}}],"provider_metadata":{"openai":{"responseId":"resp_0562170428b0ad7001698090c836608196820886f8d884db01","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1469621.176344,"endTime":1473996.358343,"statusCode":200,"providerResponseId":"resp_0562170428b0ad7001698090c836608196820886f8d884db01"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai/gpt-5","canonicalSlug":"openai/gpt-5","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.00215875","marketCost":"0.00215875","generationId":"gen_01KGF3B3C7Q42KHM2W985XF2T3","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":63,"completion_tokens":144,"total_tokens":207,"cost":0.00215875,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00215875},"system_fingerprint":"fp_5jkdir3bke","generationId":"gen_01KGF3B3C7Q42KHM2W985XF2T3"}' + body: '{"id":"gen_01KKHTTA1DCN018DY9V8QKWPKR","object":"chat.completion","created":1773346311,"model":"openai/gpt-5","choices":[{"index":0,"message":{"role":"assistant","content":null,"reasoning":"**Deciding on the weather tool**\n\nI need to figure out whether to call the weather tool for the user’s request about Florence, Italy. Since they’ve asked for weather info, it makes sense to use the functions.weather tool targeting that location. Since there''s only one tool involved, I think I should call functions.weather directly. Using multi_tool_use.parallel seems unnecessary here because we only need this one tool. So, I''ll proceed with calling functions.weather for Florence, Italy.","reasoning_details":[{"type":"reasoning.summary","summary":"**Deciding on the weather tool**\n\nI need to figure out whether to call the weather tool for the user’s request about Florence, Italy. Since they’ve asked for weather info, it makes sense to use the functions.weather tool targeting that location. Since there''s only one tool involved, I think I should call functions.weather directly. Using multi_tool_use.parallel seems unnecessary here because we only need this one tool. So, I''ll proceed with calling functions.weather for Florence, Italy.","id":"rs_00d2f6810bafb8e40169b31dfe9384819092696410f3668856","format":"openai-responses-v1","index":0},{"type":"reasoning.encrypted","data":"gAAAAABpsx4H2XPLIGMjLXTKKE3tMMj5N_K6bCl-bKPuPQIa1yJCBxhXG_ttUlpbM74yKj9nnhAVciny2to3wHBSfjbj3fn20yJavilIW_sFeARllHgBl9dVWaQ8pmGsHBpryThxIrl-iXrYGka2JA21nhNVN1m_UE3yz1qdfLAAGKyKBHVmo0UlBCwPG6bA_PisxWdRebjJrEB1oEzl7WhWMN2T6SjEKykKF4z8bSiOpx8rxgI4vn0SinBw556RaNU9cgKtUR4CC2u4E7700zVSicSKSoqB7FlWCgKFvjO_vGJ5uWsVqm50VGQK9h2R4DS2ZOddfsWjJfqo32h9Pz6VBmru2DKil7DSVhgP--1p9b9gzjeGYPrgqBpxt-XO9i7loUhrwgo3k42fjJ8itaoFqLkloX882-HbxZwgsVgcyM95WWwBrUlPuR3MpVVZ7sqGo5K9MSX1PUiBQt7qdfxLnLJSmOpgJUW65XU2RCOR9wGQ3ZqIsQ0-gmvLk5QrlrCegrF1DGgSCND3DSiyEwkmBP21FJEk6Yzr2JB4vSPp9WUW6XbHi3tyJbXQZlwfg64JDT378xowgAkBDF6utYhMQbOswQ1FJa0RTSM9iI3jmBeZs9ka5PdHtlieWZfGMZ5OoCVj48J_mrv9cfEJi1rHmKiFNP90tdeW0JJ-fcBaET-mWFEJtRy7yg1twEfE__3CUhYqGDPUI7IB_8o2-oZ3l6SfaRHuXsVkLq3t2K8qFgdj-njeEH5_pIC8Hi1oipNkaTngSDFNmskkD7L1Tz8v36vDV-p686KL7qFrHaBtMDc62hx2WM1tgrxngTwPbfeH2BYCw7r1fvCIpxxLpt1aS3u3fGPDRed9QP7DlS7bCbjexMR0RIR_Npegt-bRps1btWfvpuAVcEPRAv6IHW3ahaNKHtJ-mUddZxISngosiyI27xdf8PtQSLSjIoW-w6cn2lAPXauS-FCVgHIGci76p0vZm9oW1TZ9J1S4Cyj9E8rwRiThrp60L4Ey1KbervfOEPhRJMFNIifJgp3sGBKWXKatIcqC5-aHMjWsn5AzBV440zHDAbEqaJ_VzgOEQ72rNUyXIw3Wm3kRqS9dheG9dCMAdQmHchzr4sQw7N66u-vAgqd6nBMAwtdxni4E4LMhl_ndfVV7FV-bBg1W0iRN3CPlL9ksCxqgmPPCI5v40PJvypF_VMxR8GP4qBTziMtqIF505z7NaAiYAXQul_djMUkn6UkQQMkzj6Dboe7Yk3ymZbWkRyoVwWciU6F2WsaT6qX5V4Ao5aQdg2V3_zjIIlpWWuSA7o7JXX8GvUzj6jGfx4PCPNbIco5l0Jv8IaBQlF0t6P4IdpgT55ESMUdx0U_oR0i1urKsmTmydoCWKJKVvTetSLigniRRS2BfZN3NCRRwBT9N518UuqgjikdQ4fNewfgru9V5zdGnddRxaFUDYlkmok-lwA6LUhZsheFOBrnXra38gDfyqUn-QOIaUAw5R-3HakXIR13-jl99hTCuvxIlYtbJkPauZtfJxuZiG-VcAIKyQStO_UArWTsFv_lj4W1lTw==","id":"rs_00d2f6810bafb8e40169b31dfe9384819092696410f3668856","format":"openai-responses-v1","index":0}],"tool_calls":[{"id":"call_SmeBZtwDeWEKUJC6ead03JoS","type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence, Italy\"}"}}],"provider_metadata":{"openai":{"responseId":"resp_00d2f6810bafb8e40169b31dfe12208190b20f1737de071c6a","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":373697.894945,"endTime":382770.366758,"statusCode":200,"providerResponseId":"resp_00d2f6810bafb8e40169b31dfe12208190b20f1737de071c6a"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai:gpt-5-2025-08-07","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":373697.894945,"endTime":382770.366758,"statusCode":200,"providerResponseId":"resp_00d2f6810bafb8e40169b31dfe12208190b20f1737de071c6a"}]}],"totalProviderAttemptCount":1},"cost":"0.00205875","marketCost":"0.00205875","generationId":"gen_01KKHTTA1DCN018DY9V8QKWPKR","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":63,"completion_tokens":134,"total_tokens":197,"cost":0.00205875,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":64,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00205875},"system_fingerprint":"fp_9oouf2om06","service_tier":"default","generationId":"gen_01KKHTTA1DCN018DY9V8QKWPKR"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 4.531842958s + duration: 9.264108209s - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2977 + content_length: 3035 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_iHMVWYLENDMIMaQBppQsnQ2Y","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_details":[{"format":"openai-responses-v1","index":0,"summary":"**Checking weather in Florence**\n\nI need to answer the user regarding the weather in Florence, Italy. I have access to a functions.weather tool for this purpose. Since we''re only calling one tool, I don’t need to use the multi_tool_use feature, which is meant for parallel calls. I’ll simply use functions.weather directly. I’ll provide the location as \"Florence, Italy\" and then wait for the results. Fingers crossed the tool gives us the correct data!","type":"reasoning.summary"},{"data":"gAAAAABpgJDMsf0VPNBZL3A8tONVzmCdRytZjL7k3QaiavhXgEfFZ0_E6LPvHdpQha_hZs16TnpTURpI-a0UEqxQ0ogIISECklCdduz3wdG0_h55n2hL-NL07dwRdFhygz4tmLJo9mqbUsn1D0uWEu-4afSiPP1HUVoyM3P-XAqG0iDZBG0S3MTxzLCkS9kRgQlzROJlaXEmEB9AJdyFXmb7zAABESJ5kGlH6sT0Iakwvl8vVr34M-OwgYCCGQ6ppz-m0UQmNhCBlcq08d8KkpYElyOQ8hbbykatWslxGZzBWLz7leWClihD4iMM72zbWnwXZDshOqp4lObx1TZuLlDI_naQj6yNXVMRolOSq7g_SygrgJ4o8vmDWUu8Tt_pAHcjWTbzhhTOo-X0-OubpEPgOdjvjdGnQ3tuS5BZs39XVsN0CL2L_XzL6zdVKGdCkqEwoiXjJSLtSFZLgQvn5bzmIPY0II0xX4CAeSN8oHhE4CnocBqWrU3PRaKPHM0WypqB0UuM254n_cZBvdKC9OaJfWKmVbdI1H5R0arzb3KYBG8DXpuWVO354MtLSZ6ZaqxJDNapHX9nwGZ2muBBzYSqxsdYFuLSxz3J-uAwA8YM8o6yb8otfhXrmiHS_562EofNf1yKoFX2j4lACJFTFRWpDRl-ytnfW_VCXvdEelBlmB40JuFu6qy_lF0_g-CndYzGXOi714BIPR0dvcNOLpX_w71QA4WHJUvm7udhzvcHvIkNZHu3O8lUl7htEJGYnx-6x1vn_XLJBD47TUi4QbbuvmqPcHVfbQ5Z-9Hn-Dc9JMGXhao72RRnilCBeiJcJmjTYTWn4JjgE0yMr9BdJjQv9j5E2p3oPHIB2Dqw1FiIHpw1VaGan4T8N3yRPD6-AinoZggBNkULFTS0lWBPPI0vk4uMWIruJS5l7z8rs08PsBS5kTk6-J4IEp-3--Yy5YJND8Z_zboGaKewpWFeft0FqRklGdJ00e_FGaPD2aOfcOygzlCtKumLhU2XG_E8VvGxjz4-TLlzM3LR35Hgm03amQVV_20JMdI1XB_OSoPKoGCZubzBQsf7E_8zVj23J3wVkFEv6o1Fh4XJ4unWcLeQjjLvT7Bkv-smny6wWN-Fd6SM9yU8fMlTHbRCCVdcGRN6QjcX1K5eOiI8U4qmvQw8Tn9_MtMejUdEkWdiKxACIhOhAqJRlTl8JwQL9ggL1gc4iVMepQuaSvauSVjNWalgq94e-k1tSSkobHt6yGD3Fd9jUwyC6KrWraEWR7tmbWesc1KR_zbsd9J_B57szRFLz0JU6GmTCwRM9sblytuCLLdIeW8FLlqIRyhkYm5HrgKyoYwBLp9yOkfllj6C35ZW5ZTOpLNhmeDi3BOLMh6IvMgak4TCaNJjvmPD7ZVU6Y_--LOe_SCJta3yppo2f4-eOduTsUXcXC-gmpbvAhUBgIyOV55OTSE8OGYHZ86sTdF7UVnzftznjQ-5mZKPiHMTNgastAmdKdNhcjDunKlL-qbyEsX4Eeb9TKXM2koCcxZ-Dfs84wSS","format":"openai-responses-v1","id":"rs_0562170428b0ad7001698090c89354819687c27b2705c3ce4c","index":0,"type":"reasoning.encrypted"}]},{"content":"40 C","tool_call_id":"call_iHMVWYLENDMIMaQBppQsnQ2Y","role":"tool"}],"model":"openai/gpt-5","tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"reasoning":{"enabled":true}}' + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"call_SmeBZtwDeWEKUJC6ead03JoS","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant","reasoning_details":[{"format":"openai-responses-v1","index":0,"summary":"**Deciding on the weather tool**\n\nI need to figure out whether to call the weather tool for the user’s request about Florence, Italy. Since they’ve asked for weather info, it makes sense to use the functions.weather tool targeting that location. Since there''s only one tool involved, I think I should call functions.weather directly. Using multi_tool_use.parallel seems unnecessary here because we only need this one tool. So, I''ll proceed with calling functions.weather for Florence, Italy.","type":"reasoning.summary"},{"data":"gAAAAABpsx4H2XPLIGMjLXTKKE3tMMj5N_K6bCl-bKPuPQIa1yJCBxhXG_ttUlpbM74yKj9nnhAVciny2to3wHBSfjbj3fn20yJavilIW_sFeARllHgBl9dVWaQ8pmGsHBpryThxIrl-iXrYGka2JA21nhNVN1m_UE3yz1qdfLAAGKyKBHVmo0UlBCwPG6bA_PisxWdRebjJrEB1oEzl7WhWMN2T6SjEKykKF4z8bSiOpx8rxgI4vn0SinBw556RaNU9cgKtUR4CC2u4E7700zVSicSKSoqB7FlWCgKFvjO_vGJ5uWsVqm50VGQK9h2R4DS2ZOddfsWjJfqo32h9Pz6VBmru2DKil7DSVhgP--1p9b9gzjeGYPrgqBpxt-XO9i7loUhrwgo3k42fjJ8itaoFqLkloX882-HbxZwgsVgcyM95WWwBrUlPuR3MpVVZ7sqGo5K9MSX1PUiBQt7qdfxLnLJSmOpgJUW65XU2RCOR9wGQ3ZqIsQ0-gmvLk5QrlrCegrF1DGgSCND3DSiyEwkmBP21FJEk6Yzr2JB4vSPp9WUW6XbHi3tyJbXQZlwfg64JDT378xowgAkBDF6utYhMQbOswQ1FJa0RTSM9iI3jmBeZs9ka5PdHtlieWZfGMZ5OoCVj48J_mrv9cfEJi1rHmKiFNP90tdeW0JJ-fcBaET-mWFEJtRy7yg1twEfE__3CUhYqGDPUI7IB_8o2-oZ3l6SfaRHuXsVkLq3t2K8qFgdj-njeEH5_pIC8Hi1oipNkaTngSDFNmskkD7L1Tz8v36vDV-p686KL7qFrHaBtMDc62hx2WM1tgrxngTwPbfeH2BYCw7r1fvCIpxxLpt1aS3u3fGPDRed9QP7DlS7bCbjexMR0RIR_Npegt-bRps1btWfvpuAVcEPRAv6IHW3ahaNKHtJ-mUddZxISngosiyI27xdf8PtQSLSjIoW-w6cn2lAPXauS-FCVgHIGci76p0vZm9oW1TZ9J1S4Cyj9E8rwRiThrp60L4Ey1KbervfOEPhRJMFNIifJgp3sGBKWXKatIcqC5-aHMjWsn5AzBV440zHDAbEqaJ_VzgOEQ72rNUyXIw3Wm3kRqS9dheG9dCMAdQmHchzr4sQw7N66u-vAgqd6nBMAwtdxni4E4LMhl_ndfVV7FV-bBg1W0iRN3CPlL9ksCxqgmPPCI5v40PJvypF_VMxR8GP4qBTziMtqIF505z7NaAiYAXQul_djMUkn6UkQQMkzj6Dboe7Yk3ymZbWkRyoVwWciU6F2WsaT6qX5V4Ao5aQdg2V3_zjIIlpWWuSA7o7JXX8GvUzj6jGfx4PCPNbIco5l0Jv8IaBQlF0t6P4IdpgT55ESMUdx0U_oR0i1urKsmTmydoCWKJKVvTetSLigniRRS2BfZN3NCRRwBT9N518UuqgjikdQ4fNewfgru9V5zdGnddRxaFUDYlkmok-lwA6LUhZsheFOBrnXra38gDfyqUn-QOIaUAw5R-3HakXIR13-jl99hTCuvxIlYtbJkPauZtfJxuZiG-VcAIKyQStO_UArWTsFv_lj4W1lTw==","format":"openai-responses-v1","id":"rs_00d2f6810bafb8e40169b31dfe9384819092696410f3668856","index":0,"type":"reasoning.encrypted"}]},{"content":"40 C","tool_call_id":"call_SmeBZtwDeWEKUJC6ead03JoS","role":"tool"}],"model":"openai/gpt-5","tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"reasoning":{"enabled":true}}' headers: Accept: - application/json Content-Type: - application/json User-Agent: - - OpenAI/Go 2.7.1 + - Charm-Fantasy/0.12.2 (https://charm.land/fantasy) url: https://ai-gateway.vercel.sh/v1/chat/completions method: POST response: @@ -54,10 +54,10 @@ interactions: proto_minor: 0 content_length: -1 uncompressed: true - body: '{"id":"gen_01KGF3B7PMN3C6EZGFX1P9A78S","object":"chat.completion","created":1770033366,"model":"openai/gpt-5","choices":[{"index":0,"message":{"role":"assistant","content":"Right now in Florence, Italy it’s about 40°C (104°F). Want a forecast or more details?","reasoning":"**Presenting the temperature**\n\nThe tool returned \"40 C,\" which feels a bit too brief. I think I should present this clearly to the user. Converting 40 C to Fahrenheit gives us 104 F. I want to keep it concise, so I’ll say, \"Right now in Florence, it’s about 40°C (104°F).\" I should also offer to get a forecast or details like humidity, while sticking with the details that are most relevant and avoiding assumptions about the weather.**Considering the heat advisory**\n\nI realize that 40 C is extremely hot! I could include a simple advisory like \"stay hydrated,\" but it might come off as unsolicited. Since the instructions emphasize being concise, I think I’ll keep the final message straightforward: \"Right now in Florence, Italy, it''s around 40°C (104°F). Would you like a forecast or more details?\" That way, I’m providing the info without overstepping.","reasoning_details":[{"type":"reasoning.summary","summary":"**Presenting the temperature**\n\nThe tool returned \"40 C,\" which feels a bit too brief. I think I should present this clearly to the user. Converting 40 C to Fahrenheit gives us 104 F. I want to keep it concise, so I’ll say, \"Right now in Florence, it’s about 40°C (104°F).\" I should also offer to get a forecast or details like humidity, while sticking with the details that are most relevant and avoiding assumptions about the weather.**Considering the heat advisory**\n\nI realize that 40 C is extremely hot! I could include a simple advisory like \"stay hydrated,\" but it might come off as unsolicited. Since the instructions emphasize being concise, I think I’ll keep the final message straightforward: \"Right now in Florence, Italy, it''s around 40°C (104°F). Would you like a forecast or more details?\" That way, I’m providing the info without overstepping.","id":"rs_0562170428b0ad7001698090cd65008196b1811384c1eb1d6c","format":"openai-responses-v1","index":0},{"type":"reasoning.encrypted","data":"gAAAAABpgJDWD7uuI9cHJYRhaE0aumxBFm7lcXL0q4zfSOYK50X0LE6YwVz7CUc7g6HDCOxpi78m5CX5xe4sR7mloQRkr8YuAFOv_draZ0tZ21FJhKoEr7x8XyzCgrx-Mxv98HGsZE7V3cF61q8b4VZVb4r5MAPDCaZyUINTj2tLAdZChdxpwq4ZBDGhUVrYdqoPbFZm-rx9gkWOKSP7ir9aWU3L5qkQcay0i7zYj0p2Gp8iL1A--48RYacfVaXOgpfYGCBvo0whLwTVtjXxCy0_OEmkSp4bMjkd9dq3PibuD_XwN5mU3QxPW-qiF1zwsS26WQ1Zw0xwvg188l5-MMSaWhJZkZdkWFGmsmazBglfMOncPQO3khM2158ca0W6aeo0WryrEQWNeb37sJjrT258fQ_0NA9Udn0YWUXWdOndCXM7el37_JqxB-4fng9iseMEM9jx5wJ4gtinOVovootaQPYe8Vg68juw0FWgcywsJsbK1GKZNaT7-ISsgcy6Cq8uijY6S9jDn2mUxry1PZz702OrpQSkuYn_YLwXM3bPBsMIn_5sTTm4Z4FZUEXVHndT5U5-klkfzBtAYXpA1cnT65_FVqZydKo_KSLYwbssjUZL8K2QCq1MWJ8X2Lq84i0lmbX-i8Nh205TEi31ub_syPKa-pQ-r-6W0glXUCUTIuqpvGMthEOGb6YVeBhVkzenPtPSeVXWeF0oHZuuQpFbfaF2m1lxGIkETgowuRvDU7S2UOb-B1kTfDpzfFsgxXHtbBhE03tw49_EU5h8h-fCBxiR8Tc6ZylJsAUsEszEH0ofcsuF33IrhTpbLlCXN3wsfSucUq9O4NtgLO-B5VuqPOdFTJ4mbR70C_Cve-Wt4VmGekrsmD1wTImf0o9X3d_ZvZ190dkG7XDAJRDdCMK5uflIBY-fYb7TEKqtnV9WrGR1wY38lpJDzboxOXit99XOHGL64z5oCiD9K0_4BPTRbaHL9Gn8ohO4lQo0NIN4wGRD2YYHaPPjFDK4Fgr_sq8JVp4GsdZ82VyhWjE9XmX2L6VMZff44je18xTHbCRNU0BnTlkpqYea_LFip7pdZcbITnMgDrZi9zrqEpx5AjVoqBr3v7tsLP206LYwQ2g1KjNzhTStPgw3FEyKgcfrLDD9FQ7xjmvHRGWAQ_29MdVTG93M8ypEE77GkMf4AdDwa0uXOhw-k7wJe3QR206ZFzZT4fn1sDy55O0_1F-fmoPm9Ow1Cuw7W0p2oZgBShQU_IhVR3NtRF269WM28bCoCyohF71tgSzMm_dyW2qtkPhptO6Xpw2r2xUpH7AqPIC073m8O3PvfPnmr_MKQ6tS6mUH5sOqu8wrqhwuLsM3j3Pcze-2sCb8gRsw7UfrE0ed_ZTbJmbWRZbKSbX7nvGs_TVB4SpKTCe8VNtmk_4CKc0TP0ZHimi_O8CkOUn7WE7edN--E-6xuZxA47IsE1DkLXtJPuAbJZrk2XshkePp-icDeWPQ0csiLAriBRFlZQBiquXNWBsALiZK0RdchPSq5uLOPVEisXlzPgDAalfxNY2eti3vxTMIAGjZnu4QBYIrd4bUg2AAA9d5OX-TsSO0m3j1lS2sHtekYdr34ofA5dT0ntWdsaQ2WS-8WHYDmGN7TZBcfTJC784EPpoKXuTIwr9NiUAB71FRyk_wY6TdhoDqDw4KtCw28l1QMXGFK3wv0koIHOGVCjuB5IQK7NWNnyned5kSqVgkGY-epfBtvEdcdc7CCBcA7yf-qoGd7idCBnjqcMszsKMD2d95sDDO3nqNV51vhjfA9fxuo-HlGNv12PbsePQTZXSzRM9kVX7jWiu-MFgUfPtZrzYMVh97QA586AZH40Zp5D2NZpfpFFCHFxWCHbhtRhklzeBu1gQ-iWmpxzns2XypqiL5STk4JeBYoav4B7-ypRBO8mwQUEzheZgKO5Hi0jWElzqcWvO2sAouwciUP7-8Tjl0NDLAs7MzuvwtCkzH8o9ikw1vR8MmLToCgUZ1BFHZn5_EH-VWGiZ0x2kikoLM-iHi0fBFUcdj2XrVQ4mnU6IbHh2ST4Xfltx7CmssTxVvK357mX_5Aq5U-13XAJRjGaYX1rsclnudN8N2ib8LYiukfq_Rqxzxdm0QjLuc-vdGLm5V2vdJ2qX5fwrVMaVJgwt393P42SsVoyzkYPpwn4eXfiQssdjPdLkJpLFcjQ==","id":"rs_0562170428b0ad7001698090cd65008196b1811384c1eb1d6c","format":"openai-responses-v1","index":0}],"provider_metadata":{"openai":{"responseId":"resp_0562170428b0ad7001698090ccce248196b6d739df157f9b65","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":7725848.499705,"endTime":7735703.317098,"statusCode":200,"providerResponseId":"resp_0562170428b0ad7001698090ccce248196b6d739df157f9b65"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai/gpt-5","canonicalSlug":"openai/gpt-5","success":false,"providerAttemptCount":0,"providerAttempts":[]}],"totalProviderAttemptCount":0},"cost":"0.00479","marketCost":"0.00479","generationId":"gen_01KGF3B7PMN3C6EZGFX1P9A78S","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":216,"completion_tokens":260,"total_tokens":476,"cost":0.00479,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":192,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.00479},"system_fingerprint":"fp_bemblx56dt","generationId":"gen_01KGF3B7PMN3C6EZGFX1P9A78S"}' + body: '{"id":"gen_01KKHTTK2W8P9CZKMV03VRJETZ","object":"chat.completion","created":1773346320,"model":"openai/gpt-5","choices":[{"index":0,"message":{"role":"assistant","content":"It’s currently about 40°C (104°F) in Florence, Italy. Want the forecast or details like humidity and wind?","reasoning":"**Presenting weather information**\n\nThe tool returned a terse output of 40°C, which is very hot. I want to phrase it as: \"The current temperature in Florence, Italy, is 40°C.\" It might be helpful to warn the user about staying hydrated or mention that it’s likely sunny. I''ll report the temperature and highlight its extremity without inventing details. Including the Fahrenheit conversion could be useful, stating: \"40°C is about 104°F.\" So, my final response will be: \"Current temperature in Florence, Italy, is about 40°C (104°F).\"**Clarifying user needs**\n\nI want to check if the user wants more details like a forecast or information on humidity and wind. Keeping it simple is key, so I plan to avoid heavy formatting and be concise in my response. I think asking them if they need additional details will help ensure I''m providing the information they''re looking for without overwhelming them. Let''s finalize this and make sure it’s straightforward and user-friendly!","reasoning_details":[{"type":"reasoning.summary","summary":"**Presenting weather information**\n\nThe tool returned a terse output of 40°C, which is very hot. I want to phrase it as: \"The current temperature in Florence, Italy, is 40°C.\" It might be helpful to warn the user about staying hydrated or mention that it’s likely sunny. I''ll report the temperature and highlight its extremity without inventing details. Including the Fahrenheit conversion could be useful, stating: \"40°C is about 104°F.\" So, my final response will be: \"Current temperature in Florence, Italy, is about 40°C (104°F).\"**Clarifying user needs**\n\nI want to check if the user wants more details like a forecast or information on humidity and wind. Keeping it simple is key, so I plan to avoid heavy formatting and be concise in my response. I think asking them if they need additional details will help ensure I''m providing the information they''re looking for without overwhelming them. Let''s finalize this and make sure it’s straightforward and user-friendly!","id":"rs_00d2f6810bafb8e40169b31e07d96881908f86723c28e3ade8","format":"openai-responses-v1","index":0},{"type":"reasoning.encrypted","data":"gAAAAABpsx4QjPXFs7MBZyi4wDhhkb4F_sS54UJUyocsvBfRCnLCaVJ66WzB0x-t60C_oXSlGCYZHUP0bs2jJtAGG6n6vRv4m_HZS1gIFDiMfPuWlg_C4sxA9sK4JmOA00bU7ZQkwniQ9ngeYUai-M_IP7vHT-02MvM45F5rlrkugPMJtyXgH_9qhlI_yHVWvEhviNrS9Fc39WJT1qquGgQCt6hTPiimO9IQ-XYf8UYGXeu2-CdYl3Lq4r-gxOopJbOImJAjzVBbS2Wx0z88rZP28X0f_hyfIcx6GOTtnsyTrloxD9Jsx3mdyWCrpZ3wyOfYELiDE1Bbm0umG2hDaNq83oRYoJOtQ_VanSharqc-pjblXdnaQs6jnINnH3hkJCrEVcQsTFnThY3tS2DU1wPFq92WIzTey4A1kMa3_ZmEJGFtkBaAgoNL2ls8d-Nc18C8spSYTS-Cu3joOWVkRsEj5ODLxGWUqNLh0HH-cjj9EEAYLuUScI6J5S_bCuWrUl-7uDnIY9HT_h-IUlp5Cfh58-vHMOSYwTXPMgUUN2BNL9v5Ral1tykgqaHzUXToKYnC9unQb6wwVO1WleHDBaroC_0JzTN4cT_KN8vbVVEAYkN92ghGkrsdZOw_fkvX7SZE0fHcWpndG5gRQUCClsVuYQLgp_IWmbovDifxRyQb3AOe5gupgcU5xSlD8btZTWolfn8IGXiSNC30W2gYcHBttCOGEhIG1l1hc-UTavNVUuNwGLxpkonZZ7E3luxJ4CHMgxaiZccdzcJvixNxmFs8mq2KSAdrm89uIA6W1zfg5yEUbT6HVfliLm67HkXWmRMQVsftdmpZnTmxg6q2KUQEwXKqLZAauorHyNiehEA8sCzxR03g3uKS9owBrHU-lCNNClY4szsIjTOGI7UO9WCxrYJV0Ec6m_gg_0sUwpTJukReY3euz-684jvBhVg1FTwb2wu1DanVLEyB7bzWcaCc8p-zkebPxCww3Dqf_NFdqRXIOmoKl8oFL9t4EuqnB9wLp01QhcJ7aiKc2RGXLhh4MO8_9sNdgGVHyjkP3zOQ8b8ASm0Zun3CMzzl_F6EHPC7-Dkk6GVJQOTrM5EzjANV0hd0ZFmsDKw4eWNzFln3CRZ1WgZFbqJcRmMwJh3SFGUZtbNjX2s9s1msPf4FgUCdAJWqpfuyeC6KbfWj88voj3w0ezImLKN6ZxlRI3YRiLMTE4osHkROoYBaKok0qlJSe7Cn2VaRtVT2HWNRt0H6I_-lTT5G3xInpRWGSzJq89k9zhTAKuq2ZgCkUKrEEZEMH2HXjp559h1YbP7PZOxAEXoAylb16tgfSYozHtWfHjabpv4CeN_JKoVGifoyGrJxPmC4ORsiqaVDmjxyVmA-B6cVoBPLi8cXRSpIfm4_lAc0C3gE-AH5FuCoj-Inj1kd2lYNyagfx3y7-_--gMsyS9V1lajY1UU96J_cXOIlNlQVHTQ4MpAICQKHMljsQuBzNy_tsjGWTqm3WB9YObO6rTE8SH5jDtxWfRN148oKTMfXPvAJBl1GwjusjkpluqZD0cw3FzDj3p6ALhlFp6MpkRk4EMWZ6LrVOmvp1mbfiX4R2_OWtArrsu4kIznTD3Cd1qw72jxhHszAEeGjCUvorhg4-EujPAvuVUE00G_6GX80nSxei2zABX4yf926P-lrYcD_vi8LwfBDuH_40vNe7yXSyX6cCxbPR6MCJErvE-RzR_XZO5kjKhMYFMh4P_-4x7WZTlGS-ysB2_o_B_FR5AUSG-3MLyVIqfQk5iOxAYVHsQi1z66xjuUacIAA9QLtFK9qs9jBkwzF7gf6QJmO4llo7Y9MIukCjcjXTsK20GcOQkz9eIUddxDYc4iPy3-mtUUy-GfzVpWPUFgzPKrMzOM39YfGT5kn2SMwvN_O3QUUk5C2XrQZNC0BDowN4vNo97x1m5CHf2gRIZKz1Od4bHCYzXO0fMl3a-0Y4yoLxSMxmSG2QdsapnWZMr5A-LC14VIKYgEydtOSSQPcN7KMitmAXXi3NkM8mnKw3htH7hSJ2Jq5gywadfKGt1dMYDBsWZF0ZSbF7P3Otz3oYS5YtHu3RanSjAjtAKRjuNTueUfxB4jhA69tiXlKOrrQcyxm_7CfMhRPJEeuZ3T93s2fXaTT4huvxyfvitc9zvyIk6n_gazYoodc7gDlr94VrbD1H5Bi4a84PtKTmsXWrk1IaBYG_fFfGtb1xaHavXt6xtlGwYX1PoAP","id":"rs_00d2f6810bafb8e40169b31e07d96881908f86723c28e3ade8","format":"openai-responses-v1","index":0}],"provider_metadata":{"openai":{"responseId":"resp_00d2f6810bafb8e40169b31e0754448190a8f85e1dd376a88f","serviceTier":"default"},"gateway":{"routing":{"originalModelId":"openai/gpt-5","resolvedProvider":"openai","resolvedProviderApiModelId":"gpt-5-2025-08-07","internalResolvedModelId":"openai:gpt-5-2025-08-07","fallbacksAvailable":["azure"],"internalReasoning":"Selected openai as preferred provider for gpt-5. 1 fallback(s) available: azure","planningReasoning":"System credentials planned for: openai, azure. Total execution order: openai(system) → azure(system)","canonicalSlug":"openai/gpt-5","finalProvider":"openai","attempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1327619.961347,"endTime":1337223.544461,"statusCode":200,"providerResponseId":"resp_00d2f6810bafb8e40169b31e0754448190a8f85e1dd376a88f"}],"modelAttemptCount":1,"modelAttempts":[{"modelId":"openai:gpt-5-2025-08-07","canonicalSlug":"openai/gpt-5","success":true,"providerAttemptCount":1,"providerAttempts":[{"provider":"openai","internalModelId":"openai:gpt-5-2025-08-07","providerApiModelId":"gpt-5-2025-08-07","credentialType":"system","success":true,"startTime":1327619.961347,"endTime":1337223.544461,"statusCode":200,"providerResponseId":"resp_00d2f6810bafb8e40169b31e0754448190a8f85e1dd376a88f"}]}],"totalProviderAttemptCount":1},"cost":"0.0047375","marketCost":"0.0047375","generationId":"gen_01KKHTTK2W8P9CZKMV03VRJETZ","billableWebSearchCalls":0}}},"logprobs":null,"finish_reason":"stop"}],"usage":{"prompt_tokens":206,"completion_tokens":256,"total_tokens":462,"cost":0.0047375,"is_byok":false,"prompt_tokens_details":{"cached_tokens":0,"audio_tokens":0,"video_tokens":0},"cost_details":{"upstream_inference_cost":null,"upstream_inference_prompt_cost":0,"upstream_inference_completions_cost":0},"completion_tokens_details":{"reasoning_tokens":192,"image_tokens":0},"cache_creation_input_tokens":0,"market_cost":0.0047375},"system_fingerprint":"fp_9rir8dou27","service_tier":"default","generationId":"gen_01KKHTTK2W8P9CZKMV03VRJETZ"}' headers: Content-Type: - application/json status: 200 OK code: 200 - duration: 10.00759025s + duration: 9.769461541s