Taskfile.yaml ๐
@@ -4,7 +4,7 @@ tasks:
fmt:
desc: Run gofumpt for all packages
cmds:
- - gofmt -s -w .
+ - gofumpt -w .
modernize:
desc: Run modernize for all packages
Kujtim Hoxha and Andrey Nering created
* chore: change azure provider to use openai provider
* chore: address comments
* chore: fix format and lint
---------
Co-authored-by: Andrey Nering <andreynering@users.noreply.github.com>
Taskfile.yaml | 2
providers/azure/azure.go | 53
providers/azure/azure_test.go | 98
providertests/azure_responses_test.go | 98
providertests/azure_test.go | 4
providertests/testdata/TestAzureCommon/azure-gpt-5-mini/simple.yaml | 7
providertests/testdata/TestAzureCommon/azure-gpt-5-mini/simple_streaming.yaml | 35
providertests/testdata/TestAzureCommon/azure-gpt-5-mini/tool.yaml | 9
providertests/testdata/TestAzureCommon/azure-gpt-5-mini/tool_streaming.yaml | 192
providertests/testdata/TestAzureCommon/azure-grok-3-mini/simple.yaml | 7
providertests/testdata/TestAzureCommon/azure-grok-3-mini/simple_streaming.yaml | 7
providertests/testdata/TestAzureCommon/azure-grok-3-mini/tool.yaml | 7
providertests/testdata/TestAzureCommon/azure-grok-3-mini/tool_streaming.yaml | 815
providertests/testdata/TestAzureCommon/azure-o4-mini/simple.yaml | 7
providertests/testdata/TestAzureCommon/azure-o4-mini/simple_streaming.yaml | 19
providertests/testdata/TestAzureCommon/azure-o4-mini/tool.yaml | 9
providertests/testdata/TestAzureCommon/azure-o4-mini/tool_streaming.yaml | 156
providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/simple.yaml | 102
providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/simple_streaming.yaml | 60
providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/tool.yaml | 233
providertests/testdata/TestAzureResponsesCommon/azure-gpt-5-mini/tool_streaming.yaml | 30
providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/simple.yaml | 102
providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/simple_streaming.yaml | 60
providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/tool.yaml | 233
providertests/testdata/TestAzureResponsesCommon/azure-o4-mini/tool_streaming.yaml | 72
providertests/testdata/TestAzureResponsesWithSummaryThinking/azure-gpt-5-mini/thinking-streaming.yaml | 27
providertests/testdata/TestAzureResponsesWithSummaryThinking/azure-gpt-5-mini/thinking.yaml | 43
providertests/testdata/TestAzureThinking/azure-gpt-5-mini/thinking-streaming.yaml | 182
providertests/testdata/TestAzureThinking/azure-gpt-5-mini/thinking.yaml | 13
providertests/testdata/TestAzureThinking/azure-grok-3-mini/thinking-streaming.yaml | 1674
providertests/testdata/TestAzureThinking/azure-grok-3-mini/thinking.yaml | 11
31 files changed, 2,726 insertions(+), 1,641 deletions(-)
@@ -4,7 +4,7 @@ tasks:
fmt:
desc: Run gofumpt for all packages
cmds:
- - gofmt -s -w .
+ - gofumpt -w .
modernize:
desc: Run modernize for all packages
@@ -2,8 +2,12 @@
package azure
import (
+ "fmt"
+ "regexp"
+ "strings"
+
"charm.land/fantasy"
- "charm.land/fantasy/providers/openaicompat"
+ "charm.land/fantasy/providers/openai"
"github.com/openai/openai-go/v2/azure"
"github.com/openai/openai-go/v2/option"
)
@@ -13,7 +17,7 @@ type options struct {
apiKey string
apiVersion string
- openaiOptions []openaicompat.Option
+ openaiOptions []openai.Option
}
const (
@@ -23,6 +27,14 @@ const (
defaultAPIVersion = "2025-01-01-preview"
)
+// azureURLPattern matches Azure OpenAI endpoint URLs in various formats:
+// * https://resource-id.openai.azure.com;
+// * https://resource-id.openai.azure.com/;
+// * https://resource-id.cognitiveservices.azure.com;
+// * https://resource-id.services.ai.azure.com/api/projects/project-name;
+// * resource-id.openai.azure.com.
+var azureURLPattern = regexp.MustCompile(`^(?:https?://)?([a-zA-Z0-9-]+)\.(?:openai|cognitiveservices|services\.ai)\.azure\.com(?:/.*)?$`)
+
// Option defines a function that configures Azure provider options.
type Option = func(*options)
@@ -34,12 +46,12 @@ func New(opts ...Option) (fantasy.Provider, error) {
for _, opt := range opts {
opt(&o)
}
- return openaicompat.New(
+ return openai.New(
append(
o.openaiOptions,
- openaicompat.WithName(Name),
- openaicompat.WithSDKOptions(
- azure.WithEndpoint(o.baseURL, o.apiVersion),
+ openai.WithName(Name),
+ openai.WithBaseURL(o.baseURL),
+ openai.WithSDKOptions(
azure.WithAPIKey(o.apiKey),
),
)...,
@@ -49,8 +61,24 @@ func New(opts ...Option) (fantasy.Provider, error) {
// WithBaseURL sets the base URL for the Azure provider.
func WithBaseURL(baseURL string) Option {
return func(o *options) {
- o.baseURL = baseURL
+ o.baseURL = parseAzureURL(baseURL)
+ }
+}
+
+// parseAzureURL extracts the resource ID from various Azure URL formats
+// and returns the standardized OpenAI-compatible endpoint URL.
+// If the URL doesn't match known Azure patterns, it returns the original URL.
+func parseAzureURL(baseURL string) string {
+ matches := azureURLPattern.FindStringSubmatch(baseURL)
+ if len(matches) >= 2 {
+ resourceID := matches[1]
+ return fmt.Sprintf("https://%s.openai.azure.com/openai/v1", resourceID)
}
+ // fallback to use the provided url
+ if !strings.HasPrefix(baseURL, "http://") && !strings.HasPrefix(baseURL, "https://") {
+ return "https://" + baseURL
+ }
+ return baseURL
}
// WithAPIKey sets the API key for the Azure provider.
@@ -63,7 +91,7 @@ func WithAPIKey(apiKey string) Option {
// WithHeaders sets the headers for the Azure provider.
func WithHeaders(headers map[string]string) Option {
return func(o *options) {
- o.openaiOptions = append(o.openaiOptions, openaicompat.WithHeaders(headers))
+ o.openaiOptions = append(o.openaiOptions, openai.WithHeaders(headers))
}
}
@@ -77,6 +105,13 @@ func WithAPIVersion(version string) Option {
// WithHTTPClient sets the HTTP client for the Azure provider.
func WithHTTPClient(client option.HTTPClient) Option {
return func(o *options) {
- o.openaiOptions = append(o.openaiOptions, openaicompat.WithHTTPClient(client))
+ o.openaiOptions = append(o.openaiOptions, openai.WithHTTPClient(client))
+ }
+}
+
+// WithUseResponsesAPI configures the provider to use the responses API for models that support it.
+func WithUseResponsesAPI() Option {
+ return func(o *options) {
+ o.openaiOptions = append(o.openaiOptions, openai.WithUseResponsesAPI())
}
}
@@ -0,0 +1,98 @@
+package azure
+
+import (
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+)
+
+func TestParseAzureURL(t *testing.T) {
+ tests := []struct {
+ name string
+ input string
+ expected string
+ }{
+ {
+ name: "full https openai azure url",
+ input: "https://my-resource.openai.azure.com",
+ expected: "https://my-resource.openai.azure.com/openai/v1",
+ },
+ {
+ name: "full https openai azure url with trailing slash",
+ input: "https://my-resource.openai.azure.com/",
+ expected: "https://my-resource.openai.azure.com/openai/v1",
+ },
+ {
+ name: "full https cognitiveservices azure url",
+ input: "https://my-resource.cognitiveservices.azure.com",
+ expected: "https://my-resource.openai.azure.com/openai/v1",
+ },
+ {
+ name: "full https services.ai azure url with path",
+ input: "https://fantasy-playground-resource.services.ai.azure.com/api/projects/fantasy-playground",
+ expected: "https://fantasy-playground-resource.openai.azure.com/openai/v1",
+ },
+ {
+ name: "openai azure url without protocol",
+ input: "my-resource.openai.azure.com",
+ expected: "https://my-resource.openai.azure.com/openai/v1",
+ },
+ {
+ name: "cognitiveservices azure url without protocol",
+ input: "my-resource.cognitiveservices.azure.com",
+ expected: "https://my-resource.openai.azure.com/openai/v1",
+ },
+ {
+ name: "services.ai azure url without protocol",
+ input: "fantasy-playground-resource.services.ai.azure.com/api/projects/fantasy-playground",
+ expected: "https://fantasy-playground-resource.openai.azure.com/openai/v1",
+ },
+ {
+ name: "resource with hyphens",
+ input: "https://my-complex-resource-123.openai.azure.com",
+ expected: "https://my-complex-resource-123.openai.azure.com/openai/v1",
+ },
+ {
+ name: "openai azure url with trailing slash",
+ input: "https://fantasy-playground-resource.openai.azure.com/",
+ expected: "https://fantasy-playground-resource.openai.azure.com/openai/v1",
+ },
+ {
+ name: "cognitiveservices azure url with trailing slash",
+ input: "https://fantasy-playground-resource.cognitiveservices.azure.com/",
+ expected: "https://fantasy-playground-resource.openai.azure.com/openai/v1",
+ },
+ {
+ name: "malformed url - non azure domain",
+ input: "https://non.sense.com",
+ expected: "https://non.sense.com",
+ },
+ {
+ name: "malformed url - simple domain",
+ input: "example.com",
+ expected: "https://example.com",
+ },
+ {
+ name: "custom endpoint with protocol",
+ input: "https://custom-endpoint.example.com",
+ expected: "https://custom-endpoint.example.com",
+ },
+ {
+ name: "custom endpoint without protocol",
+ input: "custom-endpoint.example.com",
+ expected: "https://custom-endpoint.example.com",
+ },
+ {
+ name: "localhost",
+ input: "http://localhost:8080",
+ expected: "http://localhost:8080",
+ },
+ }
+
+ for _, tt := range tests {
+ t.Run(tt.name, func(t *testing.T) {
+ result := parseAzureURL(tt.input)
+ assert.Equal(t, tt.expected, result)
+ })
+ }
+}
@@ -0,0 +1,98 @@
+package providertests
+
+import (
+ "cmp"
+ "net/http"
+ "os"
+ "testing"
+
+ "charm.land/fantasy"
+ "charm.land/fantasy/providers/azure"
+ "charm.land/fantasy/providers/openai"
+ "github.com/stretchr/testify/require"
+ "gopkg.in/dnaeon/go-vcr.v4/pkg/recorder"
+)
+
+func TestAzureResponsesCommon(t *testing.T) {
+ var pairs []builderPair
+ models := []testModel{
+ {"azure-gpt-5-mini", "gpt-5-mini", true},
+ {"azure-o4-mini", "o4-mini", true},
+ }
+ for _, m := range models {
+ pairs = append(pairs, builderPair{m.name, azureReasoningBuilder(m.model), nil, nil})
+ }
+ testCommon(t, pairs)
+}
+
+func azureReasoningBuilder(model string) builderFunc {
+ return func(t *testing.T, r *recorder.Recorder) (fantasy.LanguageModel, error) {
+ provider, err := azure.New(
+ azure.WithBaseURL(cmp.Or(os.Getenv("FANTASY_AZURE_BASE_URL"), defaultBaseURL)),
+ azure.WithAPIKey(cmp.Or(os.Getenv("FANTASY_AZURE_API_KEY"), "(missing)")),
+ azure.WithHTTPClient(&http.Client{Transport: r}),
+ azure.WithUseResponsesAPI(),
+ )
+ if err != nil {
+ return nil, err
+ }
+ return provider.LanguageModel(t.Context(), model)
+ }
+}
+
+func TestAzureResponsesWithSummaryThinking(t *testing.T) {
+ opts := fantasy.ProviderOptions{
+ openai.Name: &openai.ResponsesProviderOptions{
+ Include: []openai.IncludeType{
+ openai.IncludeReasoningEncryptedContent,
+ },
+ ReasoningEffort: openai.ReasoningEffortOption(openai.ReasoningEffortHigh),
+ ReasoningSummary: fantasy.Opt("auto"),
+ },
+ }
+ var pairs []builderPair
+ models := []testModel{
+ {"azure-gpt-5-mini", "gpt-5-mini", true},
+ }
+ for _, m := range models {
+ if !m.reasoning {
+ continue
+ }
+ pairs = append(pairs, builderPair{m.name, azureReasoningBuilder(m.model), opts, nil})
+ }
+ testThinking(t, pairs, testAzureResponsesThinkingWithSummaryThinking)
+}
+
+func testAzureResponsesThinkingWithSummaryThinking(t *testing.T, result *fantasy.AgentResult) {
+ reasoningContentCount := 0
+ encryptedData := 0
+ // Test if we got the signature
+ for _, step := range result.Steps {
+ for _, msg := range step.Messages {
+ for _, content := range msg.Content {
+ if content.GetType() == fantasy.ContentTypeReasoning {
+ reasoningContentCount += 1
+ reasoningContent, ok := fantasy.AsContentType[fantasy.ReasoningPart](content)
+ if !ok {
+ continue
+ }
+ if len(reasoningContent.ProviderOptions) == 0 {
+ continue
+ }
+
+ openaiReasoningMetadata, ok := reasoningContent.ProviderOptions[openai.Name]
+ if !ok {
+ continue
+ }
+ if typed, ok := openaiReasoningMetadata.(*openai.ResponsesReasoningMetadata); ok {
+ require.NotEmpty(t, typed.EncryptedContent)
+ encryptedData += 1
+ }
+ }
+ }
+ }
+ }
+ require.Greater(t, reasoningContentCount, 0)
+ require.Greater(t, encryptedData, 0)
+ require.Equal(t, reasoningContentCount, encryptedData)
+}
@@ -13,7 +13,7 @@ import (
"gopkg.in/dnaeon/go-vcr.v4/pkg/recorder"
)
-const defaultBaseURL = "https://fantasy-playground-resource.services.ai.azure.com/"
+const defaultBaseURL = "https://fantasy-playground-resource.openai.azure.com"
func TestAzureCommon(t *testing.T) {
testCommon(t, []builderPair{
@@ -26,7 +26,7 @@ func TestAzureCommon(t *testing.T) {
func TestAzureThinking(t *testing.T) {
opts := fantasy.ProviderOptions{
openai.Name: &openai.ProviderOptions{
- ReasoningEffort: openai.ReasoningEffortOption(openai.ReasoningEffortLow),
+ ReasoningEffort: openai.ReasoningEffortOption(openai.ReasoningEffortHigh),
},
}
testThinking(t, []builderPair{
@@ -9,17 +9,14 @@ interactions:
content_length: 171
host: ""
body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"gpt-5-mini","max_completion_tokens":4000}'
- form:
- api-version:
- - 2025-01-01-preview
headers:
Accept:
- application/json
Content-Type:
- application/json
User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/gpt-5-mini/chat/completions?api-version=2025-01-01-preview
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
method: POST
response:
proto: HTTP/2.0
@@ -27,10 +24,10 @@ interactions:
proto_minor: 0
content_length: 1205
body: |
@@ -9,17 +9,14 @@ interactions:
content_length: 225
host: ""
body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"gpt-5-mini","max_completion_tokens":4000,"stream_options":{"include_usage":true},"stream":true}'
- form:
- api-version:
- - 2025-01-01-preview
headers:
Accept:
- application/json
Content-Type:
- application/json
User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/gpt-5-mini/chat/completions?api-version=2025-01-01-preview
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
method: POST
response:
proto: HTTP/2.0
@@ -29,15 +26,31 @@ interactions:
body: |+
data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]}
- data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350264,"id":"chatcmpl-CLxf6VStuacrIaxo8vDi3CgHCWd53","model":"gpt-5-mini-2025-08-07","obfuscation":"XVlAyJOxspdMjl","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"zV0z0Nhm4vBJPe","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"Olรก"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350264,"id":"chatcmpl-CLxf6VStuacrIaxo8vDi3CgHCWd53","model":"gpt-5-mini-2025-08-07","obfuscation":"chpqp0z3YDcaR","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"Olรก"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"bAjQTaqR0x0H0","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"!"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350264,"id":"chatcmpl-CLxf6VStuacrIaxo8vDi3CgHCWd53","model":"gpt-5-mini-2025-08-07","obfuscation":"l74mHkPbuPqwWfK","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"!"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"5SfhBKVU1ZExC0w","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1759350264,"id":"chatcmpl-CLxf6VStuacrIaxo8vDi3CgHCWd53","model":"gpt-5-mini-2025-08-07","obfuscation":"fLeGCVdAbj","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" ("},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"WkSeDVRMxOyjtP","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[],"created":1759350264,"id":"chatcmpl-CLxf6VStuacrIaxo8vDi3CgHCWd53","model":"gpt-5-mini-2025-08-07","obfuscation":"5BNmJwjTHE4Nbv","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":76,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":64,"rejected_prediction_tokens":0},"prompt_tokens":19,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":95}}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"tamb"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"pNiSihK5iZcs","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"รฉm"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"xECBxJwCJ42Ktg","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" pode"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"j5vLZXmCrsl","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" dizer"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"f6uQzkBbn5","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" \""},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"4OGZk82dzZvaF","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"Oi"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"aY4hMT7w5iE0gy","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"!\")"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"bX0oyMMZTDqs","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"IkpictBD1v","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+
+ data: {"choices":[],"created":1761842957,"id":"chatcmpl-CWQ7puA20Xq1q7lREx3It7GAIshNJ","model":"gpt-5-mini-2025-08-07","obfuscation":"MQpC96hAsnU","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":148,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":128,"rejected_prediction_tokens":0},"prompt_tokens":19,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":167}}
data: [DONE]
@@ -46,4 +59,4 @@ interactions:
- text/event-stream; charset=utf-8
status: 200 OK
code: 200
- duration: 2.557172792s
+ duration: 2.602852625s
@@ -9,31 +9,28 @@ interactions:
content_length: 463
host: ""
body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"gpt-5-mini","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}'
- form:
- api-version:
- - 2025-01-01-preview
headers:
Accept:
- application/json
Content-Type:
- application/json
User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/gpt-5-mini/chat/completions?api-version=2025-01-01-preview
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
- content_length: 1051
+ content_length: 1050
body: |
@@ -9,17 +9,14 @@ interactions:
content_length: 517
host: ""
body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"gpt-5-mini","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}'
- form:
- api-version:
- - 2025-01-01-preview
headers:
Accept:
- application/json
Content-Type:
- application/json
User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/gpt-5-mini/chat/completions?api-version=2025-01-01-preview
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
method: POST
response:
proto: HTTP/2.0
@@ -29,27 +26,27 @@ interactions:
body: |+
data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]}
- data: {"choices":[{"content_filter_results":{},"delta":{"content":null,"refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"","name":"weather"},"id":"call_8zWqyCGc9JONpbym6cQQaxQX","index":0,"type":"function"}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350273,"id":"chatcmpl-CLxfFP9u7nnJ0zV2neRl2AOLDlWkB","model":"gpt-5-mini-2025-08-07","obfuscation":"N3wayxqxYPzbv","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"content":null,"refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"","name":"weather"},"id":"call_WFbjblhLkFWD9MLJyBZIYfa8","index":0,"type":"function"}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"vJXSYcBaeCSjS","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350273,"id":"chatcmpl-CLxfFP9u7nnJ0zV2neRl2AOLDlWkB","model":"gpt-5-mini-2025-08-07","obfuscation":"Zcm","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"b9Y","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"location"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350273,"id":"chatcmpl-CLxfFP9u7nnJ0zV2neRl2AOLDlWkB","model":"gpt-5-mini-2025-08-07","obfuscation":"pjIkg2tDNoWTVu","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"location"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"a8RF0QYq8yeFA2","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\":\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350273,"id":"chatcmpl-CLxfFP9u7nnJ0zV2neRl2AOLDlWkB","model":"gpt-5-mini-2025-08-07","obfuscation":"u","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\":\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"m","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"Flor"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350273,"id":"chatcmpl-CLxfFP9u7nnJ0zV2neRl2AOLDlWkB","model":"gpt-5-mini-2025-08-07","obfuscation":"8I","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"Flor"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"Ym","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"ence"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350273,"id":"chatcmpl-CLxfFP9u7nnJ0zV2neRl2AOLDlWkB","model":"gpt-5-mini-2025-08-07","obfuscation":"9G","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"ence"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"et","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":","},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350273,"id":"chatcmpl-CLxfFP9u7nnJ0zV2neRl2AOLDlWkB","model":"gpt-5-mini-2025-08-07","obfuscation":"pa4Dp","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":","},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"8zW5E","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":" Italy"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350273,"id":"chatcmpl-CLxfFP9u7nnJ0zV2neRl2AOLDlWkB","model":"gpt-5-mini-2025-08-07","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":" Italy"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\"}"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350273,"id":"chatcmpl-CLxfFP9u7nnJ0zV2neRl2AOLDlWkB","model":"gpt-5-mini-2025-08-07","obfuscation":"FC0","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\"}"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"3Li","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0,"logprobs":null}],"created":1759350273,"id":"chatcmpl-CLxfFP9u7nnJ0zV2neRl2AOLDlWkB","model":"gpt-5-mini-2025-08-07","obfuscation":"YZeM","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0,"logprobs":null}],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"OdNH","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[],"created":1759350273,"id":"chatcmpl-CLxfFP9u7nnJ0zV2neRl2AOLDlWkB","model":"gpt-5-mini-2025-08-07","obfuscation":"ocleJ5n82Knp","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":90,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":64,"rejected_prediction_tokens":0},"prompt_tokens":145,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":235}}
+ data: {"choices":[],"created":1761842968,"id":"chatcmpl-CWQ80r4XwxEJf2WSuHTmxcFkBoDjz","model":"gpt-5-mini-2025-08-07","obfuscation":"63Mqj9Hvoz","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":154,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":128,"rejected_prediction_tokens":0},"prompt_tokens":145,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":299}}
data: [DONE]
@@ -58,7 +55,7 @@ interactions:
- text/event-stream; charset=utf-8
status: 200 OK
code: 200
- duration: 1.715479958s
+ duration: 3.996220958s
- id: 1
request:
proto: HTTP/1.1
@@ -66,18 +63,15 @@ interactions:
proto_minor: 1
content_length: 769
host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_8zWqyCGc9JONpbym6cQQaxQX","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_8zWqyCGc9JONpbym6cQQaxQX","role":"tool"}],"model":"gpt-5-mini","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}'
- form:
- api-version:
- - 2025-01-01-preview
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_WFbjblhLkFWD9MLJyBZIYfa8","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_WFbjblhLkFWD9MLJyBZIYfa8","role":"tool"}],"model":"gpt-5-mini","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}'
headers:
Accept:
- application/json
Content-Type:
- application/json
User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/gpt-5-mini/chat/completions?api-version=2025-01-01-preview
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
method: POST
response:
proto: HTTP/2.0
@@ -87,145 +81,155 @@ interactions:
body: |+
data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]}
- data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"jLpdUp9nnpi9u4","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"31ohoZjadUIMY7","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"Right"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"kNjEYu3vq6Z","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"Current"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"1Fc7UNTIF","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" now"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"QPuBZVLQBjHP","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" temperature"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"aCxc","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"xYZnYSvT1waIu","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"T9GNQ70Z8hNaE","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Florence"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"ROO96qZ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Florence"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"opSu26D","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" it's"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"PTJ6gjDPMWF","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"TsN8SM5lv7KfDNs","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" "},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"19iFXqbFHdysQgZ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Italy"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"tYpH4n7zPk","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"40"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"y98OQKvEv1vdwr","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":":"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"Yg5iXL3dpwakuRQ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"ยฐC"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"Y8pg6XNyAjEWXW","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" "},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"vfqgpOdnPhVUT5B","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" ("},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"SZme4m2bIP02tW","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"40"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"Gzg6vg5reXdPKK","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"104"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"l2wg1dnJbWMyO","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" ยฐ"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"nCl9nrNZVKHIX6","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"ยฐF"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"AmNApaWn9xq6vY","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"C"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"hFyT92OEAI8u1YX","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":")"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"TW3Esz6upty6v6X","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" ("},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"gN0BfZuyaFCZ3t","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" โ"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"pR6wUQHbyhBGBL","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"about"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"Q4tjkF1rPur","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" very"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"0UcdodcpusB","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" "},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"veP3crKB22a9YOr","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hot"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"pTrX1Uwk34lb","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"104"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"GRj7GGqlQUcGX","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":".\n\n"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"MjzmTOBh3Nf","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" ยฐ"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"7c0tVnsjlvO7Mu","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"Quick"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"bC4Lxe8ZWt6","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"F"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"xVC0jWLFWlwPfNn","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" tips"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"W9mwQ29YHj3","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":").\n\n"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"PDYACeJXKz","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":":"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"qPLtbVHIH0LS2A3","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"That's"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"ZqijVzfdL3","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" stay"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"MSK6OueinLI","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" very"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"wNFG8aWqZot","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hydrated"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"O4mm8z5","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hot"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"ZfuqAqqCtaq0","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"RzG8XXMuOuqbxGS","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" โ"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"HHtmcJuOfgVmdK","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" avoid"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"sqL2P9G2ZM","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" consider"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"yxzr7Ul","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" strenuous"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"rvOk6f","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":":\n"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"U0KEaVVODjFGs","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" activity"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"Kc0WH8h","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"-"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"5uwIrMW93ii4Hxg","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"kweMMJUvTi2Ou","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Stay"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"1eU1vpVoqd3","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" midday"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"ZCFlbVcoX","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hydrated"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"kUW29Q2","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" heat"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"aiP5SsWDHv5","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" and"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"wF52budGGDiH","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"dyM9cKRX43nY8Aa","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" seek"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"pC1dhq0FofE","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" wear"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"5SUqBC1ngUN","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" shade"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"kJvkcB9GTA","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" lightweight"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"qBiZ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"/"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"ICTddIPYaNCIZOU","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" clothing"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"yOVHmt4","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"air"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"CR8UnJZQra82V","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" and"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"bsgeUsfQh9eC","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" conditioning"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"Hl8","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" sunscreen"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"sMIS5A","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"\n"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"21xaXflEGZ4RlT","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"NEsLAasxXjd9EwI","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"-"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"gDNzFKt7ZJHZt31","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" take"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"uQFkBCGsQCP","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Limit"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"1LY629BG3r","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" breaks"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"DHrTRsn8V","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" strenuous"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"dtEDq9","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"JXEtddvqt3Vte","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" outdoor"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"AhhmGCNC","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" shade"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"goB5ahqJMT","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" activity"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"vgsiQ07","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" or"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"fDRqQSlSpLnJ8","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" during"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"qmzgc0rTP","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" air"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"eLDDv13rzy60","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" midday"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"r3CW8fNP1","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"-conditioned"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"TqGd","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"\n"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"eJguL96SizX37V","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" spaces"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"BdYRFQnoH","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"-"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"yRsKXiEmvIpPNGM","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"bgsZXtxtELdf7xB","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Wear"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"6v5D9hep8DT","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" and"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"rZrplczKZodd","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" light"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"GjAhTZFdKQ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" check"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"ji4uLfcQVX","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" clothing"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"6eI60a6","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" for"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"9NdEXxMm0Bg0","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"odmBjOeXSYfqO0E","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" local"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"Beu97SmRj2","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" a"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"xZpDTnNUgtqoGt","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" heat"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"bqVMEQBuPN0","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hat"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"nzJhcXAx70KX","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" advis"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"4jYFOTR4g3","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"26Ef1iOSqin82Oh","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"ories"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"BTd1bDikOl1","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" and"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"tyNnDq1fevj3","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":".\n\n"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"qeKtBtQ0eCx","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" sunscreen"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"7HNTYO","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"Would"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"F1N5opL0oHZ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"\n\n"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"cfFJRATLVYff","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" you"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"3YQENpXTsh3U","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"Would"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"J41N8hHrGPZ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" like"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"UNZ3LDjj78U","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" you"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"b8WyGVBkx6tm","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" an"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"ObQdEII3IGXxa","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" like"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"7EApxYjDgSu","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hourly"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"ZI9DMWOTd","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" a"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"UZd5rACfceOB6h","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" forecast"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"fhCPrPo","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" short"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"j0uor3Cu6D","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" or"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"81CoX91KFkED2","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"-term"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"a96BZJ6ceRZ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" the"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"ATHHzxLIkAzm","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" forecast"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"QeOqCTz","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" outlook"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"ozVqWdbu","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"2z9eXOYEWBR3kUj","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" for"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"KxQ0Bgr3EHhp","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hourly"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"Cgi24D3mW","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" the"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"dzgObO0upvJ4","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" temps"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"9cT8DF2ga8","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" next"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"99hQuwCvFhv","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"WiMLdceuybAlj9c","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" few"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"9wH9mbe15qFN","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" or"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"cnNrlBkMTfxGM","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" days"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"36J186AlCqE","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" advice"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"OH8ufdCMF","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"?"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"BAi1RffjUSuTVAh","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" for"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"XDcxeossOiFm","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"v0WYVTCiIX","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" travel"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"t9NoOZkZe","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[],"created":1759350275,"id":"chatcmpl-CLxfHxzGkPMeo7HBmdVyoBlletTGl","model":"gpt-5-mini-2025-08-07","obfuscation":"zSDMW9fuPI","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":269,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":192,"rejected_prediction_tokens":0},"prompt_tokens":176,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":445}}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"/out"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"WIUoUD8qTMwU","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"door"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"4Liibim1NHhm","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" plans"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"eYY3eZAgQf","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"?"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"7AUAgW0JUU6rcyY","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"q9zzoCPBoE","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+
+ data: {"choices":[],"created":1761842972,"id":"chatcmpl-CWQ84HNPCUXZ59lNv22vwvIUppIBm","model":"gpt-5-mini-2025-08-07","obfuscation":"fzJC7PzN3I","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":210,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":128,"rejected_prediction_tokens":0},"prompt_tokens":176,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":386}}
data: [DONE]
@@ -234,4 +238,4 @@ interactions:
- text/event-stream; charset=utf-8
status: 200 OK
code: 200
- duration: 3.11044s
+ duration: 4.104046292s
@@ -9,17 +9,14 @@ interactions:
content_length: 161
host: ""
body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"grok-3-mini","max_tokens":4000}'
- form:
- api-version:
- - 2025-01-01-preview
headers:
Accept:
- application/json
Content-Type:
- application/json
User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/grok-3-mini/chat/completions?api-version=2025-01-01-preview
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
method: POST
response:
proto: HTTP/2.0
@@ -27,10 +24,10 @@ interactions:
proto_minor: 0
content_length: -1
uncompressed: true
@@ -9,27 +9,24 @@ interactions:
content_length: 215
host: ""
body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"grok-3-mini","max_tokens":4000,"stream_options":{"include_usage":true},"stream":true}'
- form:
- api-version:
- - 2025-01-01-preview
headers:
Accept:
- application/json
Content-Type:
- application/json
User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/grok-3-mini/chat/completions?api-version=2025-01-01-preview
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
content_length: -1
@@ -9,17 +9,14 @@ interactions:
content_length: 453
host: ""
body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"grok-3-mini","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"}]}'
- form:
- api-version:
- - 2025-01-01-preview
headers:
Accept:
- application/json
Content-Type:
- application/json
User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/grok-3-mini/chat/completions?api-version=2025-01-01-preview
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
method: POST
response:
proto: HTTP/2.0
@@ -28,13 +25,13 @@ interactions:
content_length: -1
uncompressed: true
body: |
@@ -9,17 +9,14 @@ interactions:
content_length: 507
host: ""
body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"grok-3-mini","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}'
- form:
- api-version:
- - 2025-01-01-preview
headers:
Accept:
- application/json
Content-Type:
- application/json
User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/grok-3-mini/chat/completions?api-version=2025-01-01-preview
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
method: POST
response:
proto: HTTP/2.0
@@ -29,813 +26,721 @@ interactions:
body: |+
data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"First","role":"assistant"},"index":0}],"created":1759350298,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"First","role":"assistant"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350298,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350298,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1759350298,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350298,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" asking"},"index":0}],"created":1759350298,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" asking"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1759350298,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" about"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350298,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1759350298,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1759350298,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1759350298,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" called"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" called"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" get"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" get"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" requires"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" description"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Get"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" described"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"the"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" require"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\".\n\n"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" query"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specifies"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" string"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" described"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clearly"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provides"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"the"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\".\n\n"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" country"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" This"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" matches"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"'s"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" requirement"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" This"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" since"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" seems"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specify"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" both"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" given"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" country"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" country"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Italy"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fine"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" helps"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specify"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" uniquely"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"All"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" described"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1759350299,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"the"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" but"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" doesn't"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specify"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" infer"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" must"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" just"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842989,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" name"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" without"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" means"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" country"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" In"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" practice"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" providing"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" so"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" use"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" help"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" dis"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"ambig"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"uate"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" there"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" multiple"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Flor"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"ences"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" description"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" says"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" so"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it's"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"the"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" probably"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" acceptable"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" so"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"All"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I'll"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" use"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" string"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" given"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Now"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" according"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" instructions"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" infer"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" query"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" passed"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" addressed"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" argument"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" using"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" all"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" instruction"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" says"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" or"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" infer"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"able"},"index":0}],"created":1759350300,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"If"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" query"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" trigger"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" addressed"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" using"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" JSON"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" within"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" all"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e\u003c/"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" or"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tags"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" obviously"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" infer"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"This"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"able"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" trigger"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" direct"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" match"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" so"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\""},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Here"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" matches"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"My"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" verbose"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":";"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" keep"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Since"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I'm"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specified"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" JSON"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" within"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" don't"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" add"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tags"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" extra"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" text"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"After"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" unless"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" necessary"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" instructions"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" say"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" needed"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" use"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" might"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" handle"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tag"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" only"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" subsequent"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I'm"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" turns"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" but"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" now"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" do"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" so"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" logical"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" decisively"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" next"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" step"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"After"},"index":0}],"created":1759350301,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"My"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" verbose"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" multi"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":";"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-turn"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" keep"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" conversation"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" might"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" So"},"index":0}],"created":1761842990,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" handle"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" shouldn't"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" add"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" extra"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" text"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" but"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" unless"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" necessary"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" now"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" instruction"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" says"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" first"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" step"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Keep"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" your"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" advance"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Function"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":";"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" please"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" do"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" make"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" your"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e{\""},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" verbose"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"!\""},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" And"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" only"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" use"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_input"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" {\""},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tag"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I'm"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"}}\u003c/"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Since"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I'm"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e\n\n"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" deciding"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" use"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" my"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" just"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" contain"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" even"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" though"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" said"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Final"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" decision"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Call"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" with"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" just"},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350302,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" described"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"id":"call_78089033","index":0,"type":"function"}]},"index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0}],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"the"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" so"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" suffice"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" No"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" include"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" country"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it's"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specified"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"'s"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Finally"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" since"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fulfills"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I'll"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" just"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" output"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\"location\":\"Florence\"}","name":"weather"},"id":"call_74951433","index":0,"type":"function"}]},"index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0}],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
-
- data: {"choices":[],"created":1759350303,"id":"82ee8546-aa7a-4275-93fe-efca5f977399_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9","usage":{"completion_tokens":25,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":401,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":288,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":288},"total_tokens":714}}
+ data: {"choices":[],"created":1761842991,"id":"39ac52a4-9d28-4208-a85e-044112b24910_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9","usage":{"completion_tokens":27,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":355,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":288,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":288},"total_tokens":670}}
data: [DONE]
@@ -9,17 +9,14 @@ interactions:
content_length: 168
host: ""
body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"o4-mini","max_completion_tokens":4000}'
- form:
- api-version:
- - 2025-01-01-preview
headers:
Accept:
- application/json
Content-Type:
- application/json
User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/o4-mini/chat/completions?api-version=2025-01-01-preview
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
method: POST
response:
proto: HTTP/2.0
@@ -27,10 +24,10 @@ interactions:
proto_minor: 0
content_length: 1203
body: |
@@ -9,17 +9,14 @@ interactions:
content_length: 222
host: ""
body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"Say hi in Portuguese","role":"user"}],"model":"o4-mini","max_completion_tokens":4000,"stream_options":{"include_usage":true},"stream":true}'
- form:
- api-version:
- - 2025-01-01-preview
headers:
Accept:
- application/json
Content-Type:
- application/json
User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/o4-mini/chat/completions?api-version=2025-01-01-preview
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
method: POST
response:
proto: HTTP/2.0
@@ -29,15 +26,15 @@ interactions:
body: |+
data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]}
- data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350255,"id":"chatcmpl-CLxexMFSmrotztDFk3H1rAjoguCVv","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842949,"id":"chatcmpl-CWQ7hehqpDlf2niJw1ppNwUCBUH6W","model":"o4-mini-2025-04-16","obfuscation":"I","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"Oi"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350255,"id":"chatcmpl-CLxexMFSmrotztDFk3H1rAjoguCVv","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"Olรก"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842949,"id":"chatcmpl-CWQ7hehqpDlf2niJw1ppNwUCBUH6W","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"!"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350255,"id":"chatcmpl-CLxexMFSmrotztDFk3H1rAjoguCVv","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"!"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842949,"id":"chatcmpl-CWQ7hehqpDlf2niJw1ppNwUCBUH6W","model":"o4-mini-2025-04-16","obfuscation":"fH","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1759350255,"id":"chatcmpl-CLxexMFSmrotztDFk3H1rAjoguCVv","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1761842949,"id":"chatcmpl-CWQ7hehqpDlf2niJw1ppNwUCBUH6W","model":"o4-mini-2025-04-16","obfuscation":"p7EdA3UJmxdvk","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[],"created":1759350255,"id":"chatcmpl-CLxexMFSmrotztDFk3H1rAjoguCVv","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":85,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":64,"rejected_prediction_tokens":0},"prompt_tokens":19,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":104}}
+ data: {"choices":[],"created":1761842949,"id":"chatcmpl-CWQ7hehqpDlf2niJw1ppNwUCBUH6W","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":85,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":64,"rejected_prediction_tokens":0},"prompt_tokens":19,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":104}}
data: [DONE]
@@ -46,4 +43,4 @@ interactions:
- text/event-stream; charset=utf-8
status: 200 OK
code: 200
- duration: 1.222784292s
+ duration: 1.122837417s
@@ -9,31 +9,28 @@ interactions:
content_length: 460
host: ""
body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"o4-mini","max_completion_tokens":4000,"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}'
- form:
- api-version:
- - 2025-01-01-preview
headers:
Accept:
- application/json
Content-Type:
- application/json
User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/o4-mini/chat/completions?api-version=2025-01-01-preview
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
- content_length: 1049
+ content_length: 1045
body: |
@@ -9,17 +9,14 @@ interactions:
content_length: 514
host: ""
body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"}],"model":"o4-mini","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}'
- form:
- api-version:
- - 2025-01-01-preview
headers:
Accept:
- application/json
Content-Type:
- application/json
User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/o4-mini/chat/completions?api-version=2025-01-01-preview
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
method: POST
response:
proto: HTTP/2.0
@@ -29,27 +26,27 @@ interactions:
body: |+
data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]}
- data: {"choices":[{"content_filter_results":{},"delta":{"content":null,"refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"","name":"weather"},"id":"call_kdKvKemWNekN6fO9JMnGD6Ix","index":0,"type":"function"}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350259,"id":"chatcmpl-CLxf1jaz5WrWXWF4tXXpOxEOsiAFl","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"content":null,"refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"","name":"weather"},"id":"call_9URIoTvgd5stQfgpr8dHAg9L","index":0,"type":"function"}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350259,"id":"chatcmpl-CLxf1jaz5WrWXWF4tXXpOxEOsiAFl","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"NCcJz9","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"location"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350259,"id":"chatcmpl-CLxf1jaz5WrWXWF4tXXpOxEOsiAFl","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"location"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"c","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\":\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350259,"id":"chatcmpl-CLxf1jaz5WrWXWF4tXXpOxEOsiAFl","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\":\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"59wG","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"Flor"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350259,"id":"chatcmpl-CLxf1jaz5WrWXWF4tXXpOxEOsiAFl","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"Flor"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"vBcyl","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"ence"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350259,"id":"chatcmpl-CLxf1jaz5WrWXWF4tXXpOxEOsiAFl","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"ence"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"pIOsj","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":","},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350259,"id":"chatcmpl-CLxf1jaz5WrWXWF4tXXpOxEOsiAFl","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":","},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"0Nhjk7XH","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":" Italy"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350259,"id":"chatcmpl-CLxf1jaz5WrWXWF4tXXpOxEOsiAFl","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"Italy"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"kI4T","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\"}"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350259,"id":"chatcmpl-CLxf1jaz5WrWXWF4tXXpOxEOsiAFl","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\"}"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"e8PzDD","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0,"logprobs":null}],"created":1759350259,"id":"chatcmpl-CLxf1jaz5WrWXWF4tXXpOxEOsiAFl","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0,"logprobs":null}],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"BXRFyNp","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[],"created":1759350259,"id":"chatcmpl-CLxf1jaz5WrWXWF4tXXpOxEOsiAFl","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":151,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":128,"rejected_prediction_tokens":0},"prompt_tokens":64,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":215}}
+ data: {"choices":[],"created":1761842952,"id":"chatcmpl-CWQ7kENkVMfDLAS6nHSmFXgbPVxi7","model":"o4-mini-2025-04-16","obfuscation":"4Z","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":23,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":0,"rejected_prediction_tokens":0},"prompt_tokens":64,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":87}}
data: [DONE]
@@ -58,26 +55,23 @@ interactions:
- text/event-stream; charset=utf-8
status: 200 OK
code: 200
- duration: 1.617177792s
+ duration: 980.975375ms
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 766
+ content_length: 765
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_kdKvKemWNekN6fO9JMnGD6Ix","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_kdKvKemWNekN6fO9JMnGD6Ix","role":"tool"}],"model":"o4-mini","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}'
- form:
- api-version:
- - 2025-01-01-preview
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence,Italy?","role":"user"},{"tool_calls":[{"id":"call_9URIoTvgd5stQfgpr8dHAg9L","function":{"arguments":"{\"location\":\"Florence,Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_9URIoTvgd5stQfgpr8dHAg9L","role":"tool"}],"model":"o4-mini","max_completion_tokens":4000,"stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}'
headers:
Accept:
- application/json
Content-Type:
- application/json
User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/o4-mini/chat/completions?api-version=2025-01-01-preview
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
method: POST
response:
proto: HTTP/2.0
@@ -87,117 +81,35 @@ interactions:
body: |+
data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]}
- data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"6","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"The"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"The"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" current"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" current"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"hUDX8HnCTVS","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" temperature"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" temperature"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"mwMYc2I","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Florence"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Florence"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"uk82d5NseJ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"gH","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Italy"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Italy"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"tCtxzaNt6jg7V","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" is"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" is"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" "},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" "},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"Kk","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"40"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"40"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"m","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"ยฐC"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"ยฐC"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"v","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"."},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"."},"finish_reason":null,"index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"rm","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" It"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"psinnxINFfODK","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"โs"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" quite"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hot"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" so"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" if"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" you"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"โre"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" heading"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" out"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" consider"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" staying"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hydrated"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" wearing"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" light"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" clothing"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" and"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" seeking"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" shade"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" during"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" peak"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" sun"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hours"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"."},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Let"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" me"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" know"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" if"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" you"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" need"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" more"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" detailed"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" forecasts"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" or"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" anything"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" else"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"!"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[],"created":1759350261,"id":"chatcmpl-CLxf38w0YR5UjtAlk5UM1IK4NXx4N","model":"o4-mini-2025-04-16","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":66,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":0,"rejected_prediction_tokens":0},"prompt_tokens":92,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":158}}
+ data: {"choices":[],"created":1761842953,"id":"chatcmpl-CWQ7lsQr88iejRMbeEhyd871OqpiJ","model":"o4-mini-2025-04-16","obfuscation":"9","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":25,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":0,"rejected_prediction_tokens":0},"prompt_tokens":92,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":117}}
data: [DONE]
@@ -206,4 +118,4 @@ interactions:
- text/event-stream; charset=utf-8
status: 200 OK
code: 200
- duration: 587.09025ms
+ duration: 375.330583ms
@@ -0,0 +1,102 @@
+---
+version: 2
+interactions:
+- id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 212
+ host: ""
+ body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"Say hi in Portuguese","type":"input_text"}],"role":"user"}],"model":"gpt-5-mini"}'
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1559
+ body: |-
+ {
+ "id": "resp_099c69d9f7a8450501690399717e048194a086be1ecd3178eb",
+ "object": "response",
+ "created_at": 1761843569,
+ "status": "completed",
+ "background": false,
+ "content_filters": null,
+ "error": null,
+ "incomplete_details": null,
+ "instructions": null,
+ "max_output_tokens": 4000,
+ "max_tool_calls": null,
+ "model": "gpt-5-mini",
+ "output": [
+ {
+ "id": "rs_099c69d9f7a845050169039971fb208194884ced01a08fdfd6",
+ "type": "reasoning",
+ "summary": []
+ },
+ {
+ "id": "msg_099c69d9f7a8450501690399758a5081948d95d3d1560ba719",
+ "type": "message",
+ "status": "completed",
+ "content": [
+ {
+ "type": "output_text",
+ "annotations": [],
+ "logprobs": [],
+ "text": "Ol\u00e1! (Tamb\u00e9m pode dizer \"Oi!\")"
+ }
+ ],
+ "role": "assistant"
+ }
+ ],
+ "parallel_tool_calls": true,
+ "previous_response_id": null,
+ "prompt_cache_key": null,
+ "reasoning": {
+ "effort": "medium",
+ "summary": null
+ },
+ "safety_identifier": null,
+ "service_tier": "default",
+ "store": false,
+ "temperature": 1.0,
+ "text": {
+ "format": {
+ "type": "text"
+ },
+ "verbosity": "medium"
+ },
+ "tool_choice": "auto",
+ "tools": [],
+ "top_logprobs": 0,
+ "top_p": 1.0,
+ "truncation": "disabled",
+ "usage": {
+ "input_tokens": 19,
+ "input_tokens_details": {
+ "cached_tokens": 0
+ },
+ "output_tokens": 143,
+ "output_tokens_details": {
+ "reasoning_tokens": 128
+ },
+ "total_tokens": 162
+ },
+ "user": null,
+ "metadata": {}
+ }
+ headers:
+ Content-Type:
+ - application/json
+ status: 200 OK
+ code: 200
+ duration: 6.221231041s
@@ -0,0 +1,68 @@
+---
+version: 2
+interactions:
+- id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 226
+ host: ""
+ body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"Say hi in Portuguese","type":"input_text"}],"role":"user"}],"model":"gpt-5-mini","stream":true}'
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: -1
+ body: |+
+ event: response.created
+ data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0b4726240aaacbdc0169039977006081968d5b3074ea5b42a1","object":"response","created_at":1761843575,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}}
+
+ event: response.in_progress
+ data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0b4726240aaacbdc0169039977006081968d5b3074ea5b42a1","object":"response","created_at":1761843575,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}}
+
+ event: response.output_item.added
+ data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_0b4726240aaacbdc01690399775ac8819687e64c00134959bd","type":"reasoning","summary":[]}}
+
+ event: response.output_item.done
+ data: {"type":"response.output_item.done","sequence_number":3,"output_index":0,"item":{"id":"rs_0b4726240aaacbdc01690399775ac8819687e64c00134959bd","type":"reasoning","summary":[]}}
+
+ event: response.output_item.added
+ data: {"type":"response.output_item.added","sequence_number":4,"output_index":1,"item":{"id":"msg_0b4726240aaacbdc01690399791ef48196a80844dabf0c19d1","type":"message","status":"in_progress","content":[],"role":"assistant"}}
+
+ event: response.content_part.added
+ data: {"type":"response.content_part.added","sequence_number":5,"item_id":"msg_0b4726240aaacbdc01690399791ef48196a80844dabf0c19d1","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}}
+
+ event: response.output_text.delta
+ data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_0b4726240aaacbdc01690399791ef48196a80844dabf0c19d1","output_index":1,"content_index":0,"delta":"Olรก","logprobs":[],"obfuscation":"GnLMSVqNdNbj1"}
+
+ event: response.output_text.delta
+ data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_0b4726240aaacbdc01690399791ef48196a80844dabf0c19d1","output_index":1,"content_index":0,"delta":"!","logprobs":[],"obfuscation":"qkamnZvkApJNl5A"}
+
+ event: response.output_text.done
+ data: {"type":"response.output_text.done","sequence_number":8,"item_id":"msg_0b4726240aaacbdc01690399791ef48196a80844dabf0c19d1","output_index":1,"content_index":0,"text":"Olรก!","logprobs":[]}
+
+ event: response.content_part.done
+ data: {"type":"response.content_part.done","sequence_number":9,"item_id":"msg_0b4726240aaacbdc01690399791ef48196a80844dabf0c19d1","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Olรก!"}}
+
+ event: response.output_item.done
+ data: {"type":"response.output_item.done","sequence_number":10,"output_index":1,"item":{"id":"msg_0b4726240aaacbdc01690399791ef48196a80844dabf0c19d1","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Olรก!"}],"role":"assistant"}}
+
+ event: response.completed
@@ -0,0 +1,233 @@
+---
+version: 2
+interactions:
+- id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 491
+ host: ""
+ body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"}],"model":"gpt-5-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}'
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1866
+ body: |-
+ {
+ "id": "resp_01ac948c31d692b30169039979ab2c819096befaa857fd6bd5",
+ "object": "response",
+ "created_at": 1761843577,
+ "status": "completed",
+ "background": false,
+ "content_filters": null,
+ "error": null,
+ "incomplete_details": null,
+ "instructions": null,
+ "max_output_tokens": 4000,
+ "max_tool_calls": null,
+ "model": "gpt-5-mini",
+ "output": [
+ {
+ "id": "rs_01ac948c31d692b3016903997a0748819094955c49dc9168e3",
+ "type": "reasoning",
+ "summary": []
+ },
+ {
+ "id": "fc_01ac948c31d692b3016903997b1a648190b3e9f6259464edf9",
+ "type": "function_call",
+ "status": "completed",
+ "arguments": "{\"location\":\"Florence, Italy\"}",
+ "call_id": "call_4aipZJRtNzKfQ9VlnBGhI9zH",
+ "name": "weather"
+ }
+ ],
+ "parallel_tool_calls": true,
+ "previous_response_id": null,
+ "prompt_cache_key": null,
+ "reasoning": {
+ "effort": "medium",
+ "summary": null
+ },
+ "safety_identifier": null,
+ "service_tier": "default",
+ "store": false,
+ "temperature": 1.0,
+ "text": {
+ "format": {
+ "type": "text"
+ },
+ "verbosity": "medium"
+ },
+ "tool_choice": "auto",
+ "tools": [
+ {
+ "type": "function",
+ "description": "Get weather information for a location",
+ "name": "weather",
+ "parameters": {
+ "properties": {
+ "location": {
+ "description": "the city",
+ "type": "string"
+ }
+ },
+ "required": [
+ "location"
+ ],
+ "type": "object"
+ },
+ "strict": false
+ }
+ ],
+ "top_logprobs": 0,
+ "top_p": 1.0,
+ "truncation": "disabled",
+ "usage": {
+ "input_tokens": 63,
+ "input_tokens_details": {
+ "cached_tokens": 0
+ },
+ "output_tokens": 22,
+ "output_tokens_details": {
+ "reasoning_tokens": 0
+ },
+ "total_tokens": 85
+ },
+ "user": null,
+ "metadata": {}
+ }
+ headers:
+ Content-Type:
+ - application/json
+ status: 200 OK
+ code: 200
+ duration: 2.717185959s
+- id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 726
+ host: ""
+ body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_4aipZJRtNzKfQ9VlnBGhI9zH","name":"weather","type":"function_call"},{"call_id":"call_4aipZJRtNzKfQ9VlnBGhI9zH","output":"40 C","type":"function_call_output"}],"model":"gpt-5-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}'
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2085
+ body: |-
+ {
+ "id": "resp_066ab1dbe82e48a5016903997c6398819681f9e88196773871",
+ "object": "response",
+ "created_at": 1761843580,
+ "status": "completed",
+ "background": false,
+ "content_filters": null,
+ "error": null,
+ "incomplete_details": null,
+ "instructions": null,
+ "max_output_tokens": 4000,
+ "max_tool_calls": null,
+ "model": "gpt-5-mini",
+ "output": [
+ {
+ "id": "rs_066ab1dbe82e48a5016903997cc74c8196add4b9db1dde2dfb",
+ "type": "reasoning",
+ "summary": []
+ },
+ {
+ "id": "msg_066ab1dbe82e48a5016903997ec4dc81968c78c2634a2d1a89",
+ "type": "message",
+ "status": "completed",
+ "content": [
+ {
+ "type": "output_text",
+ "annotations": [],
+ "logprobs": [],
+ "text": "Current temperature in Florence, Italy: 40\u00b0C (104\u00b0F).\n\nWant more details (hourly forecast, wind, precipitation) or tips for staying comfortable in the heat?"
+ }
+ ],
+ "role": "assistant"
+ }
+ ],
+ "parallel_tool_calls": true,
+ "previous_response_id": null,
+ "prompt_cache_key": null,
+ "reasoning": {
+ "effort": "medium",
+ "summary": null
+ },
+ "safety_identifier": null,
+ "service_tier": "default",
+ "store": false,
+ "temperature": 1.0,
+ "text": {
+ "format": {
+ "type": "text"
+ },
+ "verbosity": "medium"
+ },
+ "tool_choice": "auto",
+ "tools": [
+ {
+ "type": "function",
+ "description": "Get weather information for a location",
+ "name": "weather",
+ "parameters": {
+ "properties": {
+ "location": {
+ "description": "the city",
+ "type": "string"
+ }
+ },
+ "required": [
+ "location"
+ ],
+ "type": "object"
+ },
+ "strict": false
+ }
+ ],
+ "top_logprobs": 0,
+ "top_p": 1.0,
+ "truncation": "disabled",
+ "usage": {
+ "input_tokens": 94,
+ "input_tokens_details": {
+ "cached_tokens": 0
+ },
+ "output_tokens": 169,
+ "output_tokens_details": {
+ "reasoning_tokens": 128
+ },
+ "total_tokens": 263
+ },
+ "user": null,
+ "metadata": {}
+ }
+ headers:
+ Content-Type:
+ - application/json
+ status: 200 OK
+ code: 200
+ duration: 3.237920417s
@@ -0,0 +1,331 @@
+---
+version: 2
+interactions:
+- id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 505
+ host: ""
+ body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"}],"model":"gpt-5-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}'
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: -1
+ body: |+
+ event: response.created
+ data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0ad1ae6a186e7452016903997fa0d8819789788f2c97870a47","object":"response","created_at":1761843583,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"gpt-5-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}}
+
+ event: response.in_progress
@@ -0,0 +1,102 @@
+---
+version: 2
+interactions:
+- id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 209
+ host: ""
+ body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"Say hi in Portuguese","type":"input_text"}],"role":"user"}],"model":"o4-mini"}'
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1520
+ body: |-
+ {
+ "id": "resp_056c26e70a8e16d60169039987a9748195bc77169735bc7b98",
+ "object": "response",
+ "created_at": 1761843591,
+ "status": "completed",
+ "background": false,
+ "content_filters": null,
+ "error": null,
+ "incomplete_details": null,
+ "instructions": null,
+ "max_output_tokens": 4000,
+ "max_tool_calls": null,
+ "model": "o4-mini",
+ "output": [
+ {
+ "id": "rs_056c26e70a8e16d601690399881f0c8195aa22699fa3be5974",
+ "type": "reasoning",
+ "summary": []
+ },
+ {
+ "id": "msg_056c26e70a8e16d601690399893da08195a98d7b4b749fcfe4",
+ "type": "message",
+ "status": "completed",
+ "content": [
+ {
+ "type": "output_text",
+ "annotations": [],
+ "logprobs": [],
+ "text": "Ol\u00e1!"
+ }
+ ],
+ "role": "assistant"
+ }
+ ],
+ "parallel_tool_calls": true,
+ "previous_response_id": null,
+ "prompt_cache_key": null,
+ "reasoning": {
+ "effort": "medium",
+ "summary": null
+ },
+ "safety_identifier": null,
+ "service_tier": "default",
+ "store": false,
+ "temperature": 1.0,
+ "text": {
+ "format": {
+ "type": "text"
+ },
+ "verbosity": "medium"
+ },
+ "tool_choice": "auto",
+ "tools": [],
+ "top_logprobs": 0,
+ "top_p": 1.0,
+ "truncation": "disabled",
+ "usage": {
+ "input_tokens": 19,
+ "input_tokens_details": {
+ "cached_tokens": 0
+ },
+ "output_tokens": 72,
+ "output_tokens_details": {
+ "reasoning_tokens": 64
+ },
+ "total_tokens": 91
+ },
+ "user": null,
+ "metadata": {}
+ }
+ headers:
+ Content-Type:
+ - application/json
+ status: 200 OK
+ code: 200
+ duration: 1.899735709s
@@ -0,0 +1,68 @@
+---
+version: 2
+interactions:
+- id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 223
+ host: ""
+ body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"Say hi in Portuguese","type":"input_text"}],"role":"user"}],"model":"o4-mini","stream":true}'
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: -1
+ body: |+
+ event: response.created
+ data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_091bc858adb4a712016903998991688197a893284934f22beb","object":"response","created_at":1761843593,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}}
+
+ event: response.in_progress
+ data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_091bc858adb4a712016903998991688197a893284934f22beb","object":"response","created_at":1761843593,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}}
+
+ event: response.output_item.added
+ data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_091bc858adb4a7120169039989ef448197b309436b1aa244e7","type":"reasoning","summary":[]}}
+
+ event: response.output_item.done
+ data: {"type":"response.output_item.done","sequence_number":3,"output_index":0,"item":{"id":"rs_091bc858adb4a7120169039989ef448197b309436b1aa244e7","type":"reasoning","summary":[]}}
+
+ event: response.output_item.added
+ data: {"type":"response.output_item.added","sequence_number":4,"output_index":1,"item":{"id":"msg_091bc858adb4a712016903998a8ecc8197a424735435352dc2","type":"message","status":"in_progress","content":[],"role":"assistant"}}
+
+ event: response.content_part.added
+ data: {"type":"response.content_part.added","sequence_number":5,"item_id":"msg_091bc858adb4a712016903998a8ecc8197a424735435352dc2","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":""}}
+
+ event: response.output_text.delta
+ data: {"type":"response.output_text.delta","sequence_number":6,"item_id":"msg_091bc858adb4a712016903998a8ecc8197a424735435352dc2","output_index":1,"content_index":0,"delta":"Oi","logprobs":[],"obfuscation":"d1QayNRkhDJkTu"}
+
+ event: response.output_text.delta
+ data: {"type":"response.output_text.delta","sequence_number":7,"item_id":"msg_091bc858adb4a712016903998a8ecc8197a424735435352dc2","output_index":1,"content_index":0,"delta":"!","logprobs":[],"obfuscation":"jSyFniBbtoZb0gy"}
+
+ event: response.output_text.done
+ data: {"type":"response.output_text.done","sequence_number":8,"item_id":"msg_091bc858adb4a712016903998a8ecc8197a424735435352dc2","output_index":1,"content_index":0,"text":"Oi!","logprobs":[]}
+
+ event: response.content_part.done
+ data: {"type":"response.content_part.done","sequence_number":9,"item_id":"msg_091bc858adb4a712016903998a8ecc8197a424735435352dc2","output_index":1,"content_index":0,"part":{"type":"output_text","annotations":[],"logprobs":[],"text":"Oi!"}}
+
+ event: response.output_item.done
+ data: {"type":"response.output_item.done","sequence_number":10,"output_index":1,"item":{"id":"msg_091bc858adb4a712016903998a8ecc8197a424735435352dc2","type":"message","status":"completed","content":[{"type":"output_text","annotations":[],"logprobs":[],"text":"Oi!"}],"role":"assistant"}}
+
+ event: response.completed
@@ -0,0 +1,233 @@
+---
+version: 2
+interactions:
+- id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 488
+ host: ""
+ body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"}],"model":"o4-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}'
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 1865
+ body: |-
+ {
+ "id": "resp_0459c9bec5645f0d016903998adb588197a8cb12bdc148c0a5",
+ "object": "response",
+ "created_at": 1761843594,
+ "status": "completed",
+ "background": false,
+ "content_filters": null,
+ "error": null,
+ "incomplete_details": null,
+ "instructions": null,
+ "max_output_tokens": 4000,
+ "max_tool_calls": null,
+ "model": "o4-mini",
+ "output": [
+ {
+ "id": "rs_0459c9bec5645f0d016903998b51ec819785c9c9da0ebeec48",
+ "type": "reasoning",
+ "summary": []
+ },
+ {
+ "id": "fc_0459c9bec5645f0d016903998c5314819785e0c10f576a252d",
+ "type": "function_call",
+ "status": "completed",
+ "arguments": "{\"location\":\"Florence, Italy\"}",
+ "call_id": "call_KsHVstPJ9P9QHZsBVz58GUc6",
+ "name": "weather"
+ }
+ ],
+ "parallel_tool_calls": true,
+ "previous_response_id": null,
+ "prompt_cache_key": null,
+ "reasoning": {
+ "effort": "medium",
+ "summary": null
+ },
+ "safety_identifier": null,
+ "service_tier": "default",
+ "store": false,
+ "temperature": 1.0,
+ "text": {
+ "format": {
+ "type": "text"
+ },
+ "verbosity": "medium"
+ },
+ "tool_choice": "auto",
+ "tools": [
+ {
+ "type": "function",
+ "description": "Get weather information for a location",
+ "name": "weather",
+ "parameters": {
+ "properties": {
+ "location": {
+ "description": "the city",
+ "type": "string"
+ }
+ },
+ "required": [
+ "location"
+ ],
+ "type": "object"
+ },
+ "strict": false
+ }
+ ],
+ "top_logprobs": 0,
+ "top_p": 1.0,
+ "truncation": "disabled",
+ "usage": {
+ "input_tokens": 60,
+ "input_tokens_details": {
+ "cached_tokens": 0
+ },
+ "output_tokens": 83,
+ "output_tokens_details": {
+ "reasoning_tokens": 64
+ },
+ "total_tokens": 143
+ },
+ "user": null,
+ "metadata": {}
+ }
+ headers:
+ Content-Type:
+ - application/json
+ status: 200 OK
+ code: 200
+ duration: 1.805354834s
+- id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 723
+ host: ""
+ body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"},{"arguments":"\"{\\\"location\\\":\\\"Florence, Italy\\\"}\"","call_id":"call_KsHVstPJ9P9QHZsBVz58GUc6","name":"weather","type":"function_call"},{"call_id":"call_KsHVstPJ9P9QHZsBVz58GUc6","output":"40 C","type":"function_call_output"}],"model":"o4-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}'
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 2111
+ body: |-
+ {
+ "id": "resp_087bd2312c2d3baa016903998caab081959b29b07fd8007b50",
+ "object": "response",
+ "created_at": 1761843596,
+ "status": "completed",
+ "background": false,
+ "content_filters": null,
+ "error": null,
+ "incomplete_details": null,
+ "instructions": null,
+ "max_output_tokens": 4000,
+ "max_tool_calls": null,
+ "model": "o4-mini",
+ "output": [
+ {
+ "id": "rs_087bd2312c2d3baa016903998d0c088195808061e1055e926d",
+ "type": "reasoning",
+ "summary": []
+ },
+ {
+ "id": "msg_087bd2312c2d3baa016903998efbd48195b7dd1b75dcad44c6",
+ "type": "message",
+ "status": "completed",
+ "content": [
+ {
+ "type": "output_text",
+ "annotations": [],
+ "logprobs": [],
+ "text": "The current temperature in Florence, Italy is 40 \u00b0C. It\u2019s quite hot\u2014make sure to stay hydrated, seek shade when you can, and limit prolonged sun exposure if you\u2019re out and about."
+ }
+ ],
+ "role": "assistant"
+ }
+ ],
+ "parallel_tool_calls": true,
+ "previous_response_id": null,
+ "prompt_cache_key": null,
+ "reasoning": {
+ "effort": "medium",
+ "summary": null
+ },
+ "safety_identifier": null,
+ "service_tier": "default",
+ "store": false,
+ "temperature": 1.0,
+ "text": {
+ "format": {
+ "type": "text"
+ },
+ "verbosity": "medium"
+ },
+ "tool_choice": "auto",
+ "tools": [
+ {
+ "type": "function",
+ "description": "Get weather information for a location",
+ "name": "weather",
+ "parameters": {
+ "properties": {
+ "location": {
+ "description": "the city",
+ "type": "string"
+ }
+ },
+ "required": [
+ "location"
+ ],
+ "type": "object"
+ },
+ "strict": false
+ }
+ ],
+ "top_logprobs": 0,
+ "top_p": 1.0,
+ "truncation": "disabled",
+ "usage": {
+ "input_tokens": 91,
+ "input_tokens_details": {
+ "cached_tokens": 0
+ },
+ "output_tokens": 112,
+ "output_tokens_details": {
+ "reasoning_tokens": 64
+ },
+ "total_tokens": 203
+ },
+ "user": null,
+ "metadata": {}
+ }
+ headers:
+ Content-Type:
+ - application/json
+ status: 200 OK
+ code: 200
+ duration: 3.146838417s
@@ -0,0 +1,250 @@
+---
+version: 2
+interactions:
+- id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 502
+ host: ""
+ body: '{"max_output_tokens":4000,"store":false,"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence,Italy?","type":"input_text"}],"role":"user"}],"model":"o4-mini","tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}'
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: -1
+ body: |+
+ event: response.created
+ data: {"type":"response.created","sequence_number":0,"response":{"id":"resp_0b7f08ced9d9d7bd016903998fd1908196895bd1c221f34e18","object":"response","created_at":1761843599,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}}
+
+ event: response.in_progress
+ data: {"type":"response.in_progress","sequence_number":1,"response":{"id":"resp_0b7f08ced9d9d7bd016903998fd1908196895bd1c221f34e18","object":"response","created_at":1761843599,"status":"in_progress","background":false,"content_filters":null,"error":null,"incomplete_details":null,"instructions":null,"max_output_tokens":4000,"max_tool_calls":null,"model":"o4-mini","output":[],"parallel_tool_calls":true,"previous_response_id":null,"prompt_cache_key":null,"reasoning":{"effort":"medium","summary":null},"safety_identifier":null,"service_tier":"auto","store":false,"temperature":1.0,"text":{"format":{"type":"text"},"verbosity":"medium"},"tool_choice":"auto","tools":[{"type":"function","description":"Get weather information for a location","name":"weather","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"strict":false}],"top_logprobs":0,"top_p":1.0,"truncation":"disabled","usage":null,"user":null,"metadata":{}}}
+
+ event: response.output_item.added
+ data: {"type":"response.output_item.added","sequence_number":2,"output_index":0,"item":{"id":"rs_0b7f08ced9d9d7bd01690399902bb48196b17ce126fbf2111e","type":"reasoning","summary":[]}}
+
+ event: response.output_item.done
+ data: {"type":"response.output_item.done","sequence_number":3,"output_index":0,"item":{"id":"rs_0b7f08ced9d9d7bd01690399902bb48196b17ce126fbf2111e","type":"reasoning","summary":[]}}
+
+ event: response.output_item.added
+ data: {"type":"response.output_item.added","sequence_number":4,"output_index":1,"item":{"id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","type":"function_call","status":"in_progress","arguments":"","call_id":"call_JJ5rFdfdpHh9ZJy19XQegVfz","name":"weather"}}
+
+ event: response.function_call_arguments.delta
+ data: {"type":"response.function_call_arguments.delta","sequence_number":5,"item_id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","output_index":1,"delta":"{\"","obfuscation":"cgjpCLpTcB9Zf2"}
+
+ event: response.function_call_arguments.delta
+ data: {"type":"response.function_call_arguments.delta","sequence_number":6,"item_id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","output_index":1,"delta":"location","obfuscation":"XPmmF00x"}
+
+ event: response.function_call_arguments.delta
+ data: {"type":"response.function_call_arguments.delta","sequence_number":7,"item_id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","output_index":1,"delta":"\":\"","obfuscation":"DUBg9hoAsCbE6"}
+
+ event: response.function_call_arguments.delta
+ data: {"type":"response.function_call_arguments.delta","sequence_number":8,"item_id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","output_index":1,"delta":"Flor","obfuscation":"VpK5lvyLsltv"}
+
+ event: response.function_call_arguments.delta
+ data: {"type":"response.function_call_arguments.delta","sequence_number":9,"item_id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","output_index":1,"delta":"ence","obfuscation":"0XKHIXG3tLBQ"}
+
+ event: response.function_call_arguments.delta
+ data: {"type":"response.function_call_arguments.delta","sequence_number":10,"item_id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","output_index":1,"delta":",","obfuscation":"n4lnmQ8LR667bXP"}
+
+ event: response.function_call_arguments.delta
+ data: {"type":"response.function_call_arguments.delta","sequence_number":11,"item_id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","output_index":1,"delta":" Italy","obfuscation":"M0QDr2aViB"}
+
+ event: response.function_call_arguments.delta
+ data: {"type":"response.function_call_arguments.delta","sequence_number":12,"item_id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","output_index":1,"delta":"\"}","obfuscation":"c3YC6xIH7lcYjT"}
+
+ event: response.function_call_arguments.done
+ data: {"type":"response.function_call_arguments.done","sequence_number":13,"item_id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","output_index":1,"arguments":"{\"location\":\"Florence, Italy\"}"}
+
+ event: response.output_item.done
+ data: {"type":"response.output_item.done","sequence_number":14,"output_index":1,"item":{"id":"fc_0b7f08ced9d9d7bd0169039990be8481969746d4045d21c266","type":"function_call","status":"completed","arguments":"{\"location\":\"Florence, Italy\"}","call_id":"call_JJ5rFdfdpHh9ZJy19XQegVfz","name":"weather"}}
+
+ event: response.completed
@@ -0,0 +1,1198 @@
+---
+version: 2
+interactions:
+- id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 570
+ host: ""
+ body: '{"store":false,"include":["reasoning.encrypted_content"],"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence, Italy?","type":"input_text"}],"role":"user"}],"model":"gpt-5-mini","reasoning":{"effort":"high","summary":"auto"},"tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}],"stream":true}'
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: -1
+ body: |+
+ event: response.created
@@ -0,0 +1,245 @@
+---
+version: 2
+interactions:
+- id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 556
+ host: ""
+ body: '{"store":false,"include":["reasoning.encrypted_content"],"input":[{"content":"You are a helpful assistant","role":"developer"},{"content":[{"text":"What''s the weather in Florence, Italy?","type":"input_text"}],"role":"user"}],"model":"gpt-5-mini","reasoning":{"effort":"high","summary":"auto"},"tool_choice":"auto","tools":[{"strict":false,"parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"},"name":"weather","description":"Get weather information for a location","type":"function"}]}'
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/responses
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: 3590
+ body: |-
+ {
+ "id": "resp_08e75323d01317c301690399f6df988190bbb2d99c071619c6",
+ "object": "response",
+ "created_at": 1761843702,
+ "status": "completed",
+ "background": false,
+ "content_filters": null,
+ "error": null,
+ "incomplete_details": null,
+ "instructions": null,
+ "max_output_tokens": null,
+ "max_tool_calls": null,
+ "model": "gpt-5-mini",
+ "output": [
+ {
+ "id": "rs_08e75323d01317c301690399f759088190a37f017516202cb2",
+ "type": "reasoning",
@@ -6,20 +6,17 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 489
+ content_length: 515
host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"gpt-5-mini","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}'
- form:
- api-version:
- - 2025-01-01-preview
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"gpt-5-mini","reasoning_effort":"high","stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}'
headers:
Accept:
- application/json
Content-Type:
- application/json
User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/gpt-5-mini/chat/completions?api-version=2025-01-01-preview
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
method: POST
response:
proto: HTTP/2.0
@@ -29,27 +26,27 @@ interactions:
body: |+
data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]}
- data: {"choices":[{"content_filter_results":{},"delta":{"content":null,"refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"","name":"weather"},"id":"call_hehulxD7pIFrQ93AEiCwTGU6","index":0,"type":"function"}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350314,"id":"chatcmpl-CLxfuhvEofKpKfMsUiImr3bsNbYJP","model":"gpt-5-mini-2025-08-07","obfuscation":"ujVMObFdX1d0d","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"content":null,"refusal":null,"role":"assistant","tool_calls":[{"function":{"arguments":"","name":"weather"},"id":"call_IXyDXemyXlFWVdGVguHr5Sbe","index":0,"type":"function"}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"uaMd1T9RcrzY1","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350314,"id":"chatcmpl-CLxfuhvEofKpKfMsUiImr3bsNbYJP","model":"gpt-5-mini-2025-08-07","obfuscation":"gnH","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"7hL","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"location"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350314,"id":"chatcmpl-CLxfuhvEofKpKfMsUiImr3bsNbYJP","model":"gpt-5-mini-2025-08-07","obfuscation":"i6fFaw4QuRiVc0","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"location"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"It5BrwApZDAmaZ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\":\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350314,"id":"chatcmpl-CLxfuhvEofKpKfMsUiImr3bsNbYJP","model":"gpt-5-mini-2025-08-07","obfuscation":"e","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\":\""},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"r","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"Flor"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350314,"id":"chatcmpl-CLxfuhvEofKpKfMsUiImr3bsNbYJP","model":"gpt-5-mini-2025-08-07","obfuscation":"bY","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"Flor"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"Nc","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"ence"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350314,"id":"chatcmpl-CLxfuhvEofKpKfMsUiImr3bsNbYJP","model":"gpt-5-mini-2025-08-07","obfuscation":"oY","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"ence"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"7r","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":","},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350314,"id":"chatcmpl-CLxfuhvEofKpKfMsUiImr3bsNbYJP","model":"gpt-5-mini-2025-08-07","obfuscation":"Vbw9m","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":","},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"MGNaY","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":" Italy"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350314,"id":"chatcmpl-CLxfuhvEofKpKfMsUiImr3bsNbYJP","model":"gpt-5-mini-2025-08-07","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":" Italy"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\"}"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350314,"id":"chatcmpl-CLxfuhvEofKpKfMsUiImr3bsNbYJP","model":"gpt-5-mini-2025-08-07","obfuscation":"cRr","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"\"}"},"index":0}]},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"t4l","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0,"logprobs":null}],"created":1759350314,"id":"chatcmpl-CLxfuhvEofKpKfMsUiImr3bsNbYJP","model":"gpt-5-mini-2025-08-07","obfuscation":"sxJi","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0,"logprobs":null}],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"5GHK","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[],"created":1759350314,"id":"chatcmpl-CLxfuhvEofKpKfMsUiImr3bsNbYJP","model":"gpt-5-mini-2025-08-07","obfuscation":"OKsxg0tu5rUgS","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":26,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":0,"rejected_prediction_tokens":0},"prompt_tokens":145,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":171}}
+ data: {"choices":[],"created":1761843005,"id":"chatcmpl-CWQ8bl0XuL6BClGD5vgNEVqB7FDJX","model":"gpt-5-mini-2025-08-07","obfuscation":"3b8TlKRFFcjm","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":90,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":64,"rejected_prediction_tokens":0},"prompt_tokens":145,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":235}}
data: [DONE]
@@ -58,26 +55,23 @@ interactions:
- text/event-stream; charset=utf-8
status: 200 OK
code: 200
- duration: 1.278163917s
+ duration: 3.489423709s
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 741
+ content_length: 767
host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"call_hehulxD7pIFrQ93AEiCwTGU6","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_hehulxD7pIFrQ93AEiCwTGU6","role":"tool"}],"model":"gpt-5-mini","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}'
- form:
- api-version:
- - 2025-01-01-preview
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"call_IXyDXemyXlFWVdGVguHr5Sbe","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_IXyDXemyXlFWVdGVguHr5Sbe","role":"tool"}],"model":"gpt-5-mini","reasoning_effort":"high","stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}'
headers:
Accept:
- application/json
Content-Type:
- application/json
User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/gpt-5-mini/chat/completions?api-version=2025-01-01-preview
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
method: POST
response:
proto: HTTP/2.0
@@ -87,139 +81,131 @@ interactions:
body: |+
data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]}
- data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"TojWabPndM5o6v","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{"content":"","refusal":null,"role":"assistant"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"hqlJnDYyrDUmTx","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"Right"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"dAT0LfsGd6e","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"Right"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"5A80nHsvZg0","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" now"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"qyyiajGNmmqt","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" now"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"pX2s8jfZcU1h","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"hA6anQszyAiAM","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"1ybxhw06Hfpby","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Florence"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"2GpN9QX","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Florence"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"gcR9DkF","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" it's"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"uo7F2URKkna","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"D2DmY7D1iKZkzEF","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" "},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"FHy4PoPo4pVtoVK","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Italy"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"pA3OdoLbWX","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"40"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"N4cMnRcxea5RvE","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" it"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"FVQsr3xpMeReg","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" ยฐ"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"FroHhkYSPey93c","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"โs"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"PSNGyio1hHOhNT","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"C"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"NjllCBAEIEtkhlU","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" "},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"iE6VePqqFACIeLn","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" ("},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"03j3qkGblHDNwc","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"40"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"Rs3BzgW1wLZNIW","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"104"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"xhdDDSnyqf2Kw","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"ยฐC"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"ugO91Rmooib7wK","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" ยฐ"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"TnafrWa1l2wBUV","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" ("},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"5EcQG5MstC1H58","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"F"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"rVgb6CqcX8RjR2r","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"104"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"ebUiPqCHw4PW4","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":")."},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"K5ZNBOOgvzR1vi","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"ยฐF"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"XyYWjrDdGjX7mS","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" That's"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"J2XixZ0iv","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":")."},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"iH7YF3pg3D3L33","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" very"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"eFGTMSJ7HxF","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" That"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"I5GoUtCaHEX","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hot"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"s3lLTA7FiDw1","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"โs"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"xjoz4yMu3sXGBP","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" โ"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"deWNZlfPABYBrt","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" very"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"QHiSfUaVvzE","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" consider"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"gZzC5o8","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hot"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"wPV94GSdXzr7","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" staying"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"V1IuYdyo","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" โ"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"84lO5nXdrFIp5G","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hydrated"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"meQZZdP","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" stay"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"CDQaPucwRMR","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"tp0fQBtKeOSXlzN","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hydrated"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"fSP3D9L","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" avoiding"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"EwHBeJS","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"qtHg6eRLgch21pn","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" direct"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"c6aHa51la","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" avoid"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"wCkXcTtorp","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" sun"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"mq16YvQQdbQS","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" strenuous"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"hgC8ML","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" around"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"0M3aRiTXS","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" outdoor"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"M23NRD0u","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" midday"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"cFWEkefJk","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" activity"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"ApabYQB","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"X2KsIDinGgcizTN","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"Aenr53JRRPDdr","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" wearing"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"63wrSHbW","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" the"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"kTm47OyAiKTS","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" light"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"xOtyHmW08D","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" midday"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"AlKC23Znm","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" breathable"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"FVY4W","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" sun"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"gIzjaYM1QWwj","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" clothing"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"mzrUE0a","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"QtnqPe70AktHxrM","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" and"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"jTmWh0IkZIht","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" and"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"h81EcsaVsSqI","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" sunscreen"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"nnZCl7","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" use"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"SvOxON98klvJ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"nkHp6zGzV39rCRw","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" sunscreen"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"qMRVqU","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" and"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"BVzcQSR9ZJmu","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" and"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"RDjFdl1tTlRm","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" checking"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"WMwYBkv","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" light"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"bQGdkZmkH8","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" on"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"vjG9D9sNaSVGm","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" clothing"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"BZ9Sltx","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" infants"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"FhETcPN0","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"."},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"ZSpi8mAFjtobvtl","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"t1dEHN4OVjbt2MW","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Would"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"UbQ3B1FFbN","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" older"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"n8oNW3UOhj","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" you"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"e8oaxQDtn0fW","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" adults"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"pxK768H7y","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" like"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"QqzM2MPGian","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"E0ZrMpTXKhDzDoI","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" an"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"S5u4WZAvtcvxb","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" or"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"bXi7lfbb2vyjS","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hourly"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"qR1WcP67Z","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" anyone"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"6jQqyeknv","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" forecast"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"G3efZ8d","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" with"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"tKUV5Om8oPf","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"AvIShW11ecSB5Kb","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" health"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"RrVU1okPl","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" a"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"HNipO50l8mXVi2","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" issues"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"O5KR8ONQS","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" multi"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"YSpm46cWkO","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"."},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"SJstrW9KmFEfUvl","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"-day"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"yYbxPZ7Hsog4","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Would"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"Jz3LYe6jWB","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" outlook"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"4USPZhVo","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" you"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"9Xsd1kZSJp7R","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"hyfnSPDzog3tKEg","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" like"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"W1ySAH0OQNc","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" or"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"y3IpD0w7NTJBT","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" an"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"omx2lpW3chpxT","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" tips"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"vEkBNMqMIAt","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" hourly"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"XSnLbSnSY","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" for"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"WBu1A17CzN8A","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" forecast"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"jBQEwPa","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" staying"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"jDUk3NdM","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" or"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"cCiAzfARW6yKd","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" safe"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"KF3kOIenFqY","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" the"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"lGyHJKPdO2MZ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"ROhDQwfK2fAse","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" outlook"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"w6rnhpAp","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" the"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"iU4K1xyEir5W","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" for"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"0brN9zhWjDds","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" heat"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"p8izEBCrC84","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" the"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"0nrxL6JiYQBJ","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"?"},"finish_reason":null,"index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"WBHU0VQw0fnm21S","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" next"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"XLDmhJEN5UB","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
+ data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"QL3mWfmvPv","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" few"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"wL61TlkEwa2I","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" days"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"HTZMGZaHIam","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"?"},"finish_reason":null,"index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"GwZrWThY6WdpFUd","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0,"logprobs":null}],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"NxhCq2aytO","object":"chat.completion.chunk","system_fingerprint":null,"usage":null}
-
- data: {"choices":[],"created":1759350316,"id":"chatcmpl-CLxfwhY9BL4pIQlcUOOpzpRH17WTj","model":"gpt-5-mini-2025-08-07","obfuscation":"3sLtOeTh9A","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":266,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":192,"rejected_prediction_tokens":0},"prompt_tokens":176,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":442}}
+ data: {"choices":[],"created":1761843008,"id":"chatcmpl-CWQ8exhWrGdpsztLDjaAKDMrsAT72","model":"gpt-5-mini-2025-08-07","obfuscation":"X2xZyK0wIK","object":"chat.completion.chunk","system_fingerprint":null,"usage":{"completion_tokens":518,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":448,"rejected_prediction_tokens":0},"prompt_tokens":176,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0},"total_tokens":694}}
data: [DONE]
@@ -228,4 +214,4 @@ interactions:
- text/event-stream; charset=utf-8
status: 200 OK
code: 200
- duration: 3.802384291s
+ duration: 10.8719895s
@@ -6,64 +6,58 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 435
+ content_length: 461
host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"gpt-5-mini","tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}'
- form:
- api-version:
- - 2025-01-01-preview
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"gpt-5-mini","reasoning_effort":"high","tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}'
headers:
Accept:
- application/json
Content-Type:
- application/json
User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/gpt-5-mini/chat/completions?api-version=2025-01-01-preview
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
- content_length: 1050
+ content_length: 1051
body: |
@@ -6,20 +6,17 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 490
+ content_length: 516
host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"grok-3-mini","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}'
- form:
- api-version:
- - 2025-01-01-preview
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"grok-3-mini","reasoning_effort":"high","stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}'
headers:
Accept:
- application/json
Content-Type:
- application/json
User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/grok-3-mini/chat/completions?api-version=2025-01-01-preview
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
method: POST
response:
proto: HTTP/2.0
@@ -29,1531 +26,1636 @@ interactions:
body: |+
data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"First","role":"assistant"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"First","role":"assistant"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" asking"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" asking"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" about"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" called"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" called"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" get"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" get"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" description"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" description"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Get"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Get"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" require"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" require"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" string"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" string"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" describing"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" describing"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"In"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"In"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" query"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" query"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" has"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" has"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1759350330,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clearly"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clearly"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specifies"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specifies"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" country"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" country"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" This"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" This"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" matches"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" sufficient"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"All"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"All"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" infer"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"able"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" given"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" don't"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" so"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" infer"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" anything"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" else"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" use"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":";"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it's"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" directly"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" straightforward"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"According"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" instructions"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" advance"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" query"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" addressed"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" using"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Here"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" all"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" will"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" directly"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" or"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provide"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" obviously"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" infer"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"able"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fulfilling"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" trigger"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" query"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" JSON"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" within"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" must"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" JSON"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e\u003c/"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" within"},"index":0}],"created":1759350331,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tags"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e\u003c/"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" logical"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" next"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tags"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" step"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" like"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e{\""},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" with"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_name"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_input"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" make"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" {\""},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" my"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"parameter"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" verbose"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":";"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"argument"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" keep"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"}}\u003c/"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1761843026,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Since"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e\n\n"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I'm"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"For"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" case"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" action"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" don't"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" add"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" extra"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" text"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" unless"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" action"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" necessary"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_input"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" instructions"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" say"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" use"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" set"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tag"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\".\n\n"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" only"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" when"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" deciding"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" ensure"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" my"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" contains"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" only"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" case"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that's"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I'm"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" appropriate"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" deciding"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"After"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" instructions"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" say"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" multi"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-turn"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" conversation"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Keep"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" your"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" might"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350332,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" handle"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":";"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" please"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" do"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" but"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" make"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" your"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" now"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" verbose"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"!\""},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" immediate"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" So"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" action"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" add"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" extra"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" text"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Function"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" unless"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" necessary"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Since"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e{\""},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" direct"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" match"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" don't"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" ask"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_input"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clarification"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" {\""},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" just"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" make"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"}}\u003c/"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Finally"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e\n\n"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" after"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"That"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" seems"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" correct"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" don't"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" needed"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" ask"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" might"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" handle"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clarification"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" because"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" subsequent"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" matches"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" turns"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" but"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" now"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"id":"call_79034109","index":0,"type":"function"}]},"index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0}],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[],"created":1761843027,"id":"8b92da10-d7cc-4c57-af61-1135ddc68f6d_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9","usage":{"completion_tokens":27,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":317,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":288,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":288},"total_tokens":632}}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: [DONE]
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ headers:
+ Content-Type:
+ - text/event-stream
+ status: 200 OK
+ code: 200
+ duration: 244.989833ms
+- id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 736
+ host: ""
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"call_79034109","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_79034109","role":"tool"}],"model":"grok-3-mini","reasoning_effort":"high","stream_options":{"include_usage":true},"tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}],"stream":true}'
+ headers:
+ Accept:
+ - application/json
+ Content-Type:
+ - application/json
+ User-Agent:
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ content_length: -1
+ body: |+
+ data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"First","role":"assistant"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" next"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" step"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Response"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" asked"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" structure"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" about"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Only"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" include"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tag"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" with"},"index":0}],"created":1759350333,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" JSON"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" inside"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" called"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" No"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" additional"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" text"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"JSON"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" retrieve"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" {\""},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" given"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" requires"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_input"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" {\""},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" described"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"}"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"}\n\n"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"So"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" full"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tag"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e{\""},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clearly"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specifies"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" city"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_input"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" country"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" {\""},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" so"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" all"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" present"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" infer"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"}}\u003c/"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"able"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"According"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"tool_calls":[{"function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"id":"call_55985972","index":0,"type":"function"}]},"index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"tool_calls","index":0}],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" system"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[],"created":1759350334,"id":"60712103-0d02-4fe4-9e99-0db272b02fab_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9","usage":{"completion_tokens":27,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":399,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":288,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":288},"total_tokens":714}}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" prompt"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: [DONE]
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- headers:
- Content-Type:
- - text/event-stream
- status: 200 OK
- code: 200
- duration: 224.873958ms
-- id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 710
- host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"},{"tool_calls":[{"id":"call_55985972","function":{"arguments":"{\"location\":\"Florence, Italy\"}","name":"weather"},"type":"function"}],"role":"assistant"},{"content":"40 C","tool_call_id":"call_55985972","role":"tool"}],"model":"grok-3-mini","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}'
- form:
- api-version:
- - 2025-01-01-preview
- headers:
- Accept:
- - application/json
- Content-Type:
- - application/json
- User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/grok-3-mini/chat/completions?api-version=2025-01-01-preview
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- content_length: -1
- body: |+
- data: {"choices":[],"created":0,"id":"","model":"","object":"","prompt_filter_results":[{"prompt_index":0,"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"jailbreak":{"filtered":false,"detected":false},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}}}]}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" query"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" can"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" addressed"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" using"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" an"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" all"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" trigger"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" specified"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" JSON"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" within"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tags"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"I"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" already"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" made"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" my"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" previous"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e{\""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"First","role":"assistant"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_input"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" asked"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" {\""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"What's"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\":"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"}}\u003c/"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"?\""},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" This"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" directly"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e\n\n"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" matches"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Now"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" available"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" from"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" gets"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" given"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" C"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" requires"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" This"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" seems"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"location"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameter"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" result"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" of"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843028,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" indicating"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" query"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Florence"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" degrees"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Celsius"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" All"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" required"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"In"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" parameters"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" multi"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" present"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-turn"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" conversation"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" so"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" continue"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" relevant"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" functions"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" if"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"In"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" needed"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" my"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fulfill"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" use"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" However"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" exact"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" format"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \u003c"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" was"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"function"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_call"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" get"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\u003e"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" tag"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" with"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" JSON"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" inside"},"index":0}],"created":1759350335,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" The"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" JSON"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" has"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" now"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" have"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" ("},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" C"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"weather"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":")."},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" So"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"action"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"_input"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\""},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" likely"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" with"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fulfilled"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" system"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"After"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" prompt"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" says"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"continue"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calling"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" system"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" relevant"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provided"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" functions"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" advance"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Function"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" until"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" either"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" C"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" This"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" seems"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fully"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fulfilled"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" or"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" you"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" result"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" of"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" more"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Now"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\"\n\n"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Since"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" handle"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" has"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" been"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" retrieved"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" conversation"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"My"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" don't"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" role"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" any"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" more"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" helpful"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" functions"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" assistant"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" After"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" now"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provide"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" non"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" provide"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"verbose"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" non"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"verbose"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" with"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" with"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" prompt"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" also"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" emphasizes"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" obtained"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Keep"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" your"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" was"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" made"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":";"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" please"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" do"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" given"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" make"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" as"},"index":0}],"created":1759350336,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" your"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" verbose"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" C"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"!\""},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\"."},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" So"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" interpret"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" concise"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" present"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Additionally"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" nicely"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Since"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user's"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" request"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" C"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" now"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fulfilled"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" with"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" straightforward"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" this"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" information"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" but"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" don't"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" present"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" need"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" a"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" any"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" more"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-friendly"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" functions"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" way"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" perhaps"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" confirming"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" just"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" respond"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" location"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" with"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"My"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" details"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Keep"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" include"},"index":0}],"created":1761843029,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" any"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" more"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clear"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calls"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" unless"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" verbose"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" needed"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" So"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Here"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" something"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" no"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" like"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" more"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" calls"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" are"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" necessary"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Final"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" structure"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":\n"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Since"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" degrees"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Celsius"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\"\n\n"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" has"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" been"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" made"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" responded"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" C"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" output"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" assume"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" result"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" means"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clearly"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"-"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" degrees"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Response"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Celsius"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" direct"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" confirm"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" e"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" that"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".g"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".,"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" but"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" since"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it's"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" weather"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" standard"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" in"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Florence"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" it's"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" fine"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Italy"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Finally"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" structure"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"ยฐC"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" my"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\"\n\n"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"The"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":":"},"index":0}],"created":1759350337,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Since"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" \""},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" has"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" C"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" already"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"\","},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" been"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" which"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" made"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" and"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" assume"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" responded"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" means"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" "},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"40"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" my"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" degrees"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" next"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" Celsius"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" output"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" I"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" be"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" should"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" use"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" assistant"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" standard"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"'s"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" notation"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" for"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" to"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" clarity"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":".\n\n"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" user"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"Ensure"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":","},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" the"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" response"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" another"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" is"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" function"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" not"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" call"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":" verbose"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{"reasoning_content":"."},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"The"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"The"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" weather"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" weather"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" in"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Florence"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Florence"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":","},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Italy"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" Italy"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" is"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" is"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" "},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":" "},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"40"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"40"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"ยฐC"},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"ยฐC"},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"."},"index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{"hate":{"filtered":false,"severity":"safe"},"self_harm":{"filtered":false,"severity":"safe"},"sexual":{"filtered":false,"severity":"safe"},"violence":{"filtered":false,"severity":"safe"}},"delta":{"content":"."},"index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0}],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
+ data: {"choices":[{"content_filter_results":{},"delta":{},"finish_reason":"stop","index":0}],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9"}
- data: {"choices":[],"created":1759350338,"id":"bf90fc63-1ef7-4cb2-94fe-9d889de36cd0_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9","usage":{"completion_tokens":11,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":330,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":332,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":332},"total_tokens":673}}
+ data: {"choices":[],"created":1761843030,"id":"ef1dea44-a8a8-4042-b657-b7ea36af2ea9_sidecar","model":"grok-3-mini-high","object":"chat.completion.chunk","system_fingerprint":"fp_d33f0040b9","usage":{"completion_tokens":11,"completion_tokens_details":{"accepted_prediction_tokens":0,"audio_tokens":0,"reasoning_tokens":466,"rejected_prediction_tokens":0},"num_sources_used":0,"prompt_tokens":332,"prompt_tokens_details":{"audio_tokens":0,"cached_tokens":0,"image_tokens":0,"text_tokens":332},"total_tokens":809}}
data: [DONE]
@@ -6,20 +6,17 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 436
+ content_length: 462
host: ""
- body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"grok-3-mini","tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}'
- form:
- api-version:
- - 2025-01-01-preview
+ body: '{"messages":[{"content":"You are a helpful assistant","role":"system"},{"content":"What''s the weather in Florence, Italy?","role":"user"}],"model":"grok-3-mini","reasoning_effort":"high","tool_choice":"auto","tools":[{"function":{"name":"weather","strict":false,"description":"Get weather information for a location","parameters":{"properties":{"location":{"description":"the city","type":"string"}},"required":["location"],"type":"object"}},"type":"function"}]}'
headers:
Accept:
- application/json
Content-Type:
- application/json
User-Agent:
- - OpenAI/Go 2.3.0
- url: https://fantasy-playground-resource.services.ai.azure.com/openai/deployments/grok-3-mini/chat/completions?api-version=2025-01-01-preview
+ - OpenAI/Go 2.7.1
+ url: https://fantasy-playground-resource.openai.azure.com/openai/v1/chat/completions
method: POST
response:
proto: HTTP/2.0
@@ -28,32 +25,29 @@ interactions:
content_length: -1
uncompressed: true
body: |