From 71f727f0c6f1021be71a2284bfccaa8465fa2213 Mon Sep 17 00:00:00 2001 From: kujtimiihoxha Date: Thu, 23 Oct 2025 17:00:50 +0200 Subject: [PATCH] feat: add some more simple providers --- providers/cerebras/cerebras.go | 22 + providers/groq/groq.go | 22 + providers/huggingface/huggingface.go | 22 + providers/xai/xai.go | 22 + providers/zai/zai.go | 22 + providertests/cerebras_test.go | 29 + providertests/groq_test.go | 29 + providertests/huggingface_test.go | 29 + .../multi_tool.yaml | 63 + .../multi_tool_streaming.yaml | 123 + .../cerebras-qwen-3-coder-480b/simple.yaml | 33 + .../simple_streaming.yaml | 42 + .../cerebras-qwen-3-coder-480b/tool.yaml | 63 + .../tool_streaming.yaml | 99 + .../groq-kimi-k2-0905/multi_tool.yaml | 65 + .../multi_tool_streaming.yaml | 179 ++ .../groq-kimi-k2-0905/simple.yaml | 34 + .../groq-kimi-k2-0905/simple_streaming.yaml | 46 + .../groq-kimi-k2-0905/tool.yaml | 65 + .../groq-kimi-k2-0905/tool_streaming.yaml | 145 + .../huggingface-glm-4.6/multi_tool.yaml | 61 + .../multi_tool_streaming.yaml | 479 +++ .../huggingface-glm-4.6/simple.yaml | 32 + .../huggingface-glm-4.6/simple_streaming.yaml | 2026 +++++++++++++ .../huggingface-glm-4.6/tool.yaml | 61 + .../huggingface-glm-4.6/tool_streaming.yaml | 323 ++ .../xai-grok-code-fast/multi_tool.yaml | 63 + .../multi_tool_streaming.yaml | 703 +++++ .../xai-grok-code-fast/simple.yaml | 33 + .../xai-grok-code-fast/simple_streaming.yaml | 358 +++ .../xai-grok-code-fast/tool.yaml | 63 + .../xai-grok-code-fast/tool_streaming.yaml | 635 ++++ .../TestZAICommon/zai-glm-4.6/multi_tool.yaml | 63 + .../zai-glm-4.6/multi_tool_streaming.yaml | 465 +++ .../TestZAICommon/zai-glm-4.6/simple.yaml | 33 + .../zai-glm-4.6/simple_streaming.yaml | 2604 +++++++++++++++++ .../TestZAICommon/zai-glm-4.6/tool.yaml | 63 + .../zai-glm-4.6/tool_streaming.yaml | 325 ++ providertests/xai_test.go | 29 + providertests/zai_test.go | 29 + 40 files changed, 9602 insertions(+) create mode 100644 providers/cerebras/cerebras.go create mode 100644 providers/groq/groq.go create mode 100644 providers/huggingface/huggingface.go create mode 100644 providers/xai/xai.go create mode 100644 providers/zai/zai.go create mode 100644 providertests/cerebras_test.go create mode 100644 providertests/groq_test.go create mode 100644 providertests/huggingface_test.go create mode 100644 providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/multi_tool.yaml create mode 100644 providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/multi_tool_streaming.yaml create mode 100644 providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/simple.yaml create mode 100644 providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/simple_streaming.yaml create mode 100644 providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/tool.yaml create mode 100644 providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/tool_streaming.yaml create mode 100644 providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/multi_tool.yaml create mode 100644 providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/multi_tool_streaming.yaml create mode 100644 providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/simple.yaml create mode 100644 providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/simple_streaming.yaml create mode 100644 providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/tool.yaml create mode 100644 providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/tool_streaming.yaml create mode 100644 providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/multi_tool.yaml create mode 100644 providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/multi_tool_streaming.yaml create mode 100644 providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/simple.yaml create mode 100644 providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/simple_streaming.yaml create mode 100644 providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/tool.yaml create mode 100644 providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/tool_streaming.yaml create mode 100644 providertests/testdata/TestXAICommon/xai-grok-code-fast/multi_tool.yaml create mode 100644 providertests/testdata/TestXAICommon/xai-grok-code-fast/multi_tool_streaming.yaml create mode 100644 providertests/testdata/TestXAICommon/xai-grok-code-fast/simple.yaml create mode 100644 providertests/testdata/TestXAICommon/xai-grok-code-fast/simple_streaming.yaml create mode 100644 providertests/testdata/TestXAICommon/xai-grok-code-fast/tool.yaml create mode 100644 providertests/testdata/TestXAICommon/xai-grok-code-fast/tool_streaming.yaml create mode 100644 providertests/testdata/TestZAICommon/zai-glm-4.6/multi_tool.yaml create mode 100644 providertests/testdata/TestZAICommon/zai-glm-4.6/multi_tool_streaming.yaml create mode 100644 providertests/testdata/TestZAICommon/zai-glm-4.6/simple.yaml create mode 100644 providertests/testdata/TestZAICommon/zai-glm-4.6/simple_streaming.yaml create mode 100644 providertests/testdata/TestZAICommon/zai-glm-4.6/tool.yaml create mode 100644 providertests/testdata/TestZAICommon/zai-glm-4.6/tool_streaming.yaml create mode 100644 providertests/xai_test.go create mode 100644 providertests/zai_test.go diff --git a/providers/cerebras/cerebras.go b/providers/cerebras/cerebras.go new file mode 100644 index 0000000000000000000000000000000000000000..aacb012090d7eeb4f3a4781449ac3f6cd3653d75 --- /dev/null +++ b/providers/cerebras/cerebras.go @@ -0,0 +1,22 @@ +package cerebras + +import ( + "charm.land/fantasy" + "charm.land/fantasy/providers/openaicompat" +) + +const ( + Name = "cerebras" + BaseURL = "https://api.cerebras.ai/v1" +) + +type Option = openaicompat.Option + +func New(opts ...Option) (fantasy.Provider, error) { + options := []Option{ + openaicompat.WithName(Name), + openaicompat.WithBaseURL(BaseURL), + } + options = append(options, opts...) + return openaicompat.New(options...) +} diff --git a/providers/groq/groq.go b/providers/groq/groq.go new file mode 100644 index 0000000000000000000000000000000000000000..a2c0bd4b8f5d088ce9efbfb74d37cfe1ba670161 --- /dev/null +++ b/providers/groq/groq.go @@ -0,0 +1,22 @@ +package groq + +import ( + "charm.land/fantasy" + "charm.land/fantasy/providers/openaicompat" +) + +const ( + Name = "groq" + BaseURL = "https://api.groq.com/openai/v1" +) + +type Option = openaicompat.Option + +func New(opts ...Option) (fantasy.Provider, error) { + options := []Option{ + openaicompat.WithName(Name), + openaicompat.WithBaseURL(BaseURL), + } + options = append(options, opts...) + return openaicompat.New(options...) +} diff --git a/providers/huggingface/huggingface.go b/providers/huggingface/huggingface.go new file mode 100644 index 0000000000000000000000000000000000000000..61c968f009f85782fc663d40893f5bdc7a40b78e --- /dev/null +++ b/providers/huggingface/huggingface.go @@ -0,0 +1,22 @@ +package huggingface + +import ( + "charm.land/fantasy" + "charm.land/fantasy/providers/openaicompat" +) + +const ( + Name = "huggingface" + BaseURL = "https://router.huggingface.co/v1" +) + +type Option = openaicompat.Option + +func New(opts ...Option) (fantasy.Provider, error) { + options := []Option{ + openaicompat.WithName(Name), + openaicompat.WithBaseURL(BaseURL), + } + options = append(options, opts...) + return openaicompat.New(options...) +} diff --git a/providers/xai/xai.go b/providers/xai/xai.go new file mode 100644 index 0000000000000000000000000000000000000000..9e62ea9ded64dba4a036b066c9171cfc317bbfda --- /dev/null +++ b/providers/xai/xai.go @@ -0,0 +1,22 @@ +package xai + +import ( + "charm.land/fantasy" + "charm.land/fantasy/providers/openaicompat" +) + +const ( + Name = "xai" + BaseURL = "https://api.x.ai/v1" +) + +type Option = openaicompat.Option + +func New(opts ...Option) (fantasy.Provider, error) { + options := []Option{ + openaicompat.WithName(Name), + openaicompat.WithBaseURL(BaseURL), + } + options = append(options, opts...) + return openaicompat.New(options...) +} diff --git a/providers/zai/zai.go b/providers/zai/zai.go new file mode 100644 index 0000000000000000000000000000000000000000..490340fdbb6ad661799f35b3f105b004f4069e57 --- /dev/null +++ b/providers/zai/zai.go @@ -0,0 +1,22 @@ +package zai + +import ( + "charm.land/fantasy" + "charm.land/fantasy/providers/openaicompat" +) + +const ( + Name = "zai" + BaseURL = "https://api.z.ai/api/coding/paas/v4" +) + +type Option = openaicompat.Option + +func New(opts ...Option) (fantasy.Provider, error) { + options := []Option{ + openaicompat.WithName(Name), + openaicompat.WithBaseURL(BaseURL), + } + options = append(options, opts...) + return openaicompat.New(options...) +} diff --git a/providertests/cerebras_test.go b/providertests/cerebras_test.go new file mode 100644 index 0000000000000000000000000000000000000000..f6e0de12ff8fe171a9c4d1764a29d997d30b699e --- /dev/null +++ b/providertests/cerebras_test.go @@ -0,0 +1,29 @@ +package providertests + +import ( + "net/http" + "os" + "testing" + + "charm.land/fantasy" + "charm.land/fantasy/providers/cerebras" + "charm.land/fantasy/providers/openaicompat" + "gopkg.in/dnaeon/go-vcr.v4/pkg/recorder" +) + +func TestCerebrasCommon(t *testing.T) { + testCommon(t, []builderPair{ + {"cerebras-qwen-3-coder-480b", builderCerebras, nil, nil}, + }) +} + +func builderCerebras(t *testing.T, r *recorder.Recorder) (fantasy.LanguageModel, error) { + provider, err := cerebras.New( + openaicompat.WithAPIKey(os.Getenv("FANTASY_CEREBRAS_API_KEY")), + openaicompat.WithHTTPClient(&http.Client{Transport: r}), + ) + if err != nil { + return nil, err + } + return provider.LanguageModel(t.Context(), "qwen-3-coder-480b") +} diff --git a/providertests/groq_test.go b/providertests/groq_test.go new file mode 100644 index 0000000000000000000000000000000000000000..5be71ee31a2e62a8e257c4d5c02a25f738d93a03 --- /dev/null +++ b/providertests/groq_test.go @@ -0,0 +1,29 @@ +package providertests + +import ( + "net/http" + "os" + "testing" + + "charm.land/fantasy" + "charm.land/fantasy/providers/groq" + "charm.land/fantasy/providers/openaicompat" + "gopkg.in/dnaeon/go-vcr.v4/pkg/recorder" +) + +func TestGroqCommon(t *testing.T) { + testCommon(t, []builderPair{ + {"groq-kimi-k2-0905", builderGroqProvider, nil, nil}, + }) +} + +func builderGroqProvider(t *testing.T, r *recorder.Recorder) (fantasy.LanguageModel, error) { + provider, err := groq.New( + openaicompat.WithAPIKey(os.Getenv("FANTASY_GROQ_API_KEY")), + openaicompat.WithHTTPClient(&http.Client{Transport: r}), + ) + if err != nil { + return nil, err + } + return provider.LanguageModel(t.Context(), "moonshotai/kimi-k2-instruct-0905") +} diff --git a/providertests/huggingface_test.go b/providertests/huggingface_test.go new file mode 100644 index 0000000000000000000000000000000000000000..f33f3accaa4dc52423167e90bc166370e03432cd --- /dev/null +++ b/providertests/huggingface_test.go @@ -0,0 +1,29 @@ +package providertests + +import ( + "net/http" + "os" + "testing" + + "charm.land/fantasy" + "charm.land/fantasy/providers/huggingface" + "charm.land/fantasy/providers/openaicompat" + "gopkg.in/dnaeon/go-vcr.v4/pkg/recorder" +) + +func TestHuggingFaceCommon(t *testing.T) { + testCommon(t, []builderPair{ + {"huggingface-glm-4.6", builderHuggingFaceProvider, nil, nil}, + }) +} + +func builderHuggingFaceProvider(t *testing.T, r *recorder.Recorder) (fantasy.LanguageModel, error) { + provider, err := huggingface.New( + openaicompat.WithAPIKey(os.Getenv("FANTASY_HUGGINGFACE_API_KEY")), + openaicompat.WithHTTPClient(&http.Client{Transport: r}), + ) + if err != nil { + return nil, err + } + return provider.LanguageModel(t.Context(), "zai-org/GLM-4.6") +} diff --git a/providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/multi_tool.yaml b/providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/multi_tool.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b01675a2ae95b802e058da6032ace95de9d1ac80 --- /dev/null +++ b/providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/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: 822 + 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":"qwen-3-coder-480b","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.cerebras.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: '{"id":"chatcmpl-739954f9-329a-4ea3-9b99-e835f50133fa","choices":[{"finish_reason":"tool_calls","index":0,"message":{"tool_calls":[{"id":"c35d15b73","type":"function","function":{"name":"add","arguments":"{\"a\": 2, \"b\": 3}"}},{"id":"c5e304cf7","type":"function","function":{"name":"multiply","arguments":"{\"a\": 2, \"b\": 3}"}}],"role":"assistant"}}],"created":1761231235,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion","usage":{"prompt_tokens":412,"completion_tokens":59,"total_tokens":471,"prompt_tokens_details":{"cached_tokens":0}},"time_info":{"queue_time":0.000109541,"prompt_time":0.017644706,"completion_time":0.030188646,"total_time":0.04938220977783203,"created":1761231235.6652448}}' + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 334.105209ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1173 + 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":"c35d15b73","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"c5e304cf7","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"c35d15b73","role":"tool"},{"content":"6","tool_call_id":"c5e304cf7","role":"tool"}],"model":"qwen-3-coder-480b","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.cerebras.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: '{"id":"chatcmpl-fd0232dd-90ed-48b4-ad5d-07d8c3ae6ace","choices":[{"finish_reason":"stop","index":0,"message":{"content":"The sum of 2 and 3 is 5, and the product of 2 and 3 is 6.","role":"assistant"}}],"created":1761231236,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion","usage":{"prompt_tokens":492,"completion_tokens":26,"total_tokens":518,"prompt_tokens_details":{"cached_tokens":0}},"time_info":{"queue_time":0.000347472,"prompt_time":0.00566039,"completion_time":0.009885108,"total_time":0.017212629318237305,"created":1761231236.0040975}}' + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 365.325167ms diff --git a/providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/multi_tool_streaming.yaml b/providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/multi_tool_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b8a4f31bad2c4020b6284826763a521843694117 --- /dev/null +++ b/providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/multi_tool_streaming.yaml @@ -0,0 +1,123 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 859 + 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":"qwen-3-coder-480b","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.cerebras.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"chatcmpl-5c5013db-58c5-4c0b-9e7e-10eccacdc535","choices":[{"delta":{"role":"assistant"},"index":0}],"created":1761231236,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-5c5013db-58c5-4c0b-9e7e-10eccacdc535","choices":[{"delta":{"tool_calls":[{"function":{"name":"add","arguments":"{\"a\": 2, \"b\": 3}"},"type":"function","id":"ab8048658","index":0},{"function":{"name":"multiply","arguments":"{\"a\": 2, \"b\": 3}"},"type":"function","id":"b249e0b3f","index":1}]},"index":0}],"created":1761231236,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-5c5013db-58c5-4c0b-9e7e-10eccacdc535","choices":[{"delta":{},"finish_reason":"tool_calls","index":0}],"created":1761231236,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk","usage":{"prompt_tokens":408,"completion_tokens":59,"total_tokens":467,"prompt_tokens_details":{"cached_tokens":0}},"time_info":{"queue_time":0.000163361,"prompt_time":0.014535933,"completion_time":0.030461228,"total_time":0.046776533126831055,"created":1761231236.3815937}} + + headers: + Content-Type: + - text/event-stream; charset=utf-8 + status: 200 OK + code: 200 + duration: 415.440041ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1210 + 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":"ab8048658","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"add"},"type":"function"},{"id":"b249e0b3f","function":{"arguments":"{\"a\": 2, \"b\": 3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"ab8048658","role":"tool"},{"content":"6","tool_call_id":"b249e0b3f","role":"tool"}],"model":"qwen-3-coder-480b","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.cerebras.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"role":"assistant"},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":"The"},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":" sum"},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":" of"},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":" "},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":"2"},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":" and"},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":" "},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":"3"},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":" is"},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":" "},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":"5"},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":","},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":" and"},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":" the"},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":" product"},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":" of"},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":" "},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":"2"},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":" and"},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":" "},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":"3"},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":" is"},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":" "},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":"6"},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{"content":"."},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{},"index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3de2c971-cc92-43b7-91b0-caf8543a7819","choices":[{"delta":{},"finish_reason":"stop","index":0}],"created":1761231234,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk","usage":{"prompt_tokens":488,"completion_tokens":26,"total_tokens":514,"prompt_tokens_details":{"cached_tokens":0}},"time_info":{"queue_time":0.00009602,"prompt_time":0.026647695,"completion_time":0.014833488,"total_time":0.04320025444030762,"created":1761231234.2838135}} + + headers: + Content-Type: + - text/event-stream; charset=utf-8 + status: 200 OK + code: 200 + duration: 410.382375ms diff --git a/providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/simple.yaml b/providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/simple.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a6ebb3e92c0637e96d085bc4bf07af8cd3f4fbc5 --- /dev/null +++ b/providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/simple.yaml @@ -0,0 +1,33 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 167 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"qwen-3-coder-480b","max_tokens":4000}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.7.1 + url: https://api.cerebras.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: '{"id":"chatcmpl-c26a99f0-d64b-41e1-b3d1-91c6d3b45401","choices":[{"finish_reason":"stop","index":0,"message":{"content":"Olá!","role":"assistant"}}],"created":1761231230,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion","usage":{"prompt_tokens":22,"completion_tokens":4,"total_tokens":26,"prompt_tokens_details":{"cached_tokens":0}},"time_info":{"queue_time":0.0001114,"prompt_time":0.00203661,"completion_time":0.00354778,"total_time":0.006747245788574219,"created":1761231230.5353851}}' + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 671.342292ms diff --git a/providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/simple_streaming.yaml b/providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/simple_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..9f085cf667c0c8037cf1eeccb8761fa0fffc814f --- /dev/null +++ b/providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/simple_streaming.yaml @@ -0,0 +1,42 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 221 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"qwen-3-coder-480b","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.cerebras.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"chatcmpl-07ac2555-5f70-4250-bf47-c33cb5e4e22f","choices":[{"delta":{"role":"assistant"},"index":0}],"created":1761231233,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-07ac2555-5f70-4250-bf47-c33cb5e4e22f","choices":[{"delta":{"content":"Oi"},"index":0}],"created":1761231233,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-07ac2555-5f70-4250-bf47-c33cb5e4e22f","choices":[{"delta":{"content":"!"},"index":0}],"created":1761231233,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-07ac2555-5f70-4250-bf47-c33cb5e4e22f","choices":[{"delta":{},"index":0}],"created":1761231233,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-07ac2555-5f70-4250-bf47-c33cb5e4e22f","choices":[{"delta":{},"finish_reason":"stop","index":0}],"created":1761231233,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk","usage":{"prompt_tokens":22,"completion_tokens":3,"total_tokens":25,"prompt_tokens_details":{"cached_tokens":0}},"time_info":{"queue_time":0.000533844,"prompt_time":0.00128098,"completion_time":0.003694258,"total_time":0.007519960403442383,"created":1761231233.440385}} + + headers: + Content-Type: + - text/event-stream; charset=utf-8 + status: 200 OK + code: 200 + duration: 283.289209ms diff --git a/providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/tool.yaml b/providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/tool.yaml new file mode 100644 index 0000000000000000000000000000000000000000..6f0701fc86203340717fc36a39953a3097cc69ab --- /dev/null +++ b/providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/tool.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 459 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"qwen-3-coder-480b","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.cerebras.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: '{"id":"chatcmpl-358e2e8b-193b-44db-8f3b-b82dc786d90e","choices":[{"finish_reason":"tool_calls","index":0,"message":{"tool_calls":[{"id":"181e286b1","type":"function","function":{"name":"weather","arguments":"{\"location\": \"Florence\"}"}}],"role":"assistant"}}],"created":1761231233,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion","usage":{"prompt_tokens":277,"completion_tokens":23,"total_tokens":300,"prompt_tokens_details":{"cached_tokens":0}},"time_info":{"queue_time":0.042823605,"prompt_time":0.012713736,"completion_time":0.016030452,"total_time":0.07278990745544434,"created":1761231233.7300596}}' + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 590.744083ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 665 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"181e286b1","function":{"arguments":"{\"location\": \"Florence\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"181e286b1","role":"tool"}],"model":"qwen-3-coder-480b","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.cerebras.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: '{"id":"chatcmpl-2dec33fe-8287-4b1a-803c-8a6a00664bb8","choices":[{"finish_reason":"stop","index":0,"message":{"content":"The current weather in Florence, Italy is 40°C.","role":"assistant"}}],"created":1761231231,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion","usage":{"prompt_tokens":317,"completion_tokens":14,"total_tokens":331,"prompt_tokens_details":{"cached_tokens":0}},"time_info":{"queue_time":0.025669097,"prompt_time":0.015523098,"completion_time":0.009339437,"total_time":0.055092573165893555,"created":1761231231.8161113}}' + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 366.827417ms diff --git a/providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/tool_streaming.yaml b/providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/tool_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..356bee744b8388f27ca434ecfd9ddd55d9374872 --- /dev/null +++ b/providertests/testdata/TestCerebrasCommon/cerebras-qwen-3-coder-480b/tool_streaming.yaml @@ -0,0 +1,99 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 513 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"qwen-3-coder-480b","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.cerebras.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"chatcmpl-e0347bac-7067-402a-90b0-de824b22e28d","choices":[{"delta":{"role":"assistant"},"index":0}],"created":1761231232,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-e0347bac-7067-402a-90b0-de824b22e28d","choices":[{"delta":{"tool_calls":[{"function":{"name":"weather","arguments":"{\"location\": \"Florence,Italy\"}"},"type":"function","id":"27781e665","index":0}]},"index":0}],"created":1761231232,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-e0347bac-7067-402a-90b0-de824b22e28d","choices":[{"delta":{},"finish_reason":"tool_calls","index":0}],"created":1761231232,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk","usage":{"prompt_tokens":277,"completion_tokens":25,"total_tokens":302,"prompt_tokens_details":{"cached_tokens":0}},"time_info":{"queue_time":0.00023776,"prompt_time":0.01277883,"completion_time":0.017435801,"total_time":0.03246140480041504,"created":1761231232.1930194}} + + headers: + Content-Type: + - text/event-stream; charset=utf-8 + status: 200 OK + code: 200 + duration: 554.299125ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 725 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"27781e665","function":{"arguments":"{\"location\": \"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"27781e665","role":"tool"}],"model":"qwen-3-coder-480b","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.cerebras.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"chatcmpl-3f2608fe-2a08-45b1-a2d7-647546bca09b","choices":[{"delta":{"role":"assistant"},"index":0}],"created":1761231235,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3f2608fe-2a08-45b1-a2d7-647546bca09b","choices":[{"delta":{"content":"The"},"index":0}],"created":1761231235,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3f2608fe-2a08-45b1-a2d7-647546bca09b","choices":[{"delta":{"content":" weather"},"index":0}],"created":1761231235,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3f2608fe-2a08-45b1-a2d7-647546bca09b","choices":[{"delta":{"content":" in"},"index":0}],"created":1761231235,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3f2608fe-2a08-45b1-a2d7-647546bca09b","choices":[{"delta":{"content":" Florence"},"index":0}],"created":1761231235,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3f2608fe-2a08-45b1-a2d7-647546bca09b","choices":[{"delta":{"content":","},"index":0}],"created":1761231235,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3f2608fe-2a08-45b1-a2d7-647546bca09b","choices":[{"delta":{"content":" Italy"},"index":0}],"created":1761231235,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3f2608fe-2a08-45b1-a2d7-647546bca09b","choices":[{"delta":{"content":" is"},"index":0}],"created":1761231235,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3f2608fe-2a08-45b1-a2d7-647546bca09b","choices":[{"delta":{"content":" currently"},"index":0}],"created":1761231235,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3f2608fe-2a08-45b1-a2d7-647546bca09b","choices":[{"delta":{"content":" "},"index":0}],"created":1761231235,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3f2608fe-2a08-45b1-a2d7-647546bca09b","choices":[{"delta":{"content":"4"},"index":0}],"created":1761231235,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3f2608fe-2a08-45b1-a2d7-647546bca09b","choices":[{"delta":{"content":"0"},"index":0}],"created":1761231235,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3f2608fe-2a08-45b1-a2d7-647546bca09b","choices":[{"delta":{"content":"°C"},"index":0}],"created":1761231235,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3f2608fe-2a08-45b1-a2d7-647546bca09b","choices":[{"delta":{"content":"."},"index":0}],"created":1761231235,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3f2608fe-2a08-45b1-a2d7-647546bca09b","choices":[{"delta":{},"index":0}],"created":1761231235,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk"} + + data: {"id":"chatcmpl-3f2608fe-2a08-45b1-a2d7-647546bca09b","choices":[{"delta":{},"finish_reason":"stop","index":0}],"created":1761231235,"model":"qwen-3-coder-480b","system_fingerprint":"fp_386b539e7b02ce3613b7","object":"chat.completion.chunk","usage":{"prompt_tokens":319,"completion_tokens":14,"total_tokens":333,"prompt_tokens_details":{"cached_tokens":0}},"time_info":{"queue_time":0.000132691,"prompt_time":0.011949852,"completion_time":0.007288454,"total_time":0.02104043960571289,"created":1761231235.267821}} + + headers: + Content-Type: + - text/event-stream; charset=utf-8 + status: 200 OK + code: 200 + duration: 406.379209ms diff --git a/providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/multi_tool.yaml b/providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/multi_tool.yaml new file mode 100644 index 0000000000000000000000000000000000000000..d2f50575a491b653b7255b294513c199ccfd9c2a --- /dev/null +++ b/providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/multi_tool.yaml @@ -0,0 +1,65 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 837 + 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","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.groq.com/openai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: | + {"id":"chatcmpl-e4fc51e4-e08d-4122-b6b5-e5d78aad2c92","object":"chat.completion","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","choices":[{"index":0,"message":{"role":"assistant","content":"I'll perform both the addition and multiplication operations 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.164058511,"prompt_tokens":205,"prompt_time":0.042868452,"completion_tokens":58,"completion_time":0.18327994,"total_tokens":263,"total_time":0.226148392},"usage_breakdown":null,"system_fingerprint":"fp_3312304636","x_groq":{"id":"req_01k88s36hnec3r9g9szm2nnmwc"},"service_tier":"on_demand"} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 610.726625ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1313 + 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 perform both the addition and multiplication operations 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","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.groq.com/openai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: | + {"id":"chatcmpl-c943396c-8833-4aa8-b955-7b041552ae10","object":"chat.completion","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","choices":[{"index":0,"message":{"role":"assistant","content":"Here are the results for the numbers 2 and 3:\n- **Addition**: 2 + 3 = 5\n- **Multiplication**: 2 × 3 = 6"},"logprobs":null,"finish_reason":"stop"}],"usage":{"queue_time":0.164114085,"prompt_tokens":300,"prompt_time":0.036248822,"completion_tokens":40,"completion_time":0.108795555,"total_tokens":340,"total_time":0.145044377},"usage_breakdown":null,"system_fingerprint":"fp_3312304636","x_groq":{"id":"req_01k88s374vet9tpkbsh9y1tks8"},"service_tier":"on_demand"} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 369.01475ms diff --git a/providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/multi_tool_streaming.yaml b/providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/multi_tool_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a9129d30893f4a9c4ee854bcfd01bd9e64c7b331 --- /dev/null +++ b/providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/multi_tool_streaming.yaml @@ -0,0 +1,179 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 874 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"}],"model":"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 + url: https://api.groq.com/openai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"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_01k88s37gyfaqa5ckqj4t7mrg8"}} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"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-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" help"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" you"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" add"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" multiply"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" numbers"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":"2"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" and"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" Let"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" me"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" use"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" both"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":" operations"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"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-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"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-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}],"x_groq":{"id":"req_01k88s37gyfaqa5ckqj4t7mrg8","usage":{"queue_time":0.19017122,"prompt_tokens":201,"prompt_time":0.021080836,"completion_tokens":61,"completion_time":0.201014516,"total_tokens":262,"total_time":0.222095352}},"usage":{"queue_time":0.19017122,"prompt_tokens":201,"prompt_time":0.021080836,"completion_tokens":61,"completion_time":0.201014516,"total_tokens":262,"total_time":0.222095352}} + + data: {"id":"chatcmpl-e0ee82dc-f97f-453e-94fc-c466bc702e1f","object":"chat.completion.chunk","created":1761231347,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_05df423bab","choices":[],"usage":{"queue_time":0.19017122,"prompt_tokens":201,"prompt_time":0.021080836,"completion_tokens":61,"completion_time":0.201014516,"total_tokens":262,"total_time":0.222095352},"service_tier":"on_demand"} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 365.150042ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1345 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"content":"I''ll help you add and multiply the numbers 2 and 3. Let me use both operations:","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 + url: https://api.groq.com/openai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"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_01k88s385bete86206z5e7616n"}} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"Here"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" are"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" results"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":":\n"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"-"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" Addition"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"2"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" +"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" ="},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"5"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"\n"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"-"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" Multi"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"plication"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":":"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"2"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" ×"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"3"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" ="},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"6"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"x_groq":{"id":"req_01k88s385bete86206z5e7616n","usage":{"queue_time":0.161108553,"prompt_tokens":299,"prompt_time":0.030321043,"completion_tokens":30,"completion_time":0.064738989,"total_tokens":329,"total_time":0.095060032}},"usage":{"queue_time":0.161108553,"prompt_tokens":299,"prompt_time":0.030321043,"completion_tokens":30,"completion_time":0.064738989,"total_tokens":329,"total_time":0.095060032}} + + data: {"id":"chatcmpl-892bb41f-5e78-4908-ae34-bc316457bd35","object":"chat.completion.chunk","created":1761231348,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[],"usage":{"queue_time":0.161108553,"prompt_tokens":299,"prompt_time":0.030321043,"completion_tokens":30,"completion_time":0.064738989,"total_tokens":329,"total_time":0.095060032},"service_tier":"on_demand"} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 432.309709ms diff --git a/providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/simple.yaml b/providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/simple.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c5618a5455f3c79490e984e212ed6f1c69d48125 --- /dev/null +++ b/providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/simple.yaml @@ -0,0 +1,34 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 182 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"moonshotai/kimi-k2-instruct-0905","max_tokens":4000}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.7.1 + url: https://api.groq.com/openai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: | + {"id":"chatcmpl-46177a1f-ece6-437d-891d-b31f860e1ea5","object":"chat.completion","created":1761231344,"model":"moonshotai/kimi-k2-instruct-0905","choices":[{"index":0,"message":{"role":"assistant","content":"Olá!"},"logprobs":null,"finish_reason":"stop"}],"usage":{"queue_time":0.189918723,"prompt_tokens":20,"prompt_time":0.009775331,"completion_tokens":4,"completion_time":0.008735758,"total_tokens":24,"total_time":0.018511089},"usage_breakdown":null,"system_fingerprint":"fp_05df423bab","x_groq":{"id":"req_01k88s34gqebz95rb4y58dd523"},"service_tier":"on_demand"} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 550.907417ms diff --git a/providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/simple_streaming.yaml b/providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/simple_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..3b3a4902174cd393cc790bb5ab4cbcbdcd4669f5 --- /dev/null +++ b/providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/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: 236 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"moonshotai/kimi-k2-instruct-0905","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.groq.com/openai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"chatcmpl-217967f6-a17e-43ab-a156-6b28ea4e8338","object":"chat.completion.chunk","created":1761231344,"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_01k88s34vjesy920ksmza5dh2b"}} + + data: {"id":"chatcmpl-217967f6-a17e-43ab-a156-6b28ea4e8338","object":"chat.completion.chunk","created":1761231344,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"Ol"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-217967f6-a17e-43ab-a156-6b28ea4e8338","object":"chat.completion.chunk","created":1761231344,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"á"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-217967f6-a17e-43ab-a156-6b28ea4e8338","object":"chat.completion.chunk","created":1761231344,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"!"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-217967f6-a17e-43ab-a156-6b28ea4e8338","object":"chat.completion.chunk","created":1761231344,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"x_groq":{"id":"req_01k88s34vjesy920ksmza5dh2b","usage":{"queue_time":0.16084081,"prompt_tokens":20,"prompt_time":0.012868493,"completion_tokens":4,"completion_time":0.009134913,"total_tokens":24,"total_time":0.022003406}},"usage":{"queue_time":0.16084081,"prompt_tokens":20,"prompt_time":0.012868493,"completion_tokens":4,"completion_time":0.009134913,"total_tokens":24,"total_time":0.022003406}} + + data: {"id":"chatcmpl-217967f6-a17e-43ab-a156-6b28ea4e8338","object":"chat.completion.chunk","created":1761231344,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[],"usage":{"queue_time":0.16084081,"prompt_tokens":20,"prompt_time":0.012868493,"completion_tokens":4,"completion_time":0.009134913,"total_tokens":24,"total_time":0.022003406},"service_tier":"on_demand"} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 308.052208ms diff --git a/providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/tool.yaml b/providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/tool.yaml new file mode 100644 index 0000000000000000000000000000000000000000..b875e0ca497486ca1ca91528cedcb7d3f0bfa109 --- /dev/null +++ b/providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/tool.yaml @@ -0,0 +1,65 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 474 + 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","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.groq.com/openai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: | + {"id":"chatcmpl-b5fd6e30-7e7f-4860-91a8-b8a0dac0a9b8","object":"chat.completion","created":1761231345,"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.175172694,"prompt_tokens":93,"prompt_time":0.015929393,"completion_tokens":21,"completion_time":0.050758214,"total_tokens":114,"total_time":0.066687607},"usage_breakdown":null,"system_fingerprint":"fp_5fe129dff6","x_groq":{"id":"req_01k88s355bet1amym1j51bjn3q"},"service_tier":"on_demand"} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 307.672708ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + 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":"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 + url: https://api.groq.com/openai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: | + {"id":"chatcmpl-815940cf-dd77-4582-aaed-b1b9445c46b5","object":"chat.completion","created":1761231345,"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.178694445,"prompt_tokens":132,"prompt_time":0.024773119,"completion_tokens":13,"completion_time":0.017598591,"total_tokens":145,"total_time":0.04237171},"usage_breakdown":null,"system_fingerprint":"fp_3312304636","x_groq":{"id":"req_01k88s35f4et2v8rawg6fr293j"},"service_tier":"on_demand"} + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 397.189834ms diff --git a/providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/tool_streaming.yaml b/providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/tool_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..a2e4f2b1c0dd0edfd8c9183dc80bba58371f6d7a --- /dev/null +++ b/providertests/testdata/TestGroqCommon/groq-kimi-k2-0905/tool_streaming.yaml @@ -0,0 +1,145 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 528 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"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 + url: https://api.groq.com/openai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"chatcmpl-45079269-988c-4889-82eb-2c02075e6e0d","object":"chat.completion.chunk","created":1761231345,"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_01k88s35vyfamba7t4z3e4xhqx"}} + + data: {"id":"chatcmpl-45079269-988c-4889-82eb-2c02075e6e0d","object":"chat.completion.chunk","created":1761231345,"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-45079269-988c-4889-82eb-2c02075e6e0d","object":"chat.completion.chunk","created":1761231345,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" check"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-45079269-988c-4889-82eb-2c02075e6e0d","object":"chat.completion.chunk","created":1761231345,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" the"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-45079269-988c-4889-82eb-2c02075e6e0d","object":"chat.completion.chunk","created":1761231345,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" weather"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-45079269-988c-4889-82eb-2c02075e6e0d","object":"chat.completion.chunk","created":1761231345,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-45079269-988c-4889-82eb-2c02075e6e0d","object":"chat.completion.chunk","created":1761231345,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" Florence"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-45079269-988c-4889-82eb-2c02075e6e0d","object":"chat.completion.chunk","created":1761231345,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-45079269-988c-4889-82eb-2c02075e6e0d","object":"chat.completion.chunk","created":1761231345,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" Italy"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-45079269-988c-4889-82eb-2c02075e6e0d","object":"chat.completion.chunk","created":1761231345,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" for"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-45079269-988c-4889-82eb-2c02075e6e0d","object":"chat.completion.chunk","created":1761231345,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":" you"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-45079269-988c-4889-82eb-2c02075e6e0d","object":"chat.completion.chunk","created":1761231345,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{"content":"."},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-45079269-988c-4889-82eb-2c02075e6e0d","object":"chat.completion.chunk","created":1761231345,"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-45079269-988c-4889-82eb-2c02075e6e0d","object":"chat.completion.chunk","created":1761231345,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"tool_calls"}],"x_groq":{"id":"req_01k88s35vyfamba7t4z3e4xhqx","usage":{"queue_time":0.163944615,"prompt_tokens":93,"prompt_time":0.028004575,"completion_tokens":32,"completion_time":0.110718697,"total_tokens":125,"total_time":0.138723272}},"usage":{"queue_time":0.163944615,"prompt_tokens":93,"prompt_time":0.028004575,"completion_tokens":32,"completion_time":0.110718697,"total_tokens":125,"total_time":0.138723272}} + + data: {"id":"chatcmpl-45079269-988c-4889-82eb-2c02075e6e0d","object":"chat.completion.chunk","created":1761231345,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_3312304636","choices":[],"usage":{"queue_time":0.163944615,"prompt_tokens":93,"prompt_time":0.028004575,"completion_tokens":32,"completion_time":0.110718697,"total_tokens":125,"total_time":0.138723272},"service_tier":"on_demand"} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 276.457041ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 822 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"I''ll 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 + url: https://api.groq.com/openai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"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_01k88s367zet6vhtb67szh6xj3"}} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"The"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" weather"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" in"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" Florence"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":","},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" Italy"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" is"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" currently"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" "},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"40"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"°C"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" ("},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"104"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"°F"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":")."},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" It's"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" quite"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" hot"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" there"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" right"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":" now"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{"content":"!"},"logprobs":null,"finish_reason":null}]} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[{"index":0,"delta":{},"logprobs":null,"finish_reason":"stop"}],"x_groq":{"id":"req_01k88s367zet6vhtb67szh6xj3","usage":{"queue_time":0.160349215,"prompt_tokens":143,"prompt_time":0.034508335,"completion_tokens":23,"completion_time":0.05532484,"total_tokens":166,"total_time":0.089833175}},"usage":{"queue_time":0.160349215,"prompt_tokens":143,"prompt_time":0.034508335,"completion_tokens":23,"completion_time":0.05532484,"total_tokens":166,"total_time":0.089833175}} + + data: {"id":"chatcmpl-ab09755f-af39-417a-a70a-d8edcdf1dd62","object":"chat.completion.chunk","created":1761231346,"model":"moonshotai/kimi-k2-instruct-0905","system_fingerprint":"fp_5fe129dff6","choices":[],"usage":{"queue_time":0.160349215,"prompt_tokens":143,"prompt_time":0.034508335,"completion_tokens":23,"completion_time":0.05532484,"total_tokens":166,"total_time":0.089833175},"service_tier":"on_demand"} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 270.453542ms diff --git a/providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/multi_tool.yaml b/providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/multi_tool.yaml new file mode 100644 index 0000000000000000000000000000000000000000..7ae5010e46b8061f56ade89bb07bfe8f4fbb47fb --- /dev/null +++ b/providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/multi_tool.yaml @@ -0,0 +1,61 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 820 + 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","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: '{"choices":[{"finish_reason":"tool_calls","index":0,"message":{"reasoning_content":"The user wants me to add and multiply the numbers 2 and 3. According to the critical instruction, I need to use both add and multiply functions at the same time. \n\nFor add: a=2, b=3\nFor multiply: a=2, b=3\n\nI''ll call both functions.","role":"assistant","tool_calls":[{"function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"id":"call_-8223416512122051790","index":0,"type":"function"},{"function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"id":"call_-8223416512122051789","index":1,"type":"function"}]}}],"created":1761231486,"id":"20251023225801db6b652dc9124c7f","model":"glm-4.6","request_id":"20251023225801db6b652dc9124c7f","usage":{"completion_tokens":126,"prompt_tokens":286,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":412}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 5.27517675s +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1229 + 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_-8223416512122051790","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_-8223416512122051789","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_-8223416512122051790","role":"tool"},{"content":"6","tool_call_id":"call_-8223416512122051789","role":"tool"}],"model":"zai-org/GLM-4.6","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: '{"choices":[{"finish_reason":"stop","index":0,"message":{"content":"\n\nHere are the results for adding and multiplying 2 and 3:\n\n**Addition:** 2 + 3 = 5\n**Multiplication:** 2 × 3 = 6","reasoning_content":"Perfect! I''ve used both the add and multiply functions as requested. The results show:\n- Adding 2 and 3 gives 5\n- Multiplying 2 and 3 gives 6\n\nI should present these results clearly to the user.","role":"assistant"}}],"created":1761231489,"id":"2025102322580765e2965aefdb4735","model":"glm-4.6","request_id":"2025102322580765e2965aefdb4735","usage":{"completion_tokens":95,"prompt_tokens":345,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":440}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 3.554623834s diff --git a/providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/multi_tool_streaming.yaml b/providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/multi_tool_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..cc544836c4bbfe48229cc2e8a2bccd76c0cb2195 --- /dev/null +++ b/providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/multi_tool_streaming.yaml @@ -0,0 +1,479 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 857 + 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","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":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" asking"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" me"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" add"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiply"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" numbers"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" need"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" add"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiply"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" at"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" same"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" time"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" instructed"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n\n"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"For"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" adding"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'ll"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" add"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"="}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" b"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"="}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"For"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiplying"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'ll"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiply"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"="}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" b"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"="}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n\n"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Both"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" functions"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" require"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameters"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" b"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" which"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" have"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"I"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"'ll"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" add"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" multiply"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" the"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" numbers"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"2"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"3"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" for"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" you"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":".\n"}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_f39916b2bbbe4effbd54da31","index":0,"type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}}]}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_6b9a774e049c4cbbbb72efec","index":1,"type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}]}}]} + + data: {"id":"20251023225810524037e8a9404dbd","created":1761231490,"model":"glm-4.6","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":282,"completion_tokens":156,"total_tokens":438,"prompt_tokens_details":{"cached_tokens":43}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 10.779164292s +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1349 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"content":"\nI''ll add and multiply the numbers 2 and 3 for you.\n","tool_calls":[{"id":"call_f39916b2bbbe4effbd54da31","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_6b9a774e049c4cbbbb72efec","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_f39916b2bbbe4effbd54da31","role":"tool"},{"content":"6","tool_call_id":"call_6b9a774e049c4cbbbb72efec","role":"tool"}],"model":"zai-org/GLM-4.6","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":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" asked"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" me"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" add"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiply"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" numbers"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" used"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" functions"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" requested"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":\n"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" add"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"("}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ="}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"5"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiply"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"("}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ="}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"6"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n\n"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"I"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" present"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" results"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" clearly"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"For"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" the"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" numbers"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"2"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"3"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":":\n"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"-"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" **"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"Add"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"ition"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"**:"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" 2"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" +"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"3"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" ="}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"5"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"-"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" **"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"Multip"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"lication"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"**:"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"2"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" ×"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"3"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" ="}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"6"}}]} + + data: {"id":"20251023225829edf40120fa8541ec","created":1761231509,"model":"glm-4.6","choices":[{"index":0,"finish_reason":"stop","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":356,"completion_tokens":95,"total_tokens":451,"prompt_tokens_details":{"cached_tokens":43}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 1.576222125s diff --git a/providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/simple.yaml b/providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/simple.yaml new file mode 100644 index 0000000000000000000000000000000000000000..9b6ea24ecf8e7687768b8d5d91753282190da7ae --- /dev/null +++ b/providertests/testdata/TestHuggingFaceCommon/huggingface-glm-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: 165 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"zai-org/GLM-4.6","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: '{"choices":[{"finish_reason":"stop","index":0,"message":{"content":"\nOi!\n\nYou can also use:\n\n**Olá!**\n\n* **Oi** (oy) is more informal, just like \"Hi.\"\n* **Olá** (oh-LAH) is a bit more standard, like \"Hello,\" but it''s used in all kinds of situations.","reasoning_content":"1. **Analyze the user''s request:** The user wants to know how to say \"hi\" in Portuguese. This is a very simple, direct translation request.\n\n2. **Identify the core task:** Translate the English word \"hi\" into Portuguese.\n\n3. **Brainstorm Portuguese greetings:**\n * \"Hi\" is an informal greeting. What are the common informal greetings in Portuguese?\n * \"Oi\" - This is the most direct and common equivalent of \"Hi\". It''s used in both Brazil and Portugal, though perhaps slightly more common in Brazil. It''s universally understood.\n * \"Olá\" - This is the equivalent of \"Hello\". It''s slightly more formal than \"Oi\" but can still be used in informal settings. It''s a very safe and standard greeting. It''s used in both Brazil and Portugal.\n * \"E aí?\" - This is very informal, like \"What''s up?\" or \"Hey there?\". It''s very common in Brazil, less so in Portugal (where they might say \"Então?\").\n * \"Bom dia\" - \"Good morning\". This is a time-specific greeting.\n * \"Boa tarde\" - \"Good afternoon\". Time-specific.\n * \"Boa noite\" - \"Good evening/night\". Time-specific.\n\n4. **Select the best answer(s):**\n * The user asked for \"hi\". The most direct translation is \"Oi\".\n * \"Olá\" is also an excellent answer, as it''s the most common greeting overall, even if it maps more closely to \"Hello\". It''s good to provide it as an alternative.\n * It''s helpful to provide context. \"Oi\" is more informal, \"Olá\" is a bit more standard/all-purpose.\n * Mentioning the regional differences (Brazil vs. Portugal) is a nice touch, but for a simple \"hi\", it''s not strictly necessary as both \"Oi\" and \"Olá\" work in both places. \"Oi\" is just more common in Brazil.\n\n5. **Structure the response:**\n * Start with the most direct answer. \"Oi!\"\n * Provide the slightly more formal but also very common alternative: \"Olá!\"\n * Add a brief explanation of the difference in formality/tone.\n * \"Oi\" = informal, like \"Hi\".\n * \"Olá\" = a bit more standard, like \"Hello\", but still used informally.\n * Keep it simple and clear. The user asked a simple question, so the answer should be easy to digest. No need for a long essay on Portuguese grammar.\n\n6. **Draft the final response:**\n * Start with \"Oi!\"\n * Then add \"You can also use:\"\n * Add \"Olá!\"\n * Add a short explanation: \"Oi is more informal, like ''Hi''. Olá is a bit more standard, like ''Hello'', but both are very common.\"\n * Maybe add a small pronunciation guide for a non-speaker.\n * Oi: like the \"oy\" in \"boy\".\n * Olá: oh-LAH.\n * This seems complete and helpful without being overwhelming.\n\n7. **Final Polish:** Review the drafted response. Is it accurate? Is it easy to understand? Does it directly answer the user''s question? Yes. The structure is good: direct answer, alternative, context. The pronunciation guide is a bonus. The response is ready.","role":"assistant"}}],"created":1761231447,"id":"20251023225720c61e89d77cb34b01","model":"glm-4.6","request_id":"20251023225720c61e89d77cb34b01","usage":{"completion_tokens":807,"prompt_tokens":18,"prompt_tokens_details":{"cached_tokens":0},"total_tokens":825}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 10.341307417s diff --git a/providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/simple_streaming.yaml b/providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/simple_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..5737ea600f037f78dedf744257a442c47e5262c6 --- /dev/null +++ b/providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/simple_streaming.yaml @@ -0,0 +1,2026 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 219 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"zai-org/GLM-4.6","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":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"1"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"An"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"alyze"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" request"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":**"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" wants"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" know"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" how"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" say"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"hi"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" very"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" simple"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" direct"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" translation"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" request"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ident"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ify"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" core"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" task"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":**"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Translate"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" English"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" word"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"hi"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" into"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Access"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" knowledge"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" base"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greetings"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Hi"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" an"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" informal"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greeting"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" What"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" are"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" informal"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greetings"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" most"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" direct"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" equivalent"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" of"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Hi"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" It"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" used"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Brazil"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portugal"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" though"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" it"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" arguably"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" more"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ubiquitous"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Brazil"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" standard"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Hello"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" It"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" slightly"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" more"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" formal"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" than"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" but"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" still"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" used"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" everyday"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" informal"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" situations"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" It"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" safe"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" universally"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" understood"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" option"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"E"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"í"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" very"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" informal"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" like"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"What"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" up"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" or"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Hey"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" there"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" It"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Brazil"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" less"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" so"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portugal"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"T"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"udo"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" bem"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" means"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"All"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" good"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" or"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"How"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" are"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" you"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" It"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" often"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" used"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"as"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"*"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greeting"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" similar"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" how"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"How"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" it"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" going"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" can"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greeting"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" English"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Very"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Brazil"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"B"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"om"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" dia"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Good"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" morning"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Bo"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" tarde"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Good"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" afternoon"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Bo"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" noite"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Good"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" evening"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" /"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Good"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" night"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\".\n\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"4"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Structure"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" answer"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":**"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" A"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" good"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" answer"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" shouldn"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'t"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" just"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" give"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" one"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" word"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" It"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provide"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" context"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" options"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" language"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" nuanced"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Start"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" most"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" direct"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" answer"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":**"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" asked"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"hi"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" most"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" direct"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" translation"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" So"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" lead"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" that"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Make"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" it"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" bold"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" clear"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Provide"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" most"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" alternative"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":**"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" also"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" extremely"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" great"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" option"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" It"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" good"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" include"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" it"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" primary"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" alternative"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Explain"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" slight"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" difference"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" form"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ality"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" more"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" informal"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Ol"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" bit"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" more"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" standard"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"/"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"vers"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"atile"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":").\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Add"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" more"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" context"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" options"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":**"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" To"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" more"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" helpful"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provide"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" other"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greetings"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" explain"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" their"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" usage"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" adds"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" value"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" beyond"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" simple"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" dictionary"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" lookup"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Mention"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" time"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-of"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-day"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greetings"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" (\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"B"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"om"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" dia"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":",\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Bo"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" tarde"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":",\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Bo"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" noite"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\")"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" they"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" are"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" very"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" important"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" frequently"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" used"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Include"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" some"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" very"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" informal"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" slang"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-like"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" options"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" like"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"E"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"í"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"T"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"udo"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" bem"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" shows"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" deeper"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" understanding"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" of"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" spoken"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" language"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Explain"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" what"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" they"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" mean"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" (\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"What"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" up"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\","}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"All"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" good"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\").\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Add"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" regional"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" note"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":**"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" has"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" two"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" main"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" variants"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Brazilian"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"BP"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" European"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"EP"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" It"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" crucial"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" mention"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" very"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Brazil"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" universal"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"E"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"í"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" very"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Brazilian"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Mention"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ing"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" distinction"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" helps"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" choose"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" right"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" phrase"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" their"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" context"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"e"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".g"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".,"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" if"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" they"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" are"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" traveling"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Lisbon"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" vs"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Rio"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" de"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Janeiro"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":").\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Sum"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"mar"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ize"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" organize"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":**"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Use"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" bullet"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" points"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" or"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" clear"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" structure"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" make"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" easy"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" digest"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Start"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" simple"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" direct"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" answer"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Then"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" create"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" list"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" of"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" options"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" explanations"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Use"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" bold"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ing"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" highlight"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" words"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" End"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" friendly"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" closing"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" remark"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"5"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Review"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" refine"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" answer"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Initial"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" thought"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Just"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" say"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Better"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" or"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Even"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" better"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" most"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" also"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" very"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Here"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" list"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" of"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" other"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greetings"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" when"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" them"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" plus"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" note"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" about"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Brazil"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" vs"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portugal"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Final"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" check"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" language"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" clear"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" it"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" accurate"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" it"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" helpful"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Yes"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" structure"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" logical"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" starting"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" simple"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" adding"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" layers"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" of"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" detail"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" tone"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" friendly"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" helpful"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" correct"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provides"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" useful"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" context"}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"Hi","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" Portuguese","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":":\n\n","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"Oi","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"!","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"**\n\n","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"This","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" the","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" most","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" common","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" informal","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" way","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" to","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" say","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"hi","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":",\"","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" similar","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" to","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" how","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" you","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"'d","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" use","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" it","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" English","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":".\n\n","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"Here","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" are","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" a","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" few","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" other","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" common","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" greetings","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":":\n\n","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"*","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" **","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"Ol","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"á","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" -","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" This","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" the","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" standard","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"Hello","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":".\"","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" It","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"'s","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" a","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" bit","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" more","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" formal","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" than","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"Oi","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\"","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" but","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" can","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" be","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" used","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" almost","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" any","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" situation","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":".\n","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"*","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" **","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"B","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"om","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" dia","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" -","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" Good","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" morning","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"*","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" **","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"Bo","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"a","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" tarde","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" -","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" Good","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" afternoon","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"*","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" **","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"Bo","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"a","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" noite","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" -","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" Good","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" evening","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" /","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" Good","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" night","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n\n","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"And","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" for","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" a","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" more","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" informal","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"What","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"'s","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" up","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"?\"","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" vibe","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" (","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"especially","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" Brazil","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"):\n\n","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"*","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" **","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"E","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" a","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"í","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"?","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"**\n","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"*","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" **","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"T","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"udo","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" bem","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"?","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" (","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"Liter","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"ally","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"All","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" good","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"?","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\")","reasoning_content":""}}]} + + data: {"id":"202510232257280b7ae653a1f644b7","created":1761231448,"model":"glm-4.6","choices":[{"index":0,"finish_reason":"stop","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":18,"completion_tokens":997,"total_tokens":1015,"prompt_tokens_details":{"cached_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 883.463417ms diff --git a/providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/tool.yaml b/providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/tool.yaml new file mode 100644 index 0000000000000000000000000000000000000000..21149bfaaa2d932ae709070a564a93c7883c9e74 --- /dev/null +++ b/providertests/testdata/TestHuggingFaceCommon/huggingface-glm-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: 457 + 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","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: '{"choices":[{"finish_reason":"tool_calls","index":0,"message":{"reasoning_content":"The user is asking for weather information for 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 as provided.","role":"assistant","tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"id":"call_-8223417061878062283","index":0,"type":"function"}]}}],"created":1761231465,"id":"202510232257390a7bee5750d548f6","model":"glm-4.6","request_id":"202510232257390a7bee5750d548f6","usage":{"completion_tokens":90,"prompt_tokens":179,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":269}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 6.273608s +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 701 + 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_-8223417061878062283","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_-8223417061878062283","role":"tool"}],"model":"zai-org/GLM-4.6","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: '{"choices":[{"finish_reason":"stop","index":0,"message":{"content":"\n\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 planning to be outdoors.","reasoning_content":"The weather function returned \"40 C\" for Florence, Italy. This is quite hot! I should provide this information to the user in a helpful way.","role":"assistant"}}],"created":1761231468,"id":"2025102322574633726e00fa7444e6","model":"glm-4.6","request_id":"2025102322574633726e00fa7444e6","usage":{"completion_tokens":72,"prompt_tokens":207,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":279}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 3.454468916s diff --git a/providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/tool_streaming.yaml b/providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/tool_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..958c448389358fff89a77d6c4aa8a1303395a95c --- /dev/null +++ b/providertests/testdata/TestHuggingFaceCommon/huggingface-glm-4.6/tool_streaming.yaml @@ -0,0 +1,323 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 511 + 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","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":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" asking"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Florence"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Italy"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" have"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" access"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" that"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" takes"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" location"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameter"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provided"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Flo"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"rence"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Italy"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the location"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":". I"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" exact"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" value"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" location"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameter"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_52d8a3bc11a34c99b6d49ae9","index":0,"type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"}}]}}]} + + data: {"id":"202510232257491be24dbef8234ae0","created":1761231469,"model":"glm-4.6","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":179,"completion_tokens":69,"total_tokens":248,"prompt_tokens_details":{"cached_tokens":43}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 1.145144833s +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 779 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"\n\n","tool_calls":[{"id":"call_52d8a3bc11a34c99b6d49ae9","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_52d8a3bc11a34c99b6d49ae9","role":"tool"}],"model":"zai-org/GLM-4.6","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":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" returned"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"40"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" C"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Florence"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Italy"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" seems"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" like"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" very"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" high"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" temperature"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" but"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" report"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" what"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" returned"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Let"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" me"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provide"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"The"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" current"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" weather"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" in"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" is"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"40"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"°C"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" ("}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"104"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"°F"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":")."}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" That"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"'s"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" quite"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" hot"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"!"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" Make"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" sure"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" to"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" stay"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" seek"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" shade"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" if"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" you"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"'re"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" planning"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" to"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" be"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" outdoors"}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"."}}]} + + data: {"id":"20251023225752a7d61e1ffdc74f32","created":1761231472,"model":"glm-4.6","choices":[{"index":0,"finish_reason":"stop","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":207,"completion_tokens":80,"total_tokens":287,"prompt_tokens_details":{"cached_tokens":194}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 7.166425083s diff --git a/providertests/testdata/TestXAICommon/xai-grok-code-fast/multi_tool.yaml b/providertests/testdata/TestXAICommon/xai-grok-code-fast/multi_tool.yaml new file mode 100644 index 0000000000000000000000000000000000000000..8e24e24994f3722503284cf88c787c7ab611beca --- /dev/null +++ b/providertests/testdata/TestXAICommon/xai-grok-code-fast/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: 821 + 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":"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 + url: https://api.x.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: '{"id":"c44bb2dc-d200-4cec-ede3-bc6c8592d8ad_us-east-1","object":"chat.completion","created":1761231392,"model":"grok-code-fast-1","choices":[{"index":0,"message":{"role":"assistant","content":"","tool_calls":[{"id":"call_75343356","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"},"type":"function"},{"id":"call_61060399","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":665,"prompt_tokens_details":{"text_tokens":471,"audio_tokens":0,"image_tokens":0,"cached_tokens":320},"completion_tokens_details":{"reasoning_tokens":126,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"}' + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 2.311041375s +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1182 + 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_75343356","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_61060399","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_75343356","role":"tool"},{"content":"6","tool_call_id":"call_61060399","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 + url: https://api.x.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: '{"id":"a203d7ad-4efa-ea35-3f1d-61f4f6c633df_us-east-1","object":"chat.completion","created":1761231394,"model":"grok-code-fast-1","choices":[{"index":0,"message":{"role":"assistant","content":"The sum of 2 and 3 is 5, and the product is 6.","refusal":null},"finish_reason":"stop"}],"usage":{"prompt_tokens":679,"completion_tokens":19,"total_tokens":725,"prompt_tokens_details":{"text_tokens":679,"audio_tokens":0,"image_tokens":0,"cached_tokens":576},"completion_tokens_details":{"reasoning_tokens":27,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"}' + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 767.324625ms diff --git a/providertests/testdata/TestXAICommon/xai-grok-code-fast/multi_tool_streaming.yaml b/providertests/testdata/TestXAICommon/xai-grok-code-fast/multi_tool_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..cc2bfefafa3ad63a715a411efa4f186a84ded00c --- /dev/null +++ b/providertests/testdata/TestXAICommon/xai-grok-code-fast/multi_tool_streaming.yaml @@ -0,0 +1,703 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 858 + 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":"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 + url: https://api.x.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"The","role":"assistant"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" asked"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" to"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" add"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" multiply"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"2"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"3"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"."}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" I"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" have"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" tools"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" for"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" add"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" and"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" multiply"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".\n"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231395,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231396,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"\n\n## Interpreting user request \n- The user wants to add and multiply the numbers 2 and 3."}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" \n- The task requires using both addition and multiplication simultaneously."}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231397,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231398,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_40565286","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231398,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_67922635","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"},"index":1,"type":"function"}]}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231398,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" \n\n## Planning execution \n- Tools for adding and multiplying are available for the task."},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"5e54f3ea-428c-791c-41b9-c3c0b2dc61b6_us-east-1","object":"chat.completion.chunk","created":1761231398,"model":"grok-code-fast-1","choices":[],"usage":{"prompt_tokens":467,"completion_tokens":68,"total_tokens":767,"prompt_tokens_details":{"text_tokens":467,"audio_tokens":0,"image_tokens":0,"cached_tokens":384},"completion_tokens_details":{"reasoning_tokens":232,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 369.902375ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1219 + 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_40565286","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_67922635","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_40565286","role":"tool"},{"content":"6","tool_call_id":"call_67922635","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 + url: https://api.x.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"The","role":"assistant"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" function"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" calls"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" returned"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" add"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" gave"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"5"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" multiply"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" gave"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"6"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".\n"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"2"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" +"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"3"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" ="}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"5"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" \n"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"2"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" *"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"3"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" ="}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"6"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"3a4f612e-6f88-7468-bc44-c0b6ce7e60b1_us-east-1","object":"chat.completion.chunk","created":1761231407,"model":"grok-code-fast-1","choices":[],"usage":{"prompt_tokens":781,"completion_tokens":15,"total_tokens":862,"prompt_tokens_details":{"text_tokens":781,"audio_tokens":0,"image_tokens":0,"cached_tokens":320},"completion_tokens_details":{"reasoning_tokens":66,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 360.754375ms diff --git a/providertests/testdata/TestXAICommon/xai-grok-code-fast/simple.yaml b/providertests/testdata/TestXAICommon/xai-grok-code-fast/simple.yaml new file mode 100644 index 0000000000000000000000000000000000000000..63459ee7a7b4cf9a27b0e0eaef7e8eaf4984d89d --- /dev/null +++ b/providertests/testdata/TestXAICommon/xai-grok-code-fast/simple.yaml @@ -0,0 +1,33 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 166 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"grok-code-fast-1","max_tokens":4000}' + headers: + Accept: + - application/json + Content-Type: + - application/json + User-Agent: + - OpenAI/Go 2.7.1 + url: https://api.x.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: "{\"id\":\"81b779ac-c6c0-022d-5c70-62a6f899343f_us-east-1\",\"object\":\"chat.completion\",\"created\":1761231377,\"model\":\"grok-code-fast-1\",\"choices\":[{\"index\":0,\"message\":{\"role\":\"assistant\",\"content\":\"Oi! (That's \\\"hi\\\" in Portuguese.) If you meant something more formal, it's \\\"Olá!\\\". \U0001F60A\",\"refusal\":null},\"finish_reason\":\"stop\"}],\"usage\":{\"prompt_tokens\":213,\"completion_tokens\":23,\"total_tokens\":411,\"prompt_tokens_details\":{\"text_tokens\":213,\"audio_tokens\":0,\"image_tokens\":0,\"cached_tokens\":192},\"completion_tokens_details\":{\"reasoning_tokens\":175,\"audio_tokens\":0,\"accepted_prediction_tokens\":0,\"rejected_prediction_tokens\":0},\"num_sources_used\":0},\"system_fingerprint\":\"fp_10f00c862d\"}" + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 4.809803208s diff --git a/providertests/testdata/TestXAICommon/xai-grok-code-fast/simple_streaming.yaml b/providertests/testdata/TestXAICommon/xai-grok-code-fast/simple_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..2817000f44a9588de201bdd9b7a9a77741535b86 --- /dev/null +++ b/providertests/testdata/TestXAICommon/xai-grok-code-fast/simple_streaming.yaml @@ -0,0 +1,358 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 220 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"grok-code-fast-1","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.x.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231382,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"First","role":"assistant"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" asked"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"Say"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" hi"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Portuguese"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":".\"\n"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231383,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"\n\n## Handling the Request \n- The user asked for a greeting in Portuguese."}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"Oi"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"!"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" ("}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"That's"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" \""}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"hi"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"\""}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" in"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" Portuguese"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":","}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" informal"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" and"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" common"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" in"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" Brazil"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":".)"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" If"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" you"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" want"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" something"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" more"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" formal"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":","}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" it's"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" \""}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"Olá"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":".\""}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"da8e02b5-c40e-2b4b-33ec-f867d1ba3d3e_us-east-1","object":"chat.completion.chunk","created":1761231384,"model":"grok-code-fast-1","choices":[],"usage":{"prompt_tokens":213,"completion_tokens":27,"total_tokens":373,"prompt_tokens_details":{"text_tokens":213,"audio_tokens":0,"image_tokens":0,"cached_tokens":192},"completion_tokens_details":{"reasoning_tokens":133,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 192.518875ms diff --git a/providertests/testdata/TestXAICommon/xai-grok-code-fast/tool.yaml b/providertests/testdata/TestXAICommon/xai-grok-code-fast/tool.yaml new file mode 100644 index 0000000000000000000000000000000000000000..847efc5919cc70d1f2796182b2368ace047c3864 --- /dev/null +++ b/providertests/testdata/TestXAICommon/xai-grok-code-fast/tool.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 458 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"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 + url: https://api.x.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: '{"id":"7ad9f5dd-dc2b-b27c-9be3-85ef47e7764f_us-east-1","object":"chat.completion","created":1761231385,"model":"grok-code-fast-1","choices":[{"index":0,"message":{"role":"assistant","content":"","tool_calls":[{"id":"call_08419012","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"},"type":"function"}],"refusal":null},"finish_reason":"tool_calls"}],"usage":{"prompt_tokens":390,"completion_tokens":26,"total_tokens":519,"prompt_tokens_details":{"text_tokens":390,"audio_tokens":0,"image_tokens":0,"cached_tokens":320},"completion_tokens_details":{"reasoning_tokens":103,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"}' + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 1.887691125s +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 677 + 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_08419012","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_08419012","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 + url: https://api.x.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + uncompressed: true + body: '{"id":"00648b3b-d356-70c7-e320-f6950ae00ff2_us-east-1","object":"chat.completion","created":1761231387,"model":"grok-code-fast-1","choices":[{"index":0,"message":{"role":"assistant","content":"The current temperature in Florence, Italy, is 40°C (104°F). For more detailed forecasts, I recommend checking a weather app or site like AccuWeather.","refusal":null},"finish_reason":"stop"}],"usage":{"prompt_tokens":532,"completion_tokens":34,"total_tokens":632,"prompt_tokens_details":{"text_tokens":532,"audio_tokens":0,"image_tokens":0,"cached_tokens":512},"completion_tokens_details":{"reasoning_tokens":66,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"}' + headers: + Content-Type: + - application/json + status: 200 OK + code: 200 + duration: 1.612000209s diff --git a/providertests/testdata/TestXAICommon/xai-grok-code-fast/tool_streaming.yaml b/providertests/testdata/TestXAICommon/xai-grok-code-fast/tool_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..557294c17891117e6277fe27804a9cd9136ca207 --- /dev/null +++ b/providertests/testdata/TestXAICommon/xai-grok-code-fast/tool_streaming.yaml @@ -0,0 +1,635 @@ +--- +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":"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 + url: https://api.x.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231388,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"The","role":"assistant"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" user"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" asked"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" \""}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"What's"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" the"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" weather"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" in"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Florence"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":","}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" Italy"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"?\"\n"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231389,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_83060668","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"},"index":0,"type":"function"}]}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{},"finish_reason":"tool_calls"}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"c4128e6d-de7b-4e30-9a74-1e0f887f988f_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[],"usage":{"prompt_tokens":390,"completion_tokens":26,"total_tokens":542,"prompt_tokens_details":{"text_tokens":390,"audio_tokens":0,"image_tokens":0,"cached_tokens":384},"completion_tokens_details":{"reasoning_tokens":126,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 217.372417ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 731 + 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_83060668","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_83060668","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 + url: https://api.x.ai/v1/chat/completions + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + content_length: -1 + body: |+ + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"The","role":"assistant"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" tool"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" returned"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":":"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" "}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"40"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":" C"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"reasoning_content":"\n"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231390,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"The"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" current"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" temperature"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" in"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" Florence"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":","}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" Italy"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" is"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" "}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"40"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"°C"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"."}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" If"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" you"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" need"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" more"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" details"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" like"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" humidity"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":","}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" forecast"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":","}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" or"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" conditions"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":","}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" let"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" me"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":" know"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{"content":"!"}}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[{"index":0,"delta":{},"finish_reason":"stop"}],"system_fingerprint":"fp_10f00c862d"} + + data: {"id":"320aa7c5-5487-c565-c7b4-c604e3b508c2_us-east-1","object":"chat.completion.chunk","created":1761231391,"model":"grok-code-fast-1","choices":[],"usage":{"prompt_tokens":555,"completion_tokens":29,"total_tokens":709,"prompt_tokens_details":{"text_tokens":555,"audio_tokens":0,"image_tokens":0,"cached_tokens":512},"completion_tokens_details":{"reasoning_tokens":125,"audio_tokens":0,"accepted_prediction_tokens":0,"rejected_prediction_tokens":0},"num_sources_used":0},"system_fingerprint":"fp_10f00c862d"} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream + status: 200 OK + code: 200 + duration: 198.375792ms diff --git a/providertests/testdata/TestZAICommon/zai-glm-4.6/multi_tool.yaml b/providertests/testdata/TestZAICommon/zai-glm-4.6/multi_tool.yaml new file mode 100644 index 0000000000000000000000000000000000000000..8fb421455973515eaba9cbc0db67d099679e700c --- /dev/null +++ b/providertests/testdata/TestZAICommon/zai-glm-4.6/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: 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.6","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":{"reasoning_content":"The user wants me to add and multiply the numbers 2 and 3. Looking at the critical instruction, I need to use both add and multiply functions at the same time. \n\nI have:\n- Number 1: 2\n- Number 2: 3\n\nI should call both the add function with parameters a=2, b=3 and the multiply function with parameters a=2, b=3.","role":"assistant","tool_calls":[{"function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"id":"call_-8223388543294267113","index":0,"type":"function"},{"function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"id":"call_-8223388543294267112","index":1,"type":"function"}]}}],"created":1761231607,"id":"2025102323000399045db19b4249db","model":"glm-4.6","request_id":"2025102323000399045db19b4249db","usage":{"completion_tokens":148,"prompt_tokens":286,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":434}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 4.833423125s +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1221 + 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_-8223388543294267113","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_-8223388543294267112","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_-8223388543294267113","role":"tool"},{"content":"6","tool_call_id":"call_-8223388543294267112","role":"tool"}],"model":"glm-4.6","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 for the numbers 2 and 3 are:\n\n- Addition: 2 + 3 = 5\n- Multiplication: 2 × 3 = 6","reasoning_content":"\nI got the results from both function calls:\n- Add: 2 + 3 = 5\n- Multiply: 2 × 3 = 6\n\nI should present both results to the user since they asked to both add and multiply the numbers 2 and 3.","role":"assistant"}}],"created":1761231613,"id":"20251023230007c2be2cd4967644d6","model":"glm-4.6","request_id":"20251023230007c2be2cd4967644d6","usage":{"completion_tokens":98,"prompt_tokens":345,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":443}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 6.323335291s diff --git a/providertests/testdata/TestZAICommon/zai-glm-4.6/multi_tool_streaming.yaml b/providertests/testdata/TestZAICommon/zai-glm-4.6/multi_tool_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..eefd9719922bea8d9531d03ee0b2bc171cde672c --- /dev/null +++ b/providertests/testdata/TestZAICommon/zai-glm-4.6/multi_tool_streaming.yaml @@ -0,0 +1,465 @@ +--- +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.6","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":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user wants"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" me"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" add"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiply"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" numbers"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" need"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" add"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiply"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" functions"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n\n"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"For"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" addition"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":": add"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" +"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"For"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiplication"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiply"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n\n"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Both"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" functions"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" require"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameters"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"a"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"b"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" which"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" are"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" integers"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" have"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" values"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" so"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" can"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" proceed"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" calls"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"I"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"'ll"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" add"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" multiply"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" the"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" numbers"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"2"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"3"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" for"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" you"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":".\n"}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_d2055286bad9485ba28360a1","index":0,"type":"function","function":{"name":"add","arguments":"{\"a\":2,\"b\":3}"}}]}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_4999202723814b24a92398ab","index":1,"type":"function","function":{"name":"multiply","arguments":"{\"a\":2,\"b\":3}"}}]}}]} + + data: {"id":"20251023230014f9f01e26969d485b","created":1761231614,"model":"glm-4.6","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":282,"completion_tokens":142,"total_tokens":424,"prompt_tokens_details":{"cached_tokens":43}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 605.822333ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1343 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant. Always use both add and multiply at the same time.","role":"system"},{"content":"Add and multiply the number 2 and 3","role":"user"},{"content":"\n\nI''ll add and multiply the numbers 2 and 3 for you.\n","tool_calls":[{"id":"call_d2055286bad9485ba28360a1","function":{"arguments":"{\"a\":2,\"b\":3}","name":"add"},"type":"function"},{"id":"call_4999202723814b24a92398ab","function":{"arguments":"{\"a\":2,\"b\":3}","name":"multiply"},"type":"function"}],"role":"assistant"},{"content":"5","tool_call_id":"call_d2055286bad9485ba28360a1","role":"tool"},{"content":"6","tool_call_id":"call_4999202723814b24a92398ab","role":"tool"}],"model":"glm-4.6","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":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" asked"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" me"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" add"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" multiply"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" numbers"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" used"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" functions"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" required"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":\n\n"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Addition"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" +"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ="}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"5"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Multip"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"lication"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ×"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ="}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"6"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":"\n\n"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Both"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" results"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" are"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" correct"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" so"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" present"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" them"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" clearly"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"The"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" results"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" for"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" adding"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" multiplying"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"2"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"3"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" are"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":":\n\n"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"-"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" **"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"Add"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"ition"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":":**"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"2"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" +"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"3"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" ="}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"5"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"-"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" **"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"Multip"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"lication"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":":**"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"2 ×"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" 3"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" ="}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"6"}}]} + + data: {"id":"202510232300208bc3299527dd4888","created":1761231620,"model":"glm-4.6","choices":[{"index":0,"finish_reason":"stop","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":356,"completion_tokens":105,"total_tokens":461,"prompt_tokens_details":{"cached_tokens":43}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 707.947375ms diff --git a/providertests/testdata/TestZAICommon/zai-glm-4.6/simple.yaml b/providertests/testdata/TestZAICommon/zai-glm-4.6/simple.yaml new file mode 100644 index 0000000000000000000000000000000000000000..c69484adc3858a3456a57198dff922e0f291ec15 --- /dev/null +++ b/providertests/testdata/TestZAICommon/zai-glm-4.6/simple.yaml @@ -0,0 +1,33 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 157 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"glm-4.6","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":"\nOi!\n\nThat''s the most common and informal way to say \"hi,\" similar to \"hey\" in English.\n\nYou can also use:\n\n* **Olá** - A bit more formal, like \"hello.\"\n* **Bom dia** - Good morning\n* **Boa tarde** - Good afternoon\n* **Boa noite** - Good evening / Good night","reasoning_content":"1. **Analyze the user''s request:** The user wants to know how to say \"hi\" in Portuguese. This is a very simple, direct translation request.\n\n2. **Identify the core task:** Translate the English word \"hi\" into Portuguese.\n\n3. **Brainstorm Portuguese equivalents for \"hi\":**\n * The most common and direct translation is \"Oi.\" This is the equivalent of \"Hi\" or \"Hey\" in English. It''s informal, friendly, and used everywhere.\n * Another common greeting is \"Olá.\" This is a bit more formal than \"Oi,\" similar to \"Hello\" in English. It''s universally understood and always correct.\n * There are other greetings, but they are more context-specific:\n * \"Bom dia\" (Good morning)\n * \"Boa tarde\" (Good afternoon)\n * \"Boa noite\" (Good evening/Good night)\n * There are also more informal/slangy greetings like \"E aí?\" (What''s up?) or \"Beleza?\" (All good?), but these are not direct translations of \"hi.\"\n\n4. **Structure the answer:** A good answer should be clear, helpful, and provide context. I shouldn''t just give one word. I should give the most common options and explain the difference in formality.\n\n * **Start with the most direct and common answer:** \"Oi!\" This is the best equivalent for \"Hi.\"\n * **Provide the slightly more formal alternative:** \"Olá.\" Explain that it''s like \"Hello.\"\n * **Give context-based greetings:** Include \"Bom dia,\" \"Boa tarde,\" and \"Boa noite.\" This adds value and shows a deeper understanding of the language. It''s practical information for someone who might actually want to use the phrase.\n * **Keep it simple and organized:** Use bullet points or short paragraphs to make the information easy to digest.\n * **Add a concluding, friendly remark:** Something like \"Choose ''Oi'' for a casual ''hi'' and ''Olá'' for a slightly more formal ''hello''.\" This summarizes the key takeaway.\n\n5. **Draft the response (internal monologue):**\n * Okay, the user wants \"hi\" in Portuguese.\n * The most common one is \"Oi.\" I''ll lead with that.\n * Then I''ll add \"Olá.\" It''s also very common, just a bit more formal.\n * It would be really helpful to also include the time-of-day greetings. People use these all the time. So, \"Bom dia,\" \"Boa tarde,\" \"Boa noite.\"\n * I''ll format it nicely. Maybe a main answer and then a list of other options.\n * Main answer: \"Oi!\"\n * Explanation: \"This is the most common and informal way to say ''hi'' or ''hey''.\"\n * Other option: \"Olá.\"\n * Explanation: \"This is a bit more formal, like ''hello''.\"\n * Then a section for \"Depending on the time of day:\"\n * List:\n * **Bom dia** - Good morning\n * **Boa tarde** - Good afternoon\n * **Boa noite** - Good evening / Good night\n * This looks good. It''s concise but comprehensive. It answers the direct question and provides extra, useful information without being overwhelming.\n\n6. **Final Polish:** Read through the drafted response to ensure it''s clear, accurate, and friendly. The structure is good. The explanations are simple. The information is correct. The tone is helpful. Ready to output.","role":"assistant"}}],"created":1761231561,"id":"20251023225903cf0228dfd8f1415d","model":"glm-4.6","request_id":"20251023225903cf0228dfd8f1415d","usage":{"completion_tokens":859,"prompt_tokens":18,"prompt_tokens_details":{"cached_tokens":0},"total_tokens":877}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 19.3447385s diff --git a/providertests/testdata/TestZAICommon/zai-glm-4.6/simple_streaming.yaml b/providertests/testdata/TestZAICommon/zai-glm-4.6/simple_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..dc1a9ef3e4c4c475ba4a20c42102cadedbc1168a --- /dev/null +++ b/providertests/testdata/TestZAICommon/zai-glm-4.6/simple_streaming.yaml @@ -0,0 +1,2604 @@ +--- +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.6","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":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"1"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"An"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"alyze"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" User"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Request"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" request"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" simple"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" direct"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Say"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" hi"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\".\n\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"2"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ident"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ify"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Core"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Task"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" task"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" translate"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" English"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greeting"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"hi"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" into"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"3"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Initial"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Brain"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"storm"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ing"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" &"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Knowledge"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Retrie"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"val"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" What"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" are"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ways"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" say"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"hi"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" most"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" direct"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" translation"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" universally"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" understood"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Brazil"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portugal"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" What"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" are"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" other"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greetings"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" bit"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" more"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" formal"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" than"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\","}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" but"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" still"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" very"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" It"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" direct"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" equivalent"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" of"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Hello"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\".\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"B"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"om"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" dia"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Good"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" morning"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" tarde"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Good"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" afternoon"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" noite"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Good"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" evening"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"/"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"night"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Are"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" there"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" any"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" regional"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" differences"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" or"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" slang"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" In"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Brazil"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"E"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"í"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"What"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" up"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?)"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" or"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Be"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"le"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"za"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Lit"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Beauty"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\","}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" meaning"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"All"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" good"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\")"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" are"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" very"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" informal"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greetings"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" In"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portugal"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ent"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ão"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"So"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?)"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" can"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" used"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" inform"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ally"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"T"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"udo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" bem"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"How"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" are"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" you"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" /"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" All"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" well"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?)"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" also"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" very"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greeting"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" almost"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" always"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" used"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" alongside"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" or"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\".\n\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"4"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Structure"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Answer"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" A"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" good"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" answer"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" shouldn"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'t"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" just"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" give"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" single"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" word"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" It"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provide"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" context"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" options"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" maybe"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" little"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" extra"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" more"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" helpful"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" A"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" good"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" structure"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" would"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" most"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" direct"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" answer"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" first"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" who"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" just"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" wants"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" quick"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" no"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-f"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"uss"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" translation"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" fits"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" perfectly"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Provide"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" slightly"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" more"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" formal"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" but"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" equally"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" option"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" perfect"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" candidate"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" here"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ex"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"plain"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" difference"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Brief"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ly"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" touch"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" on"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" form"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ality"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" level"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ="}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" informal"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Ol"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ="}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" can"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" both"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" formal"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" informal"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":").\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Offer"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" time"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-of"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-day"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greetings"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" extremely"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" useful"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" shows"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" deeper"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" understanding"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" of"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" language"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"B"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"om"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" dia"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":",\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" tarde"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":",\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" noite"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" It"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" practical"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" vocabulary"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Include"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" some"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" informal"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"/s"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"lang"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" options"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" adds"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" personality"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" useful"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" learners"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" who"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" want"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" sound"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" more"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" natural"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"E"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"í"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" great"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" example"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Brazilian"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" It"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" good"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" specify"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" region"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Brazil"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" these"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Add"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" pronunciation"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" help"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" huge"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" value"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-add"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Many"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" users"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" won"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'t"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" know"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" how"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" pronounce"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" words"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" A"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" simple"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" phon"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"etic"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" guide"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" better"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" than"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" nothing"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"oy"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"oh"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-L"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"AH"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"B"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"om"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" dia"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"b"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ong"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" DE"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"E"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ah"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" tarde"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"h"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ah"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" TAR"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-d"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"jee"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"or"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" simpler"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"h"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ah"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" TAR"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-day"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\")\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" noite"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"h"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ah"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" NO"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Y"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-t"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"che"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"e"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"or"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"h"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ah"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" NO"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Y"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-t"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ay"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\")\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Sum"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"mar"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ize"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" organize"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Use"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" bullet"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" points"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" or"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" bold"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" text"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" make"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" easy"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" scan"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" digest"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"5"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Draft"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Response"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"inc"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"orpor"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ating"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" structure"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"):"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**\n\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Start"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" direct"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" answer"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":*"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" most"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" way"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" say"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" '"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"hi"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":\"\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Add"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" main"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" word"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":*"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \"**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Add"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" second"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" most"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":*"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"You"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" can"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" also"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":\"\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Add"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" second"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" word"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":*"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \"**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"This"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" bit"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" more"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" formal"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" like"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Hello"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\")\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Create"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" section"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" time"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-of"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-day"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" greetings"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":*"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Depending"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" on"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" time"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" of"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" day"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" you"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" can"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" also"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":\"\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"List"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" them"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" pronunciation"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"*\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"B"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"om"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" dia"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Good"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" morning"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"h"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ng"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" DE"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"E"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ah"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" tarde"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Good"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" afternoon"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"h"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ah"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" TAR"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-d"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"jee"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" noite"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" -"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Good"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" evening"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" /"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Good"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" night"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"h"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ah"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" NO"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Y"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-t"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"che"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"e"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Add"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" casual"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"/in"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"form"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"al"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" section"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":*"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"For"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" more"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" informal"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" '"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"what"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" up"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?'"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"especially"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Brazil"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"),"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" you"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" could"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" say"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":\"\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"List"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" informal"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" option"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":*"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \"**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"E"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"í"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" ("}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"eh"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ah"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"EE"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":")\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Final"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" touch"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":*"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Keep"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" it"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" friendly"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" encouraging"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" A"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" simple"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Hope"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" helps"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" or"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" just"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" clean"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" well"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"organized"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" list"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" good"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"6"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" **"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Review"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Ref"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ine"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":":**"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Read"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" through"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" drafted"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" response"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" it"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" clear"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" it"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" accurate"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" pronunciation"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" guide"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" simple"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" enough"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" non"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-spe"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"aker"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" distinction"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" between"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Oi"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Ol"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"á"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" important"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Spec"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ifying"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" that"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"E"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"í"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"?\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" common"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Brazil"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" good"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" practice"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" pronunciation"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" guide"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" helpful"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Maybe"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" simplify"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" it"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" bit"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" more"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" an"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" English"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" speaker"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"h"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ah"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" TAR"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-j"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ee"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" might"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" be"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" confusing"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"h"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ah"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" TAR"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-day"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" closer"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" approximation"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" an"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" English"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" speaker"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" mouth"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Let"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" go"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" with"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" simpler"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" version"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"h"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ng"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" DE"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"E"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ah"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\","}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"h"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ah"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" TAR"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-day"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\","}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"bo"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"h"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ah"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" NO"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Y"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"-t"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"ay"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" This"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" more"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" accessible"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":".\n"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" *"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" formatting"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" looks"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" good"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" B"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"olding"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Portuguese"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" words"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" makes"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" them"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" stand"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" out"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" structure"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" logical"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" moving"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" from"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" most"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" direct"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" answer"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" more"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" nuanced"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" options"}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"The","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" most","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" common","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" and","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" direct","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" way","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" to","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" say","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"hi","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\"","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" Portuguese","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":":\n\n","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"Oi","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"!","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"**\n\n","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"You","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" can","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" also","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" use","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":":\n\n","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"Ol","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"á","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"!","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" (","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"This","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" is","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" a","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" bit","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" more","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" formal","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" like","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"Hello","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":".\")\n\n","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"---\n\n","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"Depending","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" on","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" the","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" time","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" of","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" day","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":",","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" you","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" can","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" also","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" use","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" these","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" greetings","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":":\n\n","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"*","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" **","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"B","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"om","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" dia","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" -","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" Good","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" morning","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"*","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" **","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"Bo","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"a","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" tarde","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" -","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" Good","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" afternoon","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"*","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" ","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" **","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"Bo","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"a","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" noite","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" -","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" Good","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" evening","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" /","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" Good","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" night","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n\n","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"For","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" a","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" more","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" informal","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" \"","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"what","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"'s","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" up","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"?\"","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" (","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"especially","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" in","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" Brazil","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"),","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" you","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" could","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" say","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":":\n\n","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"E","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" a","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"í","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"?","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"**","reasoning_content":""}}]} + + data: {"id":"20251023225921c2f842a8205b4cfa","created":1761231561,"model":"glm-4.6","choices":[{"index":0,"finish_reason":"stop","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":18,"completion_tokens":1286,"total_tokens":1304,"prompt_tokens_details":{"cached_tokens":0}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 8.659621875s diff --git a/providertests/testdata/TestZAICommon/zai-glm-4.6/tool.yaml b/providertests/testdata/TestZAICommon/zai-glm-4.6/tool.yaml new file mode 100644 index 0000000000000000000000000000000000000000..ea5c215e48a9059336cbba04170e493fbca2b989 --- /dev/null +++ b/providertests/testdata/TestZAICommon/zai-glm-4.6/tool.yaml @@ -0,0 +1,63 @@ +--- +version: 2 +interactions: +- id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 449 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"glm-4.6","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":{"reasoning_content":"The user is asking for weather information for Florence, Italy. I need to use the weather function to get this information. The required parameter is \"location\" and the user has specified \"Florence,Italy\". I should use exactly this location as provided.","role":"assistant","tool_calls":[{"function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"id":"call_-8223349338831929811","index":0,"type":"function"}]}}],"created":1761231588,"id":"2025102322594663828723f48b468f","model":"glm-4.6","request_id":"2025102322594663828723f48b468f","usage":{"completion_tokens":84,"prompt_tokens":179,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":263}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 2.504388291s +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 692 + 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_-8223349338831929811","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_-8223349338831929811","role":"tool"}],"model":"glm-4.6","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":"\n\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":"The weather function returned 40 C for Florence, Italy. This is quite hot - 40 degrees Celsius is 104 degrees Fahrenheit. I should present this information clearly to the user.","role":"assistant"}}],"created":1761231591,"id":"202510232259498597c96d998a46dc","model":"glm-4.6","request_id":"202510232259498597c96d998a46dc","usage":{"completion_tokens":77,"prompt_tokens":207,"prompt_tokens_details":{"cached_tokens":43},"total_tokens":284}}' + headers: + Content-Type: + - application/json; charset=UTF-8 + status: 200 OK + code: 200 + duration: 2.576039583s diff --git a/providertests/testdata/TestZAICommon/zai-glm-4.6/tool_streaming.yaml b/providertests/testdata/TestZAICommon/zai-glm-4.6/tool_streaming.yaml new file mode 100644 index 0000000000000000000000000000000000000000..5d1cb6d1d1afa88652a0eb093721ad8627e66922 --- /dev/null +++ b/providertests/testdata/TestZAICommon/zai-glm-4.6/tool_streaming.yaml @@ -0,0 +1,325 @@ +--- +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.6","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":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" asking"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" about"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" in"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Florence"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Italy"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" have"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" that"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" can"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" get"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" location"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" The"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" required"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameter"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" is"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"location"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" and"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" has"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" provided"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" \""}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Flo"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"rence"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"Italy"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"\""}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" as"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" location"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" use"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" exact"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" value"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" location"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" parameter"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"delta":{"tool_calls":[{"id":"call_bfc3f11b2be748a69f6c8475","index":0,"type":"function","function":{"name":"weather","arguments":"{\"location\":\"Florence,Italy\"}"}}]}}]} + + data: {"id":"20251023225951823569fea7794962","created":1761231591,"model":"glm-4.6","choices":[{"index":0,"finish_reason":"tool_calls","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":179,"completion_tokens":79,"total_tokens":258,"prompt_tokens_details":{"cached_tokens":178}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 715.682417ms +- id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 771 + host: "" + body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"content":"\n\n","tool_calls":[{"id":"call_bfc3f11b2be748a69f6c8475","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_bfc3f11b2be748a69f6c8475","role":"tool"}],"model":"glm-4.6","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":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"The"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" weather"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" function"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" returned"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" a"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" temperature"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" of"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"","reasoning_content":" "}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"40"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"°C"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" for"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Florence"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":","}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" Italy"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" That"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"'s"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" quite"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" hot"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"!"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" I"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" should"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" present"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" this"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" information"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" clearly"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" to"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" the"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":" user"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","reasoning_content":"."}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"\n"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"The"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" weather"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" in"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" Florence"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":","}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" Italy"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" is"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" currently"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" "}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"40"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"°C"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" ("}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"104"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"°F"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":")."}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" That"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"'s"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" quite"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" hot"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"!"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" Be"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" sure"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" to"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" stay"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" hydrated"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" and"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" seek"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" shade"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" if"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" you"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"'re"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" visiting"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":" today"}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"delta":{"role":"assistant","content":"."}}]} + + data: {"id":"20251023225954fb609f367a734ed4","created":1761231594,"model":"glm-4.6","choices":[{"index":0,"finish_reason":"stop","delta":{"role":"assistant","content":""}}],"usage":{"prompt_tokens":207,"completion_tokens":69,"total_tokens":276,"prompt_tokens_details":{"cached_tokens":206}}} + + data: [DONE] + + headers: + Content-Type: + - text/event-stream;charset=UTF-8 + status: 200 OK + code: 200 + duration: 7.160283459s diff --git a/providertests/xai_test.go b/providertests/xai_test.go new file mode 100644 index 0000000000000000000000000000000000000000..de18dbb9bcdd27843e066f74805e92836882bfb5 --- /dev/null +++ b/providertests/xai_test.go @@ -0,0 +1,29 @@ +package providertests + +import ( + "net/http" + "os" + "testing" + + "charm.land/fantasy" + "charm.land/fantasy/providers/openaicompat" + "charm.land/fantasy/providers/xai" + "gopkg.in/dnaeon/go-vcr.v4/pkg/recorder" +) + +func TestXAICommon(t *testing.T) { + testCommon(t, []builderPair{ + {"xai-grok-code-fast", builderXAI, nil, nil}, + }) +} + +func builderXAI(t *testing.T, r *recorder.Recorder) (fantasy.LanguageModel, error) { + provider, err := xai.New( + openaicompat.WithAPIKey(os.Getenv("FANTASY_XAI_API_KEY")), + openaicompat.WithHTTPClient(&http.Client{Transport: r}), + ) + if err != nil { + return nil, err + } + return provider.LanguageModel(t.Context(), "grok-code-fast-1") +} diff --git a/providertests/zai_test.go b/providertests/zai_test.go new file mode 100644 index 0000000000000000000000000000000000000000..6a32fb14e696a0525679530eacdcab3fd9a1fed0 --- /dev/null +++ b/providertests/zai_test.go @@ -0,0 +1,29 @@ +package providertests + +import ( + "net/http" + "os" + "testing" + + "charm.land/fantasy" + "charm.land/fantasy/providers/openaicompat" + "charm.land/fantasy/providers/zai" + "gopkg.in/dnaeon/go-vcr.v4/pkg/recorder" +) + +func TestZAICommon(t *testing.T) { + testCommon(t, []builderPair{ + {"zai-glm-4.6", builderZAI, nil, nil}, + }) +} + +func builderZAI(t *testing.T, r *recorder.Recorder) (fantasy.LanguageModel, error) { + provider, err := zai.New( + openaicompat.WithAPIKey(os.Getenv("FANTASY_ZAI_API_KEY")), + openaicompat.WithHTTPClient(&http.Client{Transport: r}), + ) + if err != nil { + return nil, err + } + return provider.LanguageModel(t.Context(), "glm-4.6") +}